body {
  font-family: Muli;
}
.display-1 {
  font-family: 'Muli', sans-serif;
  font-size: 3.4375rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.4375rem;
}
.display-2 {
  font-family: 'Muli', sans-serif;
  font-size: 2.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Muli', sans-serif;
  font-size: 0.875rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Muli', sans-serif;
  font-size: 1.6rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-7 {
  font-family: 'Muli', sans-serif;
  font-size: 1.125rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.125rem;
}
/* ---- 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.75rem;
    font-size: calc( 1.853125rem + (3.4375 - 1.853125) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.853125rem + (3.4375 - 1.853125) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 6px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 25px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #4f87fb !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #6d7a8c !important;
}
.bg-warning {
  background-color: #e6ecf2 !important;
}
.bg-danger {
  background-color: #ececec !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #4f87fb !important;
  border-color: #4f87fb !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff !important;
  background-color: #0654f8 !important;
  border-color: #0654f8 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0654f8 !important;
  border-color: #0654f8 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #130947 !important;
  border-color: #130947 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #010003 !important;
  border-color: #010003 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #010003 !important;
  border-color: #010003 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #6d7a8c !important;
  border-color: #6d7a8c !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #4c5561 !important;
  border-color: #4c5561 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c5561 !important;
  border-color: #4c5561 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #e6ecf2 !important;
  border-color: #e6ecf2 !important;
  color: #4a6d8f !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #4a6d8f !important;
  background-color: #b4c6d8 !important;
  border-color: #b4c6d8 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #4a6d8f !important;
  background-color: #b4c6d8 !important;
  border-color: #b4c6d8 !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: #054cdf;
  color: #054cdf;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #4f87fb;
  border-color: #4f87fb;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #4f87fb !important;
  border-color: #4f87fb !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #130947;
  border-color: #130947;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #130947 !important;
  border-color: #130947 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #404853;
  color: #404853;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #6d7a8c;
  border-color: #6d7a8c;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #6d7a8c !important;
  border-color: #6d7a8c !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #a3b9cf;
  color: #a3b9cf;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #4a6d8f;
  background-color: #e6ecf2;
  border-color: #e6ecf2;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #4a6d8f !important;
  background-color: #e6ecf2 !important;
  border-color: #e6ecf2 !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: #4f87fb !important;
}
.text-secondary {
  color: #130947 !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #6d7a8c !important;
}
.text-warning {
  color: #e6ecf2 !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: #054cdf !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #404853 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a3b9cf !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: #6d7a8c;
}
.alert-warning {
  background-color: #e6ecf2;
}
.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: #4f87fb;
  border-color: #4f87fb;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #4f87fb;
}
.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: #b4bbc5;
}
.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;
}
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Muli', sans-serif;
  font-size: 1.125rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #4f87fb;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type='submit'] {
  border-radius: 100px !important;
}
.btn-primary:hover {
  color: #ffffff !important;
  background: #130947 !important;
  border-color: #130947 !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4f87fb;
  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: #4f87fb;
  border-bottom-color: #4f87fb;
}
.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: #4f87fb !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #130947 !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='%234f87fb' %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-uT7cpKmkeL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uT7cpKmkeL .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;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uT7cpKmkeL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT7cpKmkeL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT7cpKmkeL .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uT7cpKmkeL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uT7cpKmkeL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uT7cpKmkeL .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uT7cpKmkeL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uT7cpKmkeL .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uT7cpKmkeL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
}
.cid-uT7cpKmkeL .nav-item:focus,
.cid-uT7cpKmkeL .nav-link:focus {
  outline: none;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT7cpKmkeL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT7cpKmkeL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uT7cpKmkeL .navbar.opened {
  transition: all 0.3s;
}
.cid-uT7cpKmkeL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uT7cpKmkeL .navbar .navbar-logo img {
  width: auto;
}
.cid-uT7cpKmkeL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uT7cpKmkeL .navbar.collapsed {
  justify-content: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT7cpKmkeL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar {
    min-height: 72px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT7cpKmkeL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT7cpKmkeL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uT7cpKmkeL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uT7cpKmkeL .dropdown-item.active,
.cid-uT7cpKmkeL .dropdown-item:active {
  background-color: transparent;
}
.cid-uT7cpKmkeL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uT7cpKmkeL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT7cpKmkeL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .navbar-buttons {
    text-align: left;
  }
}
.cid-uT7cpKmkeL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uT7cpKmkeL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT7cpKmkeL .navbar {
    height: 70px;
  }
  .cid-uT7cpKmkeL .navbar.opened {
    height: auto;
  }
  .cid-uT7cpKmkeL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uT7cpKmkeL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uT7cpKmkeL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar-brand {
    margin-right: auto;
  }
  .cid-uT7cpKmkeL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uT7cpKmkeL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tPG33Ckmuh {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/dentist-2021-08-28-15-08-10-utc-2000x817.webp");
}
.cid-tPG33Ckmuh .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-tPG33Ckmuh .mbr-section-title {
  color: #130947;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -1px;
  text-align: center;
}
.cid-tPG33Ckmuh .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-tPG33Ckmuh .mbr-text {
  color: #6d7a8c;
}
.cid-tPG33Ckmuh .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-tPG33Ckmuh .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tPG33Ckmuh .mbr-section-btn {
  display: flex;
}
.cid-tPG33Ckmuh .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tPG33Ckmuh .mbr-section-btn.display-4,
.cid-tPG33Ckmuh .btn.display-4 {
  font-size: 12px !important;
}
.cid-tPG33Ckmuh .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tPG33Ckmuh .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tPG33Ckmuh .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #4f87fb;
  position: absolute;
  top: 50%;
  left: 55 %;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tPG33Ckmuh .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tPG33Ckmuh .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tPG33Ckmuh .video-wrap .icon-wrap span {
  font-weight: bold;
}
.cid-tPG33Ckmuh .video-wrap .mbr-text {
  line-height: 1.69;
  font-weight: 800;
  letter-spacing: 0px;
  color: #130947;
}
.cid-tPG33Ckmuh .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tPG33Ckmuh .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tPG33Ckmuh .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tPG33Ckmuh .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tPG33Ckmuh a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-tPG33Ckmuh .separator,
  .cid-tPG33Ckmuh .sep-holder,
  .cid-tPG33Ckmuh .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tPG33Ckmuh .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tPG33Ckmuh .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tPG33Ckmuh .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPG33Ckmuh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rSb9WTfBCL {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-rSb9WTfBCL .photo-split .element-outer {
  display: none;
}
.cid-rSb9WTfBCL .photo-split .element-outer2 {
  display: none;
}
.cid-rSb9WTfBCL .photo-split .element-inner {
  display: none;
}
.cid-rSb9WTfBCL .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-rSb9WTfBCL .content-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}
.cid-rSb9WTfBCL .photo-split .image-wrap {
  text-align: right;
}
.cid-rSb9WTfBCL .photo-split .image-wrap img {
  max-width: 100%;
  max-height: 800px;
  z-index: 9;
  position: relative;
}
.cid-rSb9WTfBCL .photo-split .element-outer {
  border-radius: 100%;
  padding: 60px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -50px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rSb9WTfBCL .photo-split .element-outer2 {
  border-radius: 100%;
  padding: 100px;
  border: 3px dashed #e3e3e3;
  position: absolute;
  z-index: 7;
  left: -80px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rSb9WTfBCL .photo-split .element-inner {
  position: absolute;
  z-index: 10;
  left: -22px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-rSb9WTfBCL .photo-split .element-inner .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 31px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #4f87fb;
  margin-right: 15px;
  z-index: 10;
}
.cid-rSb9WTfBCL .wrap-block {
  padding: 3rem 3rem;
}
.cid-rSb9WTfBCL .wrap-block .contents {
  margin-bottom: 40px;
  padding-right: 50px;
}
.cid-rSb9WTfBCL .wrap-block .contents .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-rSb9WTfBCL .wrap-block .contents .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 24px;
  letter-spacing: 2px;
}
.cid-rSb9WTfBCL .wrap-block .contents .mbr-section-title {
  margin-bottom: 10px;
  color: #130947;
  line-height: 48px;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-rSb9WTfBCL .wrap-block .contents .mbr-section-text {
  line-height: 1.5;
  margin-top: 10px;
}
.cid-rSb9WTfBCL .wrap-block .contents .mbr-section-text.display-7 {
  font-size: 20px;
}
.cid-rSb9WTfBCL .wrap-block .contents .mbr-section-text.display-4 {
  font-size: 16px;
}
.cid-rSb9WTfBCL .wrap-block .contents h3 {
  color: #130947;
  letter-spacing: -0.5px;
  line-height: 30px;
}
.cid-rSb9WTfBCL .wrap-block .contents h4 {
  color: #6d7a8c;
}
.cid-rSb9WTfBCL .info-widget {
  padding-top: 0.5rem;
  display: flex;
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-rSb9WTfBCL .info-widget .widget-icon {
  display: inline-block;
  border-radius: 100%;
  padding: 18px;
  background-color: #ffffff;
  font-size: 2.45rem;
  color: #ffffff;
  margin-right: 15px;
}
.cid-rSb9WTfBCL .info-widget .signature {
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-rSb9WTfBCL .info-widget .widget-content {
  display: flex;
  vertical-align: baseline;
  text-align: left;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-rSb9WTfBCL .info-widget .widget-content .widget-title {
  margin-bottom: 7px;
  color: #130947;
}
.cid-rSb9WTfBCL .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
}
@media (max-width: 991px) {
  .cid-rSb9WTfBCL .photo-split {
    padding: 3rem 3rem;
  }
  .cid-rSb9WTfBCL .photo-split .element-outer,
  .cid-rSb9WTfBCL .photo-split .element-outer2 {
    display: none;
  }
  .cid-rSb9WTfBCL .photo-split .element-inner {
    left: 0;
  }
}
@media (max-width: 767px) {
  .cid-rSb9WTfBCL .mbr-section-title,
  .cid-rSb9WTfBCL .mbr-section-subtitle,
  .cid-rSb9WTfBCL .mbr-text {
    text-align: left !important;
  }
  .cid-rSb9WTfBCL .social-list {
    text-align: left !important;
  }
}
.cid-rSb9WTfBCL .boldSubtitle {
  margin-top: 40px !important;
}
@media (max-width: 500px) {
  .cid-rSb9WTfBCL .wrap-block {
    padding: 3rem 1rem;
  }
}
.cid-rSb9WTfBCL .wrap-block .contents h4,
.cid-rSb9WTfBCL .menu-content-right {
  text-align: left;
}
.cid-rSb9WTfBCL .wrap-block .contents .mbr-section-title,
.cid-rSb9WTfBCL .menu-content-right {
  color: #4b60ef;
}
.cid-tMijdUQ3X7 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tMijdUQ3X7 .top-part {
  margin-bottom: 70px;
}
.cid-tMijdUQ3X7 .top-part .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tMijdUQ3X7 .top-part .mbr-section-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tMijdUQ3X7 .top-part .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tMijdUQ3X7 .top-part .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-item.open .nav-link:focus,
.cid-tMijdUQ3X7 .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tMijdUQ3X7 .nav-tabs {
  flex-wrap: wrap;
  justify-content: space-around;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-item {
  padding: 0rem;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-link.display-7 {
  font-size: 16px !important;
  line-height: 1.5;
}
.cid-tMijdUQ3X7 .nav-link {
  padding: 0.4rem 0.8rem;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-link {
  color: #6d7a8c;
  font-weight: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid transparent;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-link:hover {
  cursor: pointer;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-link.active {
  border-bottom: 2px solid #4f87fb;
  color: #28303f;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-link.active span {
  color: #4f87fb;
}
.cid-tMijdUQ3X7 .nav-tabs .nav-link span {
  margin-right: 14px;
  font-size: 1.525rem;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .cid-tMijdUQ3X7 .nav-tabs {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tMijdUQ3X7 .mbr-text,
  .cid-tMijdUQ3X7 .nav-link {
    text-align: left;
  }
  .cid-tMijdUQ3X7 .nav-link {
    padding: 14px 20px;
    padding-left: 0;
  }
  .cid-tMijdUQ3X7 .mbr-section-title,
  .cid-tMijdUQ3X7 .mbr-section-subtitle {
    text-align: left;
  }
}
.cid-tMijdUQ3X7 .tab-content {
  margin-top: 44px;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(79, 110, 173, 0.1);
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-section-title {
  text-align: left;
  color: #130947;
  font-weight: 700;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-section-title.display-5 {
  font-size: 24px;
  line-height: 1.16;
  letter-spacing: -0.5px;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-text.display-7 {
  line-height: 1.5;
  font-size: 1em;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-list {
  margin-top: 35px;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-list .list li {
  margin-bottom: 1rem;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-list .list li:before {
  font-weight: 900;
  color: #4f87fb;
  display: inline-block;
  content: '✓';
  text-align: center;
  line-height: 1.5em;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-tMijdUQ3X7 .tab-content .tab-pane .mbr-list.display-4 {
  font-size: 1em;
  color: #6d7a8c;
}
.cid-tMijdUQ3X7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMijdUQ3X7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rSbcpvqg12 {
  padding-top: 120px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/358332669-1968317840189958-6085500016199765286-n-2000x1500.webp");
}
.cid-rSbcpvqg12 .mbr-text,
.cid-rSbcpvqg12 .mbr-section-title {
  letter-spacing: -0.5px;
}
.cid-rSbcpvqg12 .img span {
  font-size: 80px;
  color: #ffffff;
}
.cid-rSbcpvqg12 .mbr-text,
.cid-rSbcpvqg12 .mbr-section-btn,
.cid-rSbcpvqg12 .mbr-section-title {
  color: #ffffff;
}
.cid-rSbcpvqg12 .mbr-text {
  margin-bottom: 0;
  font-weight: 700;
}
.cid-rSbcpvqg12 .mbr-text.display-7 {
  line-height: 28px;
  letter-spacing: -0.5px;
}
.cid-rSbcpvqg12 .mbr-section-title {
  font-weight: 700;
}
.cid-rSbcpvqg12 .mbr-section-title.display-2 {
  line-height: 50px;
  letter-spacing: -0.5px;
}
.cid-rSbcpvqg12 .btn {
  border-radius: 4px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  letter-spacing: 1px;
  line-height: 24px;
  border-width: 2px;
}
@media (max-width: 768px) {
  .cid-rSbcpvqg12 .mbr-section-title,
  .cid-rSbcpvqg12 .mbr-text,
  .cid-rSbcpvqg12 .mbr-section-btn {
    text-align: left;
  }
}
.cid-tMivutLqSn {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tMivutLqSn .mbr-section-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tMivutLqSn .mbr-section-subtitle.display-4 {
  font-size: 13px;
  letter-spacing: 2px;
  line-height: 1.85;
}
.cid-tMivutLqSn .mbr-section-title {
  margin-bottom: 20px;
  font-weight: 800;
  color: #130947;
}
.cid-tMivutLqSn .mbr-section-title.display-2 {
  font-size: 46px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tMivutLqSn .mbr-section-text {
  margin-top: 20px;
  color: #6d7a8c;
}
.cid-tMivutLqSn .mbr-section-text.display-7 {
  letter-spacing: 0;
  line-height: 1.5;
}
.cid-tMivutLqSn .card .card-wrapper {
  overflow: visible;
  height: 100%;
  color: #232323;
  padding: 0;
  position: relative;
  border-radius: 4px;
}
.cid-tMivutLqSn .card .card-wrapper .link {
  position: relative;
  top: 0;
  display: block;
  height: 700px;
  border: 1px solid #f3f3f3;
  background-size: cover;
  box-shadow: 0 10px 30px 10px #eee;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all 5s ease-in-out;
  transition: all 5s ease-in-out;
}
.cid-tMivutLqSn .card .card-wrapper .link:hover {
  background-position: 0 100%;
}
.cid-tMivutLqSn .card .card-wrapper .link1 {
  background-image: url("../../../assets/images/image23-1512x2016.webp");
}
.cid-tMivutLqSn .card .card-wrapper .link2 {
  background-image: url("../../../assets/images/mbr-1440x1920.webp");
}
.cid-tMivutLqSn .card .card-wrapper .link3 {
  background-image: url("../../../assets/images/mbr-1920x1280.webp");
}
.cid-tMivutLqSn .card .card-wrapper .link4 {
  background-image: url("../../../assets/images/15.webp");
}
.cid-tMivutLqSn .card .card-wrapper .card-box {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  border-radius: 4px;
}
.cid-tMivutLqSn .card .card-wrapper .card-box .card-title {
  color: #130947;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  margin: 0;
  text-align: center;
  font-weight: 700;
}
.cid-tMivutLqSn .card .card-wrapper .card-box .card-title span {
  font-weight: 900;
}
.cid-tMivutLqSn .card .card-wrapper .card-box .card-title:hover {
  color: #4f87fb;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tMivutLqSn .card .card-wrapper .card-box .card-title.display-7 {
  font-size: 22px;
  line-height: 1.36;
}
.cid-tMivutLqSn .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMivutLqSn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMiIiBe802 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #130947;
}
.cid-tMiIiBe802 p {
  text-align: center;
}
.cid-tMiIiBe802 .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tMiIiBe802 .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tMiIiBe802 a {
  font-weight: normal;
}
.cid-tMiIiBe802 .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-tMiIiBe802 .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tMiIiBe802 li a {
  position: relative;
}
.cid-tMiIiBe802 li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-tMiIiBe802 li a:hover:before {
  width: 100%;
}
.cid-tMiIiBe802 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  text-align: right;
}
.cid-tMiIiBe802 .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .d-flex {
    flex-direction: column;
  }
  .cid-tMiIiBe802 .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-tMiIiBe802 .icon-transition span {
  display: block;
}
.cid-tMiIiBe802 .list-inline-item a {
  display: block;
}
.cid-tMiIiBe802 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMiIiBe802 .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMiIiBe802 .icon-transition span {
  color: #151515;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tMiIiBe802 .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-tMiIiBe802 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tMiIiBe802 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tMiIiBe802 .logo-footer {
    text-align: center;
  }
  .cid-tMiIiBe802 .social-media {
    justify-content: center;
  }
}
.cid-tMiIiBe802 .list-inline-item,
.cid-tMiIiBe802 .mbr-list,
.cid-tMiIiBe802 .first-column {
  color: #ffffff;
}
.cid-tPGtjjX6x9 {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/mbr-1080x718.webp");
}
.cid-tPGtjjX6x9 .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 1.43;
  letter-spacing: 2px;
}
.cid-tPGtjjX6x9 .mbr-section-title {
  color: #130947;
  font-weight: 900;
  line-height: 1.09;
  letter-spacing: -1px;
}
.cid-tPGtjjX6x9 .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-tPGtjjX6x9 .mbr-text {
  color: #6d7a8c;
}
.cid-tPGtjjX6x9 .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
  margin-left: 0.6rem;
}
.cid-tPGtjjX6x9 .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-tPGtjjX6x9 .mbr-section-btn {
  display: flex;
}
.cid-tPGtjjX6x9 .mbr-section-btn .btn {
  border-radius: 4px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 0.4rem 1rem 0.4rem 0rem !important;
  padding: 15px 55px !important;
}
.cid-tPGtjjX6x9 .mbr-section-btn.display-4,
.cid-tPGtjjX6x9 .btn.display-4 {
  font-size: 12px !important;
}
.cid-tPGtjjX6x9 .video-wrap {
  cursor: pointer;
  margin-left: 14px;
}
.cid-tPGtjjX6x9 .video-wrap .mbr-media {
  z-index: 70;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}
.cid-tPGtjjX6x9 .video-wrap .mbr-media span {
  font-size: 20px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #4f87fb;
  position: absolute;
  top: 50%;
  left: 55 %;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.cid-tPGtjjX6x9 .video-wrap .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-tPGtjjX6x9 .video-wrap .icon-wrap {
  background-color: #ffffff;
  width: 3.7em;
  height: 3.7em;
  border-radius: 50%;
  max-width: 100% !important;
  line-height: 1.6em !important;
  text-align: center;
  display: inline-block;
  border: 2px solid transparent;
  box-sizing: content-box;
  position: relative;
}
.cid-tPGtjjX6x9 .video-wrap .icon-wrap span {
  font-weight: bold;
}
.cid-tPGtjjX6x9 .video-wrap .mbr-text {
  line-height: 1.69;
  font-weight: 800;
  letter-spacing: 0px;
  color: #130947;
}
.cid-tPGtjjX6x9 .video-wrap .mbr-text.display-4 {
  font-size: 13px;
}
.cid-tPGtjjX6x9 .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-tPGtjjX6x9 .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-tPGtjjX6x9 .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-tPGtjjX6x9 a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-tPGtjjX6x9 .separator,
  .cid-tPGtjjX6x9 .sep-holder,
  .cid-tPGtjjX6x9 .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-tPGtjjX6x9 .buttons-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tPGtjjX6x9 .buttons-wrap .video-wrap {
    margin-left: 0;
    margin-top: 15px;
  }
}
.cid-tPGtjjX6x9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPGtjjX6x9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMiL7nzUgu {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tMiL7nzUgu .icon-transition span {
  padding: 0.1rem 0.9rem;
  border-radius: 50%;
  color: #ffffff;
  display: block;
  height: 3em;
  line-height: 3em;
  width: 3em;
  background: #ffffff none repeat scroll 0 0;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-tMiL7nzUgu .wrap-block .contents {
  margin-bottom: 40px;
}
.cid-tMiL7nzUgu .mbr-subtitle {
  color: #4f87fb;
  margin-bottom: 10px;
  font-weight: 800;
}
.cid-tMiL7nzUgu .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tMiL7nzUgu .mbr-section-title {
  margin-bottom: 10px;
  color: #130947;
  font-weight: 700;
}
.cid-tMiL7nzUgu .mbr-section-title.display-2 {
  font-size: 35px;
  line-height: 1.29;
  letter-spacing: -0.5px;
}
.cid-tMiL7nzUgu .mbr-section-text {
  color: #6d7a8c;
  line-height: 1.5;
  margin-top: 10px;
}
.cid-tMiL7nzUgu .boldSubtitle {
  color: #130947;
}
.cid-tMiL7nzUgu .info-widget {
  padding-top: 0.5rem;
}
.cid-tMiL7nzUgu .info-widget .widget-icon {
  display: inline-block;
  font-size: 1.75rem;
  color: #4f87fb;
  margin-right: 15px;
  vertical-align: middle;
}
.cid-tMiL7nzUgu .info-widget .signature {
  width: 35%;
  height: 75px;
  display: inline-block;
  margin-right: 15px;
  object-fit: contain;
}
.cid-tMiL7nzUgu .info-widget .widget-content {
  vertical-align: middle;
  display: inline-block;
}
.cid-tMiL7nzUgu .info-widget .widget-content .widget-title {
  color: #130947;
  margin-bottom: 0;
  font-weight: 700;
}
.cid-tMiL7nzUgu .info-widget .widget-content .widget-title.display-7 {
  font-size: 16px;
  line-height: 1.625;
  letter-spacing: -0.5px;
}
.cid-tMiL7nzUgu .info-widget .widget-content .widget-text {
  margin-bottom: 0;
  color: #7e7e7e;
  font-weight: 700;
}
.cid-tMiL7nzUgu .info-widget .widget-content .widget-text.display-4 {
  line-height: 1.71;
  letter-spacing: -0.5px;
}
.cid-tMiL7nzUgu .info-widget--right {
  margin-top: 30px;
  padding-top: 0;
}
.cid-tMiL7nzUgu .info-widget--right .widget-content .widget-title {
  margin-bottom: 0 !important;
  color: #130947;
  font-weight: 700;
}
.cid-tMiL7nzUgu .info-widget--right .widget-content .widget-title.display-7 {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.5px;
}
@media (max-width: 500px) {
  .cid-tMiL7nzUgu .wrap-block {
    padding: 3rem 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tMiL7nzUgu .mbr-section-title,
  .cid-tMiL7nzUgu .mbr-section-subtitle,
  .cid-tMiL7nzUgu .mbr-text {
    text-align: left !important;
  }
  .cid-tMiL7nzUgu .social-list {
    text-align: left !important;
  }
}
.cid-tMiL7nzUgu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMiL7nzUgu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMilLFUpYD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tMilLFUpYD .wrapper {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tMilLFUpYD .wrapper .left-col {
    flex: 1 0 50%;
    padding-right: 12px;
  }
  .cid-tMilLFUpYD .wrapper .right-col {
    flex: 1 0 50%;
    padding-left: 12px;
  }
}
.cid-tMilLFUpYD .card {
  padding: 0;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
}
.cid-tMilLFUpYD .card-img {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  border-radius: 20px;
}
.cid-tMilLFUpYD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMilLFUpYD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMiIiBe802 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #130947;
}
.cid-tMiIiBe802 p {
  text-align: center;
}
.cid-tMiIiBe802 .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tMiIiBe802 .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tMiIiBe802 a {
  font-weight: normal;
}
.cid-tMiIiBe802 .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-tMiIiBe802 .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tMiIiBe802 li a {
  position: relative;
}
.cid-tMiIiBe802 li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-tMiIiBe802 li a:hover:before {
  width: 100%;
}
.cid-tMiIiBe802 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  text-align: right;
}
.cid-tMiIiBe802 .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .d-flex {
    flex-direction: column;
  }
  .cid-tMiIiBe802 .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-tMiIiBe802 .icon-transition span {
  display: block;
}
.cid-tMiIiBe802 .list-inline-item a {
  display: block;
}
.cid-tMiIiBe802 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMiIiBe802 .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMiIiBe802 .icon-transition span {
  color: #151515;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tMiIiBe802 .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-tMiIiBe802 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tMiIiBe802 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tMiIiBe802 .logo-footer {
    text-align: center;
  }
  .cid-tMiIiBe802 .social-media {
    justify-content: center;
  }
}
.cid-tMiIiBe802 .list-inline-item,
.cid-tMiIiBe802 .mbr-list,
.cid-tMiIiBe802 .first-column {
  color: #ffffff;
}
.cid-uT7cpKmkeL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uT7cpKmkeL .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;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uT7cpKmkeL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT7cpKmkeL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT7cpKmkeL .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uT7cpKmkeL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uT7cpKmkeL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uT7cpKmkeL .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uT7cpKmkeL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uT7cpKmkeL .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uT7cpKmkeL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
}
.cid-uT7cpKmkeL .nav-item:focus,
.cid-uT7cpKmkeL .nav-link:focus {
  outline: none;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT7cpKmkeL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT7cpKmkeL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uT7cpKmkeL .navbar.opened {
  transition: all 0.3s;
}
.cid-uT7cpKmkeL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uT7cpKmkeL .navbar .navbar-logo img {
  width: auto;
}
.cid-uT7cpKmkeL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uT7cpKmkeL .navbar.collapsed {
  justify-content: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT7cpKmkeL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar {
    min-height: 72px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT7cpKmkeL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT7cpKmkeL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uT7cpKmkeL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uT7cpKmkeL .dropdown-item.active,
.cid-uT7cpKmkeL .dropdown-item:active {
  background-color: transparent;
}
.cid-uT7cpKmkeL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uT7cpKmkeL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT7cpKmkeL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .navbar-buttons {
    text-align: left;
  }
}
.cid-uT7cpKmkeL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uT7cpKmkeL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT7cpKmkeL .navbar {
    height: 70px;
  }
  .cid-uT7cpKmkeL .navbar.opened {
    height: auto;
  }
  .cid-uT7cpKmkeL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uT7cpKmkeL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uT7cpKmkeL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar-brand {
    margin-right: auto;
  }
  .cid-uT7cpKmkeL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uT7cpKmkeL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-rSb9Wjscbi {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/toothbrushes-toothpaste-and-question-mark-on-blue-2022-12-02-17-44-03-utc-2000x1333.webp");
}
.cid-rSb9Wjscbi .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
}
.cid-rSb9Wjscbi .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-rSb9Wjscbi .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-rSb9Wjscbi .mbr-text {
  color: #6d7a8c;
}
.cid-rSb9Wjscbi .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-rSb9Wjscbi .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-rSb9Wjscbi .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-rSb9Wjscbi .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 24%;
}
.cid-rSb9Wjscbi .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 24%;
}
.cid-rSb9Wjscbi .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-rSb9Wjscbi .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-rSb9Wjscbi .mbr-section-btn .btn.display-4 {
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
.cid-rSb9Wjscbi .mbr-section-btn .btn-primary:hover {
  background-color: #130947 !important;
  border-color: #130947 !important;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-rSb9Wjscbi .separator,
  .cid-rSb9Wjscbi .sep-holder,
  .cid-rSb9Wjscbi .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-rSb9Wjscbi .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-rSb9Wjscbi .mbr-section-title,
.cid-rSb9Wjscbi .separator,
.cid-rSb9Wjscbi .sep-holder {
  text-align: center;
}
.cid-rSb9Wjscbi .mbr-section-subtitle,
.cid-rSb9Wjscbi .mbr-section-title .accent-word {
  text-align: center;
}
.cid-tMiolMEQeF {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tMiolMEQeF h2 {
  margin-bottom: 10px;
  color: #130947;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-weight: 700;
}
.cid-tMiolMEQeF .nav-tabs .nav-item.open .nav-link:focus,
.cid-tMiolMEQeF .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tMiolMEQeF .nav-link.active {
  background: #4f87fb;
}
.cid-tMiolMEQeF .nav-link {
  background: white;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  padding: 16px 25px;
  line-height: 1.5;
  border-radius: 0;
  text-align: left;
  margin: 0px;
  font-weight: 700 !important;
  position: relative;
}
.cid-tMiolMEQeF .nav-link:hover {
  background: #4f87fb;
}
.cid-tMiolMEQeF .nav-link .mbr-iconfont {
  font-weight: bold;
  position: absolute;
  top: 13px;
  right: 20px;
  width: 30px;
  height: 30px;
  background-color: #f2f3f7;
  line-height: 1.9;
  text-align: center;
  border-radius: 50%;
  color: #000000;
  font-size: 17px;
}
.cid-tMiolMEQeF .nav-link .mbr-iconfont:before {
  margin-left: 3px;
}
.cid-tMiolMEQeF .nav-link.display-4 {
  font-size: 15px;
}
.cid-tMiolMEQeF .nav-tabs {
  flex-wrap: wrap;
  border-bottom: 1px solid #e5e8ef;
  -webkit-box-pack: center;
  justify-content: center;
  border: 1px solid #e5e8ef;
}
.cid-tMiolMEQeF .nav-tabs .nav-item {
  padding: 0;
  -webkit-box-flex: 1;
  flex: 1 1 100%;
}
.cid-tMiolMEQeF .nav-tabs .nav-link {
  color: #28303f;
  font-style: normal;
  font-weight: 500;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: none;
}
.cid-tMiolMEQeF .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #ffffff;
}
.cid-tMiolMEQeF .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #ffffff;
  font-style: normal;
}
.cid-tMiolMEQeF .widget {
  margin-top: 30px;
  background-color: #4f87fb;
  border-radius: 4px;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact {
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  color: #fff;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact .img-wrap {
  margin: 0 0 25px;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact .img-wrap img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-radius: 4px;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner {
  text-align: center;
  color: #fff;
  padding: 0 30px 15px;
  position: relative;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-left: 344px solid white;
  border-bottom: 0 solid transparent;
  left: -10px;
  top: -57px;
  -webkit-transform: rotate(-7deg);
  transform: rotate(-7deg);
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner::after {
  border-right-color: #4f87fb;
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-top: 73px solid transparent;
  border-right: 382px solid #4f87fb;
  border-bottom: 0 solid transparent;
  left: -9px;
  top: -83px;
  -webkit-transform: rotate(4deg);
  transform: rotate(4deg);
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner .iconbox {
  margin-bottom: 30px;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner .iconbox span {
  font-size: 60px;
  line-height: 1;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner h2 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner h2.display-2 {
  font-size: 22px;
  line-height: 1.09;
  letter-spacing: -0.5px;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner .mbr-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner .mbr-text {
  font-weight: 400;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner .mbr-section-btn {
  margin-bottom: 25px;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn {
  line-height: 2;
  letter-spacing: 1px;
  font-weight: 700;
  font-style: normal;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 40px;
  padding-right: 40px;
  margin-top: 20px;
  border-radius: 2em;
  display: inline-block;
}
.cid-tMiolMEQeF .widget .textwidget .single-service-contact-inner .mbr-section-btn .btn.display-4 {
  font-size: 12px;
}
.cid-tMiolMEQeF .tab-pane img {
  display: block;
  box-shadow: 0 0 50px rgba(79, 110, 173, 0.1);
  border-radius: 4px;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  margin-bottom: 50px;
}
.cid-tMiolMEQeF .tab-pane .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tMiolMEQeF .tab-pane .mbr-section-title.display-5 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tMiolMEQeF .tab-pane .mbr-text {
  color: #6d7a8c;
}
.cid-tMiolMEQeF .tab-pane .mbr-text.display-7 {
  font-size: 16px;
  line-height: 1.5;
}
.cid-tMiolMEQeF .tab-pane .wrapper {
  border-radius: 0.25rem;
  padding: 1rem;
  background: #ffffff;
}
.cid-tMiolMEQeF .tab-pane .wrapper .img {
  margin-bottom: 20px;
}
.cid-tMiolMEQeF .tab-pane .wrapper .img .mbr-iconfont {
  font-size: 50px;
  top: 0;
  color: #4f87fb;
  border-radius: 50%;
}
.cid-tMiolMEQeF .tab-pane .wrapper .mbr-card-title {
  font-weight: 700;
  padding-bottom: 14px;
  margin-bottom: 10px;
  color: #130947;
}
.cid-tMiolMEQeF .tab-pane .wrapper .mbr-card-title.display-7 {
  line-height: 1.4;
  letter-spacing: -0.5px;
  font-size: 20px;
}
.cid-tMiolMEQeF .tab-pane .wrapper .mbr-text {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #6d7a8c;
  font-weight: 400;
}
.cid-tMiolMEQeF .tab-pane .wrapper .mbr-text.display-4 {
  font-size: 16px;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .cid-tMiolMEQeF .nav-tabs {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center;
    border-right: 0px;
    padding-right: 0rem;
  }
}
@media (max-width: 767px) {
  .cid-tMiolMEQeF .mbr-text,
  .cid-tMiolMEQeF .nav-link,
  .cid-tMiolMEQeF .mbr-card-title,
  .cid-tMiolMEQeF .mbr-section-title {
    text-align: left;
  }
  .cid-tMiolMEQeF .nav-tabs {
    border-right: 0px;
    padding-right: 0rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-tMiolMEQeF .single-service-contact-inner .mbr-text {
    text-align: center;
  }
}
.cid-tMiolMEQeF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMiolMEQeF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMiIiBe802 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #130947;
}
.cid-tMiIiBe802 p {
  text-align: center;
}
.cid-tMiIiBe802 .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tMiIiBe802 .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tMiIiBe802 a {
  font-weight: normal;
}
.cid-tMiIiBe802 .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-tMiIiBe802 .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tMiIiBe802 li a {
  position: relative;
}
.cid-tMiIiBe802 li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-tMiIiBe802 li a:hover:before {
  width: 100%;
}
.cid-tMiIiBe802 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  text-align: right;
}
.cid-tMiIiBe802 .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .d-flex {
    flex-direction: column;
  }
  .cid-tMiIiBe802 .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-tMiIiBe802 .icon-transition span {
  display: block;
}
.cid-tMiIiBe802 .list-inline-item a {
  display: block;
}
.cid-tMiIiBe802 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMiIiBe802 .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMiIiBe802 .icon-transition span {
  color: #151515;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tMiIiBe802 .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-tMiIiBe802 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tMiIiBe802 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tMiIiBe802 .logo-footer {
    text-align: center;
  }
  .cid-tMiIiBe802 .social-media {
    justify-content: center;
  }
}
.cid-tMiIiBe802 .list-inline-item,
.cid-tMiIiBe802 .mbr-list,
.cid-tMiIiBe802 .first-column {
  color: #ffffff;
}
.cid-uT7cpKmkeL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uT7cpKmkeL .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;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uT7cpKmkeL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT7cpKmkeL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT7cpKmkeL .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uT7cpKmkeL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uT7cpKmkeL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uT7cpKmkeL .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uT7cpKmkeL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uT7cpKmkeL .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uT7cpKmkeL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
}
.cid-uT7cpKmkeL .nav-item:focus,
.cid-uT7cpKmkeL .nav-link:focus {
  outline: none;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT7cpKmkeL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT7cpKmkeL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uT7cpKmkeL .navbar.opened {
  transition: all 0.3s;
}
.cid-uT7cpKmkeL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uT7cpKmkeL .navbar .navbar-logo img {
  width: auto;
}
.cid-uT7cpKmkeL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uT7cpKmkeL .navbar.collapsed {
  justify-content: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT7cpKmkeL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar {
    min-height: 72px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT7cpKmkeL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT7cpKmkeL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uT7cpKmkeL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uT7cpKmkeL .dropdown-item.active,
.cid-uT7cpKmkeL .dropdown-item:active {
  background-color: transparent;
}
.cid-uT7cpKmkeL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uT7cpKmkeL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT7cpKmkeL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .navbar-buttons {
    text-align: left;
  }
}
.cid-uT7cpKmkeL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uT7cpKmkeL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT7cpKmkeL .navbar {
    height: 70px;
  }
  .cid-uT7cpKmkeL .navbar.opened {
    height: auto;
  }
  .cid-uT7cpKmkeL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uT7cpKmkeL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uT7cpKmkeL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar-brand {
    margin-right: auto;
  }
  .cid-uT7cpKmkeL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uT7cpKmkeL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-rSb6YvkYkh {
  padding-top: 150px;
  padding-bottom: 150px;
  background-image: url("../../../assets/images/male-dentist-and-woman-in-dentist-office-2022-05-15-23-41-40-utc-2000x1334.webp");
}
.cid-rSb6YvkYkh .mbr-section-subtitle {
  color: #4f87fb;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 2px;
  background-color: #4f87fb;
  padding: 5px 14px;
  color: #ffffff;
  display: table;
}
.cid-rSb6YvkYkh .mbr-section-title {
  color: #130947;
  font-weight: 900;
}
.cid-rSb6YvkYkh .mbr-section-title .accent-word {
  color: #4f87fb;
}
.cid-rSb6YvkYkh .mbr-text {
  color: #6d7a8c;
}
.cid-rSb6YvkYkh .content-link {
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  align-items: center;
  color: #130947;
}
.cid-rSb6YvkYkh .content-link span {
  margin-right: 15px;
  margin-left: 20px;
  padding: 10px;
  border-radius: 100%;
  color: #4f87fb;
  background-color: #ffffff;
  font-size: 2.475rem;
}
.cid-rSb6YvkYkh .separator {
  margin-top: -15px;
  margin-left: 0;
  margin-right: auto;
  width: 100%;
}
.cid-rSb6YvkYkh .separator .sep-holder {
  height: 1px;
  position: relative;
  -webkit-box-flex: 1;
  flex: 1 1 auto;
  width: 33%;
}
.cid-rSb6YvkYkh .separator .sep-holder .sep-line {
  border-color: #4f87fb !important;
  border-top-width: 5px;
  height: 1px;
  border-top: 5px solid #4f87fb;
  position: relative;
  top: 1px;
  width: 33%;
}
.cid-rSb6YvkYkh .mbr-section-btn {
  display: flex;
  flex-wrap: wrap;
  margin-top: 47px;
}
.cid-rSb6YvkYkh .mbr-section-btn .btn {
  border-radius: 4px;
  margin: 0.4rem 0.6rem 0.4rem 0 !important;
  padding: 15px 40px;
}
.cid-rSb6YvkYkh .mbr-section-btn .btn.display-4 {
  line-height: 26px;
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 13px;
}
.cid-rSb6YvkYkh .mbr-section-btn .btn-primary:hover {
  background-color: #130947 !important;
  border-color: #130947 !important;
  color: #ffffff !important;
}
@media (max-width: 991px) {
  .cid-rSb6YvkYkh .separator,
  .cid-rSb6YvkYkh .sep-holder,
  .cid-rSb6YvkYkh .sep-line {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .cid-rSb6YvkYkh .mbr-section-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .cid-rSb6YvkYkh .mbr-section-btn {
    -webkit-box-pack: center;
    justify-content: center;
  }
}
.cid-rSb6YvkYkh .mbr-section-title,
.cid-rSb6YvkYkh .separator,
.cid-rSb6YvkYkh .sep-holder {
  text-align: center;
}
.cid-tMiqaIvBOp {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tMiqaIvBOp .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tMiqaIvBOp .text-content .content-title {
  color: #130947;
  margin-bottom: 30px;
}
.cid-tMiqaIvBOp .text-content .content-title.display-5 {
  font-size: 26px;
  line-height: 1.38;
  letter-spacing: -0.5px;
}
.cid-tMiqaIvBOp .text-content .list-block {
  border-bottom-width: 1px;
  padding-bottom: 30px;
  border-bottom-color: #130947;
  border-bottom-style: dotted;
  margin-bottom: 20px;
}
.cid-tMiqaIvBOp .text-content .list-block .card-img span {
  color: #4f87fb;
  font-size: 2.5rem;
}
.cid-tMiqaIvBOp .text-content .list-block .list-item-title {
  color: #130947;
}
.cid-tMiqaIvBOp .text-content .list-block .list-item-title.display-7 {
  font-size: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.cid-tMiqaIvBOp .text-content .list-block .list-item-text {
  padding-top: 10px;
  line-height: 1.29;
  color: #6d7a8c;
  margin-bottom: 0;
}
.cid-tMiqaIvBOp .text-content .list-block.last {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.cid-tMiqaIvBOp .text-content .social {
  font-size: 1.2rem;
  padding-left: 4.5rem;
}
.cid-tMiqaIvBOp .text-content .social span {
  margin-right: 11.2px;
  margin-bottom: 8px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  color: #6d7a8c;
}
.cid-tMiqaIvBOp .text-content .social span:hover {
  color: #4f87fb;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.cid-tMiqaIvBOp .card-img {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 3rem;
  text-align: center;
}
.cid-tMiqaIvBOp .list-block {
  position: relative;
}
.cid-tMiqaIvBOp .list-block h4,
.cid-tMiqaIvBOp .list-block p {
  padding-left: 4.5rem;
}
.cid-tMiqaIvBOp .card-img {
  display: block;
}
.cid-tMiqaIvBOp input,
.cid-tMiqaIvBOp textarea {
  border-left: none;
  border-top: none;
  border-right: none;
  border-radius: 4px;
  padding: 20px 10px 20px 20px;
  font-size: 13px;
  color: #ffffff;
  font-weight: 600;
}
.cid-tMiqaIvBOp input:focus,
.cid-tMiqaIvBOp textarea:focus {
  border-left: none;
  border-top: none;
  border-right: none;
}
.cid-tMiqaIvBOp .form-control,
.cid-tMiqaIvBOp .field-input {
  min-height: 3rem;
  padding: 20px 10px 20px 20px;
  background-color: #ecf1f8;
  border-color: #ffffff;
  color: #000000;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tMiqaIvBOp .form-control:hover,
.cid-tMiqaIvBOp .field-input:hover,
.cid-tMiqaIvBOp .form-control:focus,
.cid-tMiqaIvBOp .field-input:focus {
  background-color: #ecf1f8;
  border-color: #ffffff !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tMiqaIvBOp input::-webkit-input-placeholder,
.cid-tMiqaIvBOp textarea::-webkit-input-placeholder {
  color: #28303f;
}
.cid-tMiqaIvBOp input:-moz-placeholder,
.cid-tMiqaIvBOp textarea:-moz-placeholder {
  color: #28303f;
}
.cid-tMiqaIvBOp .jq-selectbox li,
.cid-tMiqaIvBOp .jq-selectbox li {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tMiqaIvBOp .jq-selectbox li:hover,
.cid-tMiqaIvBOp .jq-selectbox li.selected {
  background-color: #ecf1f8;
  color: #000000;
}
.cid-tMiqaIvBOp .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tMiqaIvBOp .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #ecf1f8;
}
.cid-tMiqaIvBOp .mbr-form {
  max-width: 550px;
}
.cid-tMiqaIvBOp .mbr-form .mbr-subtitle {
  color: #4f87fb;
  font-weight: 800;
}
.cid-tMiqaIvBOp .mbr-form .mbr-subtitle.display-4 {
  font-size: 13px;
  line-height: 1.85;
  letter-spacing: 2px;
}
.cid-tMiqaIvBOp .mbr-form .mbr-section-title {
  color: #130947;
  font-weight: 700;
}
.cid-tMiqaIvBOp .mbr-form .mbr-section-title.display-2 {
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.cid-tMiqaIvBOp .mbr-form .mbr-text {
  color: #6d7a8c;
}
.cid-tMiqaIvBOp .mbr-form textarea {
  min-height: 100px;
}
.cid-tMiqaIvBOp .mbr-form .btn {
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-width: 2px;
  border-radius: 4px;
  border-color: #4f87fb;
  color: #4f87fb;
  padding: 18px 29px;
}
.cid-tMiqaIvBOp .mbr-form .btn.display-4 {
  font-size: 13px;
  letter-spacing: 1px;
}
.cid-tMiqaIvBOp .mbr-form span.value.form-control {
  min-height: 3.5rem;
  padding: 1rem;
}
@media (max-width: 991px) {
  .cid-tMiqaIvBOp .mbr-form {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (max-width: 768px) {
  .cid-tMiqaIvBOp .mbr-section-title,
  .cid-tMiqaIvBOp .content-title,
  .cid-tMiqaIvBOp .mbr-section-btn {
    text-align: left;
  }
}
.cid-tMit0XjS9W {
  background-color: #ffffff;
  padding-top: 45px;
  padding-bottom: 45px;
}
.cid-tMit0XjS9W .google-map {
  height: 30rem;
  position: relative;
}
.cid-tMit0XjS9W .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tMit0XjS9W .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tMit0XjS9W .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tMit0XjS9W .google-map[data-state='loading'] [data-state-details] {
  display: none;
}
.cid-tMiIiBe802 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #130947;
}
.cid-tMiIiBe802 p {
  text-align: center;
}
.cid-tMiIiBe802 .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tMiIiBe802 .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tMiIiBe802 a {
  font-weight: normal;
}
.cid-tMiIiBe802 .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-tMiIiBe802 .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tMiIiBe802 li a {
  position: relative;
}
.cid-tMiIiBe802 li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-tMiIiBe802 li a:hover:before {
  width: 100%;
}
.cid-tMiIiBe802 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  text-align: right;
}
.cid-tMiIiBe802 .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .d-flex {
    flex-direction: column;
  }
  .cid-tMiIiBe802 .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-tMiIiBe802 .icon-transition span {
  display: block;
}
.cid-tMiIiBe802 .list-inline-item a {
  display: block;
}
.cid-tMiIiBe802 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMiIiBe802 .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMiIiBe802 .icon-transition span {
  color: #151515;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tMiIiBe802 .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-tMiIiBe802 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tMiIiBe802 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tMiIiBe802 .logo-footer {
    text-align: center;
  }
  .cid-tMiIiBe802 .social-media {
    justify-content: center;
  }
}
.cid-tMiIiBe802 .list-inline-item,
.cid-tMiIiBe802 .mbr-list,
.cid-tMiIiBe802 .first-column {
  color: #ffffff;
}
.cid-uT7cpKmkeL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uT7cpKmkeL .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;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uT7cpKmkeL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT7cpKmkeL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT7cpKmkeL .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uT7cpKmkeL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uT7cpKmkeL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uT7cpKmkeL .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uT7cpKmkeL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uT7cpKmkeL .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uT7cpKmkeL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
}
.cid-uT7cpKmkeL .nav-item:focus,
.cid-uT7cpKmkeL .nav-link:focus {
  outline: none;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT7cpKmkeL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT7cpKmkeL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uT7cpKmkeL .navbar.opened {
  transition: all 0.3s;
}
.cid-uT7cpKmkeL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uT7cpKmkeL .navbar .navbar-logo img {
  width: auto;
}
.cid-uT7cpKmkeL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uT7cpKmkeL .navbar.collapsed {
  justify-content: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT7cpKmkeL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar {
    min-height: 72px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT7cpKmkeL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT7cpKmkeL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uT7cpKmkeL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uT7cpKmkeL .dropdown-item.active,
.cid-uT7cpKmkeL .dropdown-item:active {
  background-color: transparent;
}
.cid-uT7cpKmkeL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uT7cpKmkeL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT7cpKmkeL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .navbar-buttons {
    text-align: left;
  }
}
.cid-uT7cpKmkeL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uT7cpKmkeL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT7cpKmkeL .navbar {
    height: 70px;
  }
  .cid-uT7cpKmkeL .navbar.opened {
    height: auto;
  }
  .cid-uT7cpKmkeL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uT7cpKmkeL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uT7cpKmkeL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar-brand {
    margin-right: auto;
  }
  .cid-uT7cpKmkeL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uT7cpKmkeL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tOg4qTvBhb {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-tOg4qTvBhb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOg4qTvBhb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOg4qTvBhb .container,
.cid-tOg4qTvBhb .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tOg4qTvBhb .container,
  .cid-tOg4qTvBhb .container-fluid {
    padding: 0 20px;
  }
}
.cid-tOg4qTvBhb .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tOg4qTvBhb .title-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }
}
.cid-tOg4qTvBhb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tOg4qTvBhb .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid #3d4045;
}
@media (max-width: 992px) {
  .cid-tOg4qTvBhb .text-wrapper {
    border: none;
  }
}
@media (max-width: 992px) {
  .cid-tOg4qTvBhb .text-wrapper {
    padding: 0;
  }
}
.cid-tOg4qTvBhb .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tOg4qTvBhb .mbr-section-title {
  color: #3d4045;
}
.cid-tOg4qTvBhb .mbr-text {
  color: #ed9b82;
}
.cid-tOg5CLsivz {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tOg5CLsivz h2,
.cid-tOg5CLsivz h3,
.cid-tOg5CLsivz h4,
.cid-tOg5CLsivz p {
  margin: 0;
}
.cid-tOg5CLsivz .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tOg5CLsivz .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-tOg5CLsivz .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-tMiIiBe802 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #130947;
}
.cid-tMiIiBe802 p {
  text-align: center;
}
.cid-tMiIiBe802 .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tMiIiBe802 .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tMiIiBe802 a {
  font-weight: normal;
}
.cid-tMiIiBe802 .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-tMiIiBe802 .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tMiIiBe802 li a {
  position: relative;
}
.cid-tMiIiBe802 li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-tMiIiBe802 li a:hover:before {
  width: 100%;
}
.cid-tMiIiBe802 .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  text-align: right;
}
.cid-tMiIiBe802 .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-tMiIiBe802 .d-flex {
    flex-direction: column;
  }
  .cid-tMiIiBe802 .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-tMiIiBe802 .icon-transition span {
  display: block;
}
.cid-tMiIiBe802 .list-inline-item a {
  display: block;
}
.cid-tMiIiBe802 .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tMiIiBe802 .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tMiIiBe802 .icon-transition span {
  color: #151515;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tMiIiBe802 .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-tMiIiBe802 .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tMiIiBe802 .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tMiIiBe802 .logo-footer {
    text-align: center;
  }
  .cid-tMiIiBe802 .social-media {
    justify-content: center;
  }
}
.cid-tMiIiBe802 .list-inline-item,
.cid-tMiIiBe802 .mbr-list,
.cid-tMiIiBe802 .first-column {
  color: #ffffff;
}
.cid-uT7cpKmkeL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uT7cpKmkeL .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;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uT7cpKmkeL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT7cpKmkeL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT7cpKmkeL .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uT7cpKmkeL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uT7cpKmkeL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uT7cpKmkeL .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uT7cpKmkeL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uT7cpKmkeL .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uT7cpKmkeL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
}
.cid-uT7cpKmkeL .nav-item:focus,
.cid-uT7cpKmkeL .nav-link:focus {
  outline: none;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT7cpKmkeL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT7cpKmkeL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uT7cpKmkeL .navbar.opened {
  transition: all 0.3s;
}
.cid-uT7cpKmkeL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uT7cpKmkeL .navbar .navbar-logo img {
  width: auto;
}
.cid-uT7cpKmkeL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uT7cpKmkeL .navbar.collapsed {
  justify-content: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT7cpKmkeL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar {
    min-height: 72px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT7cpKmkeL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT7cpKmkeL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uT7cpKmkeL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uT7cpKmkeL .dropdown-item.active,
.cid-uT7cpKmkeL .dropdown-item:active {
  background-color: transparent;
}
.cid-uT7cpKmkeL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uT7cpKmkeL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT7cpKmkeL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .navbar-buttons {
    text-align: left;
  }
}
.cid-uT7cpKmkeL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uT7cpKmkeL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT7cpKmkeL .navbar {
    height: 70px;
  }
  .cid-uT7cpKmkeL .navbar.opened {
    height: auto;
  }
  .cid-uT7cpKmkeL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uT7cpKmkeL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uT7cpKmkeL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar-brand {
    margin-right: auto;
  }
  .cid-uT7cpKmkeL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uT7cpKmkeL .navbar-collapse {
    padding: 1rem;
  }
}
.cid-tOg5R7xE3C {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/background1.webp");
}
.cid-tOg5R7xE3C .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOg5R7xE3C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOg5R7xE3C .container,
.cid-tOg5R7xE3C .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tOg5R7xE3C .container,
  .cid-tOg5R7xE3C .container-fluid {
    padding: 0 20px;
  }
}
.cid-tOg5R7xE3C .title-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tOg5R7xE3C .title-wrapper {
    margin-bottom: 50px;
    padding: 0;
  }
}
.cid-tOg5R7xE3C .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-tOg5R7xE3C .text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 50px;
  border-left: 1px solid #3d4045;
}
@media (max-width: 992px) {
  .cid-tOg5R7xE3C .text-wrapper {
    border: none;
  }
}
@media (max-width: 992px) {
  .cid-tOg5R7xE3C .text-wrapper {
    padding: 0;
  }
}
.cid-tOg5R7xE3C .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tOg5R7xE3C .mbr-section-title {
  color: #3d4045;
  text-align: left;
}
.cid-tOg5R7xE3C .mbr-text {
  color: #ed9b82;
}
.cid-tOg5R80zWP {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tOg5R80zWP h2,
.cid-tOg5R80zWP h3,
.cid-tOg5R80zWP h4,
.cid-tOg5R80zWP p {
  margin: 0;
}
.cid-tOg5R80zWP .text-wrap {
  margin-top: 10px;
  margin-bottom: 30px;
}
.cid-tOg5R80zWP .mbr-section-title {
  color: #000000;
  margin-bottom: 10px;
}
.cid-tOg5R80zWP .mbr-text {
  color: #6b6b6b;
  margin: 10px 0;
}
.cid-tOg5R8su5j {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #130947;
}
.cid-tOg5R8su5j p {
  text-align: center;
}
.cid-tOg5R8su5j .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-tOg5R8su5j .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-tOg5R8su5j a {
  font-weight: normal;
}
.cid-tOg5R8su5j .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-tOg5R8su5j .copyright .list-inline {
  margin-bottom: 0;
}
.cid-tOg5R8su5j .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-tOg5R8su5j .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-tOg5R8su5j li a {
  position: relative;
}
.cid-tOg5R8su5j li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-tOg5R8su5j li a:hover:before {
  width: 100%;
}
.cid-tOg5R8su5j .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  text-align: right;
}
.cid-tOg5R8su5j .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-tOg5R8su5j .d-flex {
    flex-direction: column;
  }
  .cid-tOg5R8su5j .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-tOg5R8su5j .icon-transition span {
  display: block;
}
.cid-tOg5R8su5j .list-inline-item a {
  display: block;
}
.cid-tOg5R8su5j .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tOg5R8su5j .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-tOg5R8su5j .icon-transition span {
  color: #151515;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-tOg5R8su5j .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-tOg5R8su5j .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-tOg5R8su5j .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-tOg5R8su5j .logo-footer {
    text-align: center;
  }
  .cid-tOg5R8su5j .social-media {
    justify-content: center;
  }
}
.cid-tOg5R8su5j .list-inline-item,
.cid-tOg5R8su5j .mbr-list,
.cid-tOg5R8su5j .first-column {
  color: #ffffff;
}
.cid-uT7cpKmkeL {
  z-index: 1000;
  width: 100%;
  position: relative;
}
.cid-uT7cpKmkeL .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;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-toggler {
    transform: scale(0.8);
  }
}
.cid-uT7cpKmkeL .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uT7cpKmkeL .navbar-brand img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 0px !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uT7cpKmkeL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uT7cpKmkeL .navbar-nav {
  margin: auto;
  margin-left: 0;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item {
  padding: 0 !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link {
  padding: 16px !important;
  margin: 0 !important;
  border-radius: 1rem !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
.cid-uT7cpKmkeL .navbar-nav .open .nav-link::after {
  transform: rotate(180deg);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav .open .nav-link::before {
    content: "";
    width: 100%;
    height: 20px;
    top: 100%;
    background: transparent;
    position: absolute;
  }
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item {
  padding: 12px !important;
  border-radius: 0.5rem !important;
  margin: 0 8px !important;
  transition: .3s all !important;
}
.cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
  background-color: rgba(27, 31, 10, 0.06);
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar-nav {
    padding-left: 1.5rem;
  }
}
.cid-uT7cpKmkeL .nav-link {
  width: fit-content;
  position: relative;
}
.cid-uT7cpKmkeL .navbar-logo {
  padding-left: 2rem;
  margin: 0 !important;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar-logo {
    padding-left: 1rem;
  }
}
.cid-uT7cpKmkeL .navbar-caption {
  padding-left: 1rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .nav-dropdown {
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  transition: .3s all;
}
.cid-uT7cpKmkeL .container {
  display: flex;
  height: 90px;
  padding: 0.5rem 0.6rem;
  flex-wrap: nowrap;
  background: rgba(255, 255, 255, 0.8) !important;
  left: 0;
  right: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: flex-end;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vw;
  margin-top: 1rem;
  background-color: #ffffff;
  box-shadow: 0 30px 60px 0 rgba(27, 31, 10, 0.08);
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .container {
    padding-right: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .container {
    width: 95%;
    height: 56px !important;
    padding-right: 1rem;
    margin-top: 0rem;
  }
}
.cid-uT7cpKmkeL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown-menu {
  flex-wrap: wrap;
  flex-direction: column;
  max-width: 100%;
  padding: 12px 4px !important;
  border-radius: 1.5rem;
  transition: .3s all !important;
  min-width: auto;
  background: #ffffff;
  background: rgba(255, 255, 255, 0.8) !important;
}
.cid-uT7cpKmkeL .nav-item:focus,
.cid-uT7cpKmkeL .nav-link:focus {
  outline: none;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uT7cpKmkeL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uT7cpKmkeL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uT7cpKmkeL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uT7cpKmkeL .navbar {
  min-height: 90px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.cid-uT7cpKmkeL .navbar.opened {
  transition: all 0.3s;
}
.cid-uT7cpKmkeL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uT7cpKmkeL .navbar .navbar-logo img {
  width: auto;
}
.cid-uT7cpKmkeL .navbar .navbar-collapse {
  z-index: 1;
  justify-content: flex-end;
}
.cid-uT7cpKmkeL .navbar.collapsed {
  justify-content: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uT7cpKmkeL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uT7cpKmkeL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uT7cpKmkeL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uT7cpKmkeL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-uT7cpKmkeL .navbar {
    min-height: 72px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-logo img {
    height: 2rem !important;
  }
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uT7cpKmkeL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uT7cpKmkeL .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-uT7cpKmkeL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uT7cpKmkeL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 10px;
  }
  .cid-uT7cpKmkeL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uT7cpKmkeL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uT7cpKmkeL .navbar.navbar-short .navbar-logo img {
  height: 2rem;
}
.cid-uT7cpKmkeL .dropdown-item.active,
.cid-uT7cpKmkeL .dropdown-item:active {
  background-color: transparent;
}
.cid-uT7cpKmkeL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uT7cpKmkeL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uT7cpKmkeL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 105%;
  transform: none;
  top: -12px;
}
.cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
  display: flex;
}
.cid-uT7cpKmkeL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uT7cpKmkeL .navbar-buttons {
  text-align: center;
  min-width: 140px;
}
@media (max-width: 992px) {
  .cid-uT7cpKmkeL .navbar-buttons {
    text-align: left;
  }
}
.cid-uT7cpKmkeL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uT7cpKmkeL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uT7cpKmkeL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uT7cpKmkeL .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uT7cpKmkeL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uT7cpKmkeL .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-uT7cpKmkeL .icons-menu {
    justify-content: flex-start;
    margin-bottom: .5rem;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uT7cpKmkeL .navbar {
    height: 70px;
  }
  .cid-uT7cpKmkeL .navbar.opened {
    height: auto;
  }
  .cid-uT7cpKmkeL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
  display: none;
  width: max-content;
  max-width: 500px !important;
  transform: translateX(-50%);
  top: calc(100% + 20px);
  left: 50%;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
  line-height: 1 !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
  align-items: center;
  display: flex;
  height: max-content !important;
  min-height: max-content !important;
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
  display: inline-block;
  position: static;
  margin-left: 0.5rem;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  transition: .3s all;
  transform: rotate(-90deg);
}
.cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
  transform: rotate(0deg);
}
.cid-uT7cpKmkeL .mbr-section-btn {
  margin: -0.6rem -0.6rem;
}
.cid-uT7cpKmkeL .navbar-toggler {
  margin-left: 12px;
  margin-right: 8px;
  order: 1000;
}
@media (max-width: 991px) {
  .cid-uT7cpKmkeL .navbar-brand {
    margin-right: auto;
  }
  .cid-uT7cpKmkeL .navbar-collapse {
    z-index: -1 !important;
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    padding: 1rem;
    border-radius: 1.5rem;
    background: #ffffff;
    opacity: 1;
    border-color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(8px);
  }
  .cid-uT7cpKmkeL .navbar-nav .nav-item .nav-link::after {
    margin-left: 10px;
  }
  .cid-uT7cpKmkeL .navbar-nav .dropdown-item:hover {
    background-color: rgba(27, 31, 10, 0.06);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu {
    max-width: 100% !important;
    transform: translateX(0);
    top: 10px;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-item {
    padding: 8px !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item {
    align-items: center;
    display: flex;
    height: max-content !important;
    min-height: max-content !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown .dropdown-item::after {
    display: inline-block;
    position: static;
    margin-left: 0.5rem;
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    transition: .3s all;
    transform: rotate(0deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown.open .dropdown-item::after {
    transform: rotate(180deg);
  }
  .cid-uT7cpKmkeL .navbar .dropdown > .dropdown-menu .dropdown-submenu {
    position: static;
    width: 100%;
    max-width: 100% !important;
    transform: translateX(0) !important;
    top: 0;
    left: 0;
    padding: 8px !important;
    border-radius: 1rem;
    background-color: rgba(27, 31, 10, 0.04) !important;
  }
  .cid-uT7cpKmkeL .navbar .dropdown.open > .dropdown-menu {
    display: flex !important;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 575px) {
  .cid-uT7cpKmkeL .navbar-collapse {
    padding: 1rem;
  }
}
