body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Quicksand', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Quicksand', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #14a6c8 !important;
}
.bg-success {
  background-color: #14a6c8 !important;
}
.bg-info {
  background-color: #bbbbbb !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #14a6c8 !important;
  border-color: #14a6c8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0c6579 !important;
  border-color: #0c6579 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0c6579 !important;
  border-color: #0c6579 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #d06398 !important;
  border-color: #d06398 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a9336d !important;
  border-color: #a9336d !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a9336d !important;
  border-color: #a9336d !important;
}
.btn-info,
.btn-info:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-success,
.btn-success:active {
  background-color: #14a6c8 !important;
  border-color: #14a6c8 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #0c6579 !important;
  border-color: #0c6579 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0c6579 !important;
  border-color: #0c6579 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #14a6c8;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0c6579 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #14a6c8 !important;
  border-color: #14a6c8 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #d06398;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a9336d !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #d06398 !important;
  border-color: #d06398 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bbbbbb;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #14a6c8;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0c6579 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #14a6c8 !important;
  border-color: #14a6c8 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #14a6c8 !important;
}
.text-secondary {
  color: #d06398 !important;
}
.text-success {
  color: #14a6c8 !important;
}
.text-info {
  color: #bbbbbb !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0b596b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #9e2f65 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #0b596b !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #888888 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #14a6c8;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #bbbbbb;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #14a6c8;
  border-color: #14a6c8;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #14a6c8;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6bd7f0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #6bd7f0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fbfbfb;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #14a6c8 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Quicksand', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #14a6c8;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #14a6c8;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #14a6c8;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #14a6c8;
  border-bottom-color: #14a6c8;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #14a6c8 !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: #d06398 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%2314a6c8' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tbYqcAqVlM {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/bbj-web-hero-main-gray-3.webp");
}
.cid-tbYqcAqVlM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbYqcAqVlM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbYqcAqVlM .social-row .soc-item {
  display: inline-block;
  text-align: center;
  margin-bottom: 1rem;
  margin-right: .7rem;
}
.cid-tbYqcAqVlM .social-row .soc-item .mbr-iconfont {
  font-size: 32px;
  border-radius: 50%;
  padding: 0.6rem;
  border: 2px solid #232323;
  transition: all 0.3s;
  color: #232323;
}
.cid-tbYqcAqVlM .social-row .soc-item .mbr-iconfont:hover {
  background-color: #232323;
  color: #ffffff;
}
.cid-tbYqcAqVlM .mbr-section-title {
  color: #ffffff;
}
.cid-tH8LOJvyY9 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tH8LOJvyY9 .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-tH8LOJvyY9 .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-tH8LOJvyY9 .wave-container {
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-tH8LOJvyY9 .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #14a6c8;
}
.cid-tH8LOJvyY9 .svg-top .st0 {
  fill: #fafafa;
}
@media (max-width: 992px) {
  .cid-tH8LOJvyY9 .svg-top {
    width: 1000px;
  }
}
.cid-tH8LOJvyY9 .img1 {
  background: #14a6c8;
}
.cid-tH8LOJvyY9 .img2 {
  background: #bfbfbf;
}
.cid-tH8LOJvyY9 .card {
  margin: 0.5rem auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-tH8LOJvyY9 .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-tH8LOJvyY9 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tH8LOJvyY9 .card-wrapper {
    flex-direction: column;
  }
  .cid-tH8LOJvyY9 .card-box {
    padding: 1rem;
  }
  .cid-tH8LOJvyY9 .card-box,
  .cid-tH8LOJvyY9 .img-wrapper {
    width: 100%;
  }
  .cid-tH8LOJvyY9 .img-wrapper {
    padding: 4rem 1rem;
  }
}
.cid-tH8LOJvyY9 .card-subtitle {
  color: #1a449a;
}
.cid-tH8LOJvyY9 .header-cards {
  text-align: center;
}
.cid-tH8LOJvyY9 .mbr-text,
.cid-tH8LOJvyY9 .link-wrap {
  color: #555555;
}
.cid-tH8LOJvyY9 .card-title,
.cid-tH8LOJvyY9 .card-box {
  color: #14a6c8;
}
.cid-tH8LOJvyY9 .mbr-text,
.cid-tH8LOJvyY9 .mbr-section-btn {
  color: #232323;
}
.cid-tH8LOJvyY9 .btn {
  padding-left: 0;
}
.cid-tH8LOJvyY9 .card-title {
  text-align: left;
  color: #353535;
}
.cid-tH8RNLiEo9 {
  padding-top: 8rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-tH8RNLiEo9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH8RNLiEo9 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tNyWu6gZCZ {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNyWu6gZCZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNyWu6gZCZ .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tNyWu6gZCZ .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tNyWu6gZCZ img {
  border-radius: 1rem;
}
.cid-tNyWu6gZCZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNyWu6gZCZ .row {
  flex-direction: row-reverse;
}
.cid-tNyWu6gZCZ .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tNyWu6gZCZ .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tNyWu6gZCZ .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tNyWu6gZCZ .mbr-section-title {
  color: #353535;
}
.cid-tNyWu6gZCZ .mbr-section-subtitle,
.cid-tNyWu6gZCZ .subtitle-wrap {
  color: #19303d;
}
.cid-tNyWu6gZCZ .mbr-text,
.cid-tNyWu6gZCZ .mbr-section-btn {
  color: #353535;
}
.cid-tNzs0mvII5 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNzs0mvII5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNzs0mvII5 .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tNzs0mvII5 .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tNzs0mvII5 img {
  border-radius: 1rem;
}
.cid-tNzs0mvII5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNzs0mvII5 .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tNzs0mvII5 .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tNzs0mvII5 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tNzs0mvII5 .mbr-section-title {
  color: #353535;
}
.cid-tNzs0mvII5 .mbr-section-subtitle,
.cid-tNzs0mvII5 .subtitle-wrap {
  color: #19303d;
}
.cid-tNzs0mvII5 .mbr-text,
.cid-tNzs0mvII5 .mbr-section-btn {
  color: #353535;
}
.cid-tUyRJWETne {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-tUyRJWETne .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyRJWETne .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tUyPPNS76D {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-tUyPPNS76D img {
  width: 120px;
  margin: auto;
}
.cid-tUyPPNS76D .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tUyPPNS76D .card {
    max-width: 12.5%;
  }
}
.cid-tUyRKkR9GX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-tUyRKkR9GX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyRKkR9GX .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uUMQW3Q4qF {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uUMQW3Q4qF img,
.cid-uUMQW3Q4qF .item-img {
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-uUMQW3Q4qF .item:focus,
.cid-uUMQW3Q4qF span:focus {
  outline: none;
}
.cid-uUMQW3Q4qF .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uUMQW3Q4qF .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uUMQW3Q4qF .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-uUMQW3Q4qF .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uUMQW3Q4qF .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-uUMQW3Q4qF .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-uUMQW3Q4qF .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uUMQW3Q4qF .mbr-section-title {
  color: #232323;
}
.cid-uUMQW3Q4qF .mbr-text,
.cid-uUMQW3Q4qF .mbr-section-btn {
  text-align: left;
}
.cid-uUMQW3Q4qF .item-title {
  text-align: left;
}
.cid-uUMQW3Q4qF .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tNXqGCAJDB {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-tNXqGCAJDB .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNXqGCAJDB .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tNcyeY8cuE {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-tNcyeY8cuE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNcyeY8cuE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNcyeY8cuE .mbr-text,
.cid-tNcyeY8cuE .mbr-section-btn {
  color: #232323;
}
.cid-tNcyeY8cuE .card-title,
.cid-tNcyeY8cuE .card-box {
  color: #353535;
}
.cid-tNcyeY8cuE .mbr-text,
.cid-tNcyeY8cuE .link-wrap {
  color: #ffffff;
}
.cid-tNcyeY8cuE .card-box .mbr-text,
.cid-tNcyeY8cuE .mbr-section-btn {
  color: #353535;
}
.cid-tH8CxErYPJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-bluegray-upper.svg");
}
.cid-tH8CxErYPJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tH8CxErYPJ .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tcHOYZha7v {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #b7f1ff;
}
.cid-tcHOYZha7v .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tcHOYZha7v form {
    width: 50%;
  }
}
.cid-tcHOYZha7v form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tcHOYZha7v form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tcvtYAg6oF {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/hero-ordinace.webp");
}
.cid-tcvtYAg6oF .row {
  align-items: center;
}
.cid-tcvtYAg6oF .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tcvtYAg6oF .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tcvtYAg6oF .header-text {
    margin-bottom: 20px;
  }
}
.cid-tcvtYAg6oF .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tcvtYAg6oF .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tcvtYAg6oF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tcvtYAg6oF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u62WcHk2Ls {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-u62WcHk2Ls .card-box {
  padding: 2rem;
  width: 58.33%;
}
.cid-u62WcHk2Ls .img-wrapper {
  width: 41.66%;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-u62WcHk2Ls .wave-container {
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-u62WcHk2Ls .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #14a6c8;
}
.cid-u62WcHk2Ls .svg-top .st0 {
  fill: #fafafa;
}
@media (max-width: 992px) {
  .cid-u62WcHk2Ls .svg-top {
    width: 1000px;
  }
}
.cid-u62WcHk2Ls .img1 {
  background: #14a6c8;
}
.cid-u62WcHk2Ls .img2 {
  background: #bfbfbf;
}
.cid-u62WcHk2Ls .card {
  margin: 0.5rem auto;
  min-height: 280px;
  transition: all 0.3s;
}
.cid-u62WcHk2Ls .card-wrapper {
  background: #ffffff;
  border-radius: 4px;
  display: flex;
  overflow: hidden;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-u62WcHk2Ls .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-u62WcHk2Ls .card-wrapper {
    flex-direction: column;
  }
  .cid-u62WcHk2Ls .card-box {
    padding: 1rem;
  }
  .cid-u62WcHk2Ls .card-box,
  .cid-u62WcHk2Ls .img-wrapper {
    width: 100%;
  }
  .cid-u62WcHk2Ls .img-wrapper {
    padding: 4rem 1rem;
  }
}
.cid-u62WcHk2Ls .card-subtitle {
  color: #1a449a;
}
.cid-u62WcHk2Ls .header-cards {
  text-align: center;
}
.cid-u62WcHk2Ls .mbr-text,
.cid-u62WcHk2Ls .link-wrap {
  color: #555555;
}
.cid-u62WcHk2Ls .card-title,
.cid-u62WcHk2Ls .card-box {
  color: #14a6c8;
}
.cid-u62WcHk2Ls .mbr-text,
.cid-u62WcHk2Ls .mbr-section-btn {
  color: #232323;
}
.cid-u62WcHk2Ls .btn {
  padding-left: 0;
}
.cid-u62WcHk2Ls .card-title {
  text-align: left;
  color: #353535;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tcHZRLA7P2 {
  padding-top: 6rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/hero-ordinace.webp");
}
.cid-tcHZRLA7P2 .row {
  align-items: center;
}
.cid-tcHZRLA7P2 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tcHZRLA7P2 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tcHZRLA7P2 .header-text {
    margin-bottom: 20px;
  }
}
.cid-tcHZRLA7P2 .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tcHZRLA7P2 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tcHZRLA7P2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tcHZRLA7P2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tcI00j8Dcg {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tFUoJiK5bz {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-tFUoJiK5bz .row {
  align-items: center;
}
.cid-tFUoJiK5bz .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tFUoJiK5bz .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tFUoJiK5bz .header-text {
    margin-bottom: 20px;
  }
}
.cid-tFUoJiK5bz .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tFUoJiK5bz .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tFUoJiK5bz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFUoJiK5bz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFUoJiK5bz .mbr-text,
.cid-tFUoJiK5bz .mbr-section-btn {
  color: #ffffff;
}
.cid-tGiloAjwaJ {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-tGiloAjwaJ .img-wrap {
  position: relative;
}
.cid-tGiloAjwaJ .round-block {
  background: #39937c;
  background: linear-gradient(45deg, #39937c, #5aac98, #7cbdad);
  width: 266px;
  height: 266px;
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 1;
  border-radius: 50%;
  transition: box-shadow 1s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-tGiloAjwaJ .round-block .wrapper {
  vertical-align: middle;
}
.cid-tGiloAjwaJ .round-block .wrapper .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGiloAjwaJ .mbr-text,
.cid-tGiloAjwaJ .mbr-section-btn {
  color: #232323;
}
.cid-tGiloAjwaJ .mbr-section-title {
  color: #232323;
  margin-bottom: 30px;
}
.cid-tGiloAjwaJ .buttons-wrap .link {
  display: flex;
}
.cid-tGiloAjwaJ .list {
  list-style: none;
  text-align: left;
}
.cid-tGiloAjwaJ .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-tGiloAjwaJ .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #149dcc;
}
@media (max-width: 768px) {
  .cid-tGiloAjwaJ * {
    text-align: center;
  }
  .cid-tGiloAjwaJ .buttons-wrap {
    justify-content: center;
  }
  .cid-tGiloAjwaJ .round-block {
    position: relative;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
.cid-tGXPOiTR2V {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-blue2.svg");
}
.cid-tGXPOiTR2V .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXPOiTR2V .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tGiB4Wd06m {
  padding-top: 8rem;
  padding-bottom: 2rem;
  background-color: #b7f1ff;
  background: linear-gradient(#b7f1ff, #ffeaf4);
}
.cid-tGiB4Wd06m .row {
  flex-direction: row-reverse;
}
.cid-tGiB4Wd06m .img-wrap {
  position: relative;
}
.cid-tGiB4Wd06m .round-block {
  background: #39937c;
  background: linear-gradient(45deg, #39937c, #5aac98, #7cbdad);
  width: 266px;
  height: 266px;
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 1;
  border-radius: 50%;
  transition: box-shadow 1s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-tGiB4Wd06m .round-block .wrapper {
  vertical-align: middle;
}
.cid-tGiB4Wd06m .round-block .wrapper .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGiB4Wd06m .mbr-text,
.cid-tGiB4Wd06m .mbr-section-btn {
  color: #232323;
}
.cid-tGiB4Wd06m .mbr-section-title {
  color: #232323;
  margin-bottom: 30px;
}
.cid-tGiB4Wd06m .buttons-wrap .link {
  display: flex;
}
.cid-tGiB4Wd06m .list {
  list-style: none;
  text-align: left;
}
.cid-tGiB4Wd06m .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-tGiB4Wd06m .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #149dcc;
}
@media (max-width: 768px) {
  .cid-tGiB4Wd06m * {
    text-align: center;
  }
  .cid-tGiB4Wd06m .buttons-wrap {
    justify-content: center;
  }
  .cid-tGiB4Wd06m .round-block {
    position: relative;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
.cid-tGXPOTxv2w {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-tGXPOTxv2w .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXPOTxv2w .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tGilOh7CLH {
  padding-top: 8rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tGilOh7CLH .img-wrap {
  position: relative;
}
.cid-tGilOh7CLH .round-block {
  background: #39937c;
  background: linear-gradient(45deg, #39937c, #5aac98, #7cbdad);
  width: 266px;
  height: 266px;
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 1;
  border-radius: 50%;
  transition: box-shadow 1s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-tGilOh7CLH .round-block .wrapper {
  vertical-align: middle;
}
.cid-tGilOh7CLH .round-block .wrapper .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGilOh7CLH .mbr-text,
.cid-tGilOh7CLH .mbr-section-btn {
  color: #232323;
}
.cid-tGilOh7CLH .mbr-section-title {
  color: #232323;
  margin-bottom: 30px;
}
.cid-tGilOh7CLH .buttons-wrap .link {
  display: flex;
}
.cid-tGilOh7CLH .list {
  list-style: none;
  text-align: left;
}
.cid-tGilOh7CLH .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-tGilOh7CLH .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #149dcc;
}
@media (max-width: 768px) {
  .cid-tGilOh7CLH * {
    text-align: center;
  }
  .cid-tGilOh7CLH .buttons-wrap {
    justify-content: center;
  }
  .cid-tGilOh7CLH .round-block {
    position: relative;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
.cid-tGilOh7CLH .mbr-text,
.cid-tGilOh7CLH .mbr-section-btn,
.cid-tGilOh7CLH .list li {
  color: #353535;
}
.cid-tGXNZ8T3Q7 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink2.svg");
}
.cid-tGXNZ8T3Q7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXNZ8T3Q7 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tGiBi93xbb {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #ffeaf4;
  background: linear-gradient(#ffeaf4, #b7f1ff);
}
.cid-tGiBi93xbb .row {
  flex-direction: row-reverse;
}
.cid-tGiBi93xbb .img-wrap {
  position: relative;
}
.cid-tGiBi93xbb .round-block {
  background: #39937c;
  background: linear-gradient(45deg, #39937c, #5aac98, #7cbdad);
  width: 266px;
  height: 266px;
  position: absolute;
  bottom: 0;
  text-align: center;
  z-index: 1;
  border-radius: 50%;
  transition: box-shadow 1s;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-tGiBi93xbb .round-block .wrapper {
  vertical-align: middle;
}
.cid-tGiBi93xbb .round-block .wrapper .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-tGiBi93xbb .mbr-text,
.cid-tGiBi93xbb .mbr-section-btn {
  color: #232323;
}
.cid-tGiBi93xbb .mbr-section-title {
  color: #232323;
  margin-bottom: 30px;
}
.cid-tGiBi93xbb .buttons-wrap .link {
  display: flex;
}
.cid-tGiBi93xbb .list {
  list-style: none;
  text-align: left;
}
.cid-tGiBi93xbb .list li {
  position: relative;
  margin-bottom: 15px;
}
.cid-tGiBi93xbb .list li::before {
  content: '';
  display: block;
  position: absolute;
  margin-top: 9px;
  left: -25px;
  border-radius: 10px;
  width: 10px;
  height: 10px;
  background-color: #149dcc;
}
@media (max-width: 768px) {
  .cid-tGiBi93xbb * {
    text-align: center;
  }
  .cid-tGiBi93xbb .buttons-wrap {
    justify-content: center;
  }
  .cid-tGiBi93xbb .round-block {
    position: relative;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
  }
}
.cid-tGXOKV7aLi {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-blue.svg");
}
.cid-tGXOKV7aLi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXOKV7aLi .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tGimpYtqa1 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tGimpYtqa1 .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-tGimpYtqa1 h3 {
  font-size: 1.8rem;
}
.cid-tGimpYtqa1 .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-tGimpYtqa1 .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #149dcc;
  background-color: #ffffff;
}
.cid-tGimpYtqa1 .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #149dcc;
}
.cid-tGimpYtqa1 .card-img .icon span {
  color: #149dcc;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-tGimpYtqa1 .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tGimpYtqa1 .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-tGimpYtqa1 .card-img .icon .mbr-iconfont {
    font-size: 4rem;
    line-height: 2.01;
  }
  .cid-tGimpYtqa1 .card-img .icon span {
    font-size: 2.5px;
    line-height: 1em;
  }
}
.cid-tGXMQ08ZX6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink.svg");
}
.cid-tGXMQ08ZX6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGXMQ08ZX6 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tFW1GgI6px {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffeaf4;
}
.cid-tFW1GgI6px .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
@media (min-width: 992px) {
  .cid-tFW1GgI6px form {
    width: 50%;
  }
}
.cid-tFW1GgI6px form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-tFW1GgI6px form .mbr-section-btn .btn {
  width: 100%;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tN60ouKJKE {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-tN60ouKJKE .row {
  align-items: center;
}
.cid-tN60ouKJKE .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tN60ouKJKE .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tN60ouKJKE .header-text {
    margin-bottom: 20px;
  }
}
.cid-tN60ouKJKE .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tN60ouKJKE .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tN60ouKJKE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN60ouKJKE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN60ouKJKE .mbr-text,
.cid-tN60ouKJKE .mbr-section-btn {
  color: #ffffff;
}
.cid-tN65rQWLaw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tN65rQWLaw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN65rQWLaw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN65rQWLaw .cards-container {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  margin: 0;
  flex-wrap: wrap;
}
.cid-tN65rQWLaw .card {
  width: 100%;
  border-radius: 0;
}
.cid-tN65rQWLaw .col-title {
  width: 100%;
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .col-title {
    margin: 0 0 20px;
    padding: 0 20px !important;
  }
}
.cid-tN65rQWLaw .mbr-section-title {
  color: #14a6c8;
}
.cid-tN65rQWLaw .card-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .card-box {
    flex-wrap: wrap;
    padding: 20px;
  }
}
.cid-tN65rQWLaw .card-container {
  display: flex;
  width: 40%;
  align-items: center;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .card-container {
    flex-wrap: wrap;
    width: 100%;
    padding: 0 20px 20px;
  }
}
.cid-tN65rQWLaw .iconfont-wrapper {
  display: flex;
  justify-content: center;
  padding-right: 1rem;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .iconfont-wrapper {
    flex-wrap: wrap;
    width: 100%;
    padding: 0;
  }
}
.cid-tN65rQWLaw .mbr-iconfont {
  font-size: 80px;
  color: #d06398;
}
.cid-tN65rQWLaw .card-title {
  color: #14a6c8;
  margin-bottom: 0;
  font-size: 1.5rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-tN65rQWLaw .card-title {
    width: 100%;
    padding: 1rem;
    text-align: center !important;
  }
}
.cid-tN65rQWLaw .card-text-container {
  padding: 20px 0;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .card-text-container {
    width: 100%;
  }
}
.cid-tN65rQWLaw .card-description-container {
  width: 50%;
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .card-description-container {
    width: 100%;
  }
}
.cid-tN65rQWLaw .card-hours-container {
  width: 25%;
  text-align: center;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .card-hours-container {
    width: 100%;
  }
}
.cid-tN65rQWLaw .card-text {
  color: #353535;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .card-text {
    text-align: center !important;
  }
}
.cid-tN65rQWLaw .card-arrow {
  font-size: 3rem;
  text-align: center;
}
.cid-tN65rQWLaw .card-border {
  padding: 25px 15px;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tN65rQWLaw .card-border {
    padding: 20px 10px;
  }
}
.cid-tN65rQWLaw .card-border-color {
  width: 100%;
  height: 1px;
  background-color: #bbbbbb;
  opacity: 0.75;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tFJwuRiAhS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/hero-ordinace.webp");
}
.cid-tFJwuRiAhS .row {
  align-items: center;
}
.cid-tFJwuRiAhS .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tFJwuRiAhS .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tFJwuRiAhS .header-text {
    margin-bottom: 20px;
  }
}
.cid-tFJwuRiAhS .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tFJwuRiAhS .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tFJwuRiAhS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJwuRiAhS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJwfxu10B {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tFJwfxu10B .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFJwfxu10B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFJwfxu10B .mbr-section-title {
  color: #d06398;
}
.cid-tFJwfxu10B .mbr-text,
.cid-tFJwfxu10B .mbr-section-btn {
  color: #353535;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tN6Q0wlvXQ {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-tN6Q0wlvXQ .row {
  align-items: center;
}
.cid-tN6Q0wlvXQ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tN6Q0wlvXQ .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tN6Q0wlvXQ .header-text {
    margin-bottom: 20px;
  }
}
.cid-tN6Q0wlvXQ .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tN6Q0wlvXQ .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tN6Q0wlvXQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN6Q0wlvXQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN6Q0wlvXQ .mbr-text,
.cid-tN6Q0wlvXQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tN6QptXZTq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tN6QptXZTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN6QptXZTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN6QptXZTq .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-tN6QptXZTq .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-ucgxEThhgd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucgxEThhgd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgxEThhgd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-ucgxEThhgd .container {
    max-width: 1400px;
  }
}
.cid-ucgxEThhgd .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-ucgxEThhgd .row {
  justify-content: center;
}
.cid-ucgxEThhgd .card-title,
.cid-ucgxEThhgd .iconfont-wrapper {
  color: #14a6c8;
}
.cid-tNb4tOm0LJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-tNb4tOm0LJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNb4tOm0LJ .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tNaZisCWe4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-tNaZisCWe4 .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-tNaZisCWe4 .why-list {
    flex-direction: column;
  }
}
.cid-tNaZisCWe4 .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tNaZisCWe4 .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tNaZisCWe4 .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-tNaZisCWe4 .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-tNaZisCWe4 .mbr-text {
  color: #353535;
}
.cid-tNaZisCWe4 .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-tNb4uZhL4M {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-tNb4uZhL4M .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNb4uZhL4M .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tNbkSxdDLk {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tNbkSxdDLk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNbkSxdDLk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tNbkSxdDLk .mbr-section-head {
  margin-bottom: 32px;
}
.cid-tNbkSxdDLk .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-tNbkSxdDLk .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-tNbkSxdDLk .items-row {
  row-gap: 32px;
}
.cid-tNbkSxdDLk .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-tNbkSxdDLk .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-tNbkSxdDLk .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-tNbkSxdDLk .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-tNbkSxdDLk .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-tNbkSxdDLk .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-tNbkSxdDLk .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-tNbkSxdDLk .carousel-control,
.cid-tNbkSxdDLk .close {
  background: #1b1b1b;
}
.cid-tNbkSxdDLk .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tNbkSxdDLk .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tNbkSxdDLk .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tNbkSxdDLk .carousel-control-next span {
  margin-left: 5px;
}
.cid-tNbkSxdDLk .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tNbkSxdDLk .close::before {
  content: '\e91a';
}
.cid-tNbkSxdDLk .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tNbkSxdDLk .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tNbkSxdDLk .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNbkSxdDLk .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tNbkSxdDLk .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tNbkSxdDLk .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tNbkSxdDLk .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tNbkSxdDLk .carousel-indicators li.active,
.cid-tNbkSxdDLk .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tNbkSxdDLk .carousel-indicators li::after,
.cid-tNbkSxdDLk .carousel-indicators li::before {
  content: none;
}
.cid-tNbkSxdDLk .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tNbkSxdDLk .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tNbkSxdDLk .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tNbkSxdDLk .carousel-indicators {
    display: none;
  }
}
.cid-tNbkSxdDLk .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tNbkSxdDLk .carousel-inner > .active {
  display: block;
}
.cid-tNbkSxdDLk .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tNbkSxdDLk .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tNbkSxdDLk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tNbkSxdDLk .carousel-control,
  .cid-tNbkSxdDLk .carousel-indicators,
  .cid-tNbkSxdDLk .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tNbkSxdDLk .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tNbkSxdDLk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tNbkSxdDLk .carousel-indicators .active,
.cid-tNbkSxdDLk .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tNbkSxdDLk .carousel-indicators .active {
  background: #fff;
}
.cid-tNbkSxdDLk .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tNbkSxdDLk .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tNbkSxdDLk .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tNbkSxdDLk .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tNbkSxdDLk .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tNbkSxdDLk .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tNbkSxdDLk .carousel {
  width: 100%;
}
.cid-tNbkSxdDLk .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tNbkSxdDLk .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tNbkSxdDLk .modal.fade .modal-dialog,
.cid-tNbkSxdDLk .modal.in .modal-dialog {
  transform: none;
}
.cid-tNbkSxdDLk .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tNbkSxdDLk H6 {
  text-align: center;
}
.cid-tNaYElixAP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tNaYElixAP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaYElixAP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNaYElixAP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tNaYElixAP .container {
    padding: 0 12px;
  }
}
.cid-tNaYElixAP .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tNaYElixAP .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tNaYElixAP .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tNaYElixAP .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tNaYElixAP .mbr-section-title {
  color: #222222;
}
.cid-tNaYT74uas {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tNaYT74uas .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaYT74uas .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tNaYT74uas .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-tNaYT74uas .container {
    padding: 0 12px;
  }
}
.cid-tNaYT74uas .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-tNaYT74uas .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-tNaYT74uas .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-tNaYT74uas .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-tNaYT74uas .mbr-section-title {
  color: #222222;
}
.cid-tNaZIvjYMv {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-tNaZIvjYMv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tNaZIvjYMv .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tN6SgeEvTm {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-tN6SgeEvTm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tN6SgeEvTm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tN6SgeEvTm h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-tN6SgeEvTm .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-tN6SgeEvTm .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tN6SgeEvTm .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-tN6SgeEvTm .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-tN6SgeEvTm .mbr-text,
.cid-tN6SgeEvTm .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-tN6SgeEvTm .mbr-section-subtitle,
.cid-tN6SgeEvTm .align-wrapper {
  color: #04492e;
}
.cid-tN6SgeEvTm .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-tN6SgeEvTm .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tUyI210XWM {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-tUyI210XWM .row {
  align-items: center;
}
.cid-tUyI210XWM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tUyI210XWM .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tUyI210XWM .header-text {
    margin-bottom: 20px;
  }
}
.cid-tUyI210XWM .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tUyI210XWM .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tUyI210XWM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyI210XWM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUyI210XWM .mbr-text,
.cid-tUyI210XWM .mbr-section-btn {
  color: #ffffff;
}
.cid-tUyKwZsP2B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tUyKwZsP2B .mbr-text {
  color: #353535;
}
.cid-tUyLP46I6e {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-tUyLP46I6e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyLP46I6e .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tUyKVxWIQa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffeaf4;
}
.cid-tUyKVxWIQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyKVxWIQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUyKVxWIQa .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUyKVxWIQa .row {
  flex-direction: row-reverse;
}
.cid-tUyKVxWIQa img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tUyKVxWIQa .text-wrapper {
    padding: 2rem;
  }
}
.cid-tUyKVxWIQa .mbr-description {
  color: #bbbbbb;
}
.cid-tUyLQkPZro {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-tUyLQkPZro .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyLQkPZro .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tUyLM8SpPu {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tUyNGfyKNL {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-blue2.svg");
}
.cid-tUyNGfyKNL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyNGfyKNL .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tUyNlkGluo {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #b7f1ff;
}
.cid-tUyNlkGluo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyNlkGluo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUyNlkGluo .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUyNlkGluo img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tUyNlkGluo .text-wrapper {
    padding: 2rem;
  }
}
.cid-tUyNlkGluo .mbr-description {
  color: #bbbbbb;
}
.cid-tUyNGLB6EG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-bluegray-lower.svg");
}
.cid-tUyNGLB6EG .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyNGLB6EG .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tUyO1C5eIV {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tUyO5sAvkt {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-tUyO5sAvkt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyO5sAvkt .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tUyO46exXS {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tUyO46exXS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUyO46exXS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tUyO46exXS .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tUyO46exXS img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tUyO46exXS .text-wrapper {
    padding: 2rem;
  }
}
.cid-tUyO46exXS .mbr-section-title {
  color: #353535;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tVMJAqh37o {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-tVMJAqh37o .row {
  align-items: center;
}
.cid-tVMJAqh37o .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tVMJAqh37o .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tVMJAqh37o .header-text {
    margin-bottom: 20px;
  }
}
.cid-tVMJAqh37o .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tVMJAqh37o .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tVMJAqh37o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMJAqh37o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tVMJAqh37o .mbr-text,
.cid-tVMJAqh37o .mbr-section-btn {
  color: #ffffff;
}
.cid-tVMJxMrMK5 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tVMJxMrMK5 img {
  border-radius: 0px;
}
.cid-tVMJxMrMK5 .mbr-section-title {
  color: #000000;
  padding-top: 0.4rem;
}
.cid-tVMJxMrMK5 .item {
  margin-bottom: 3rem;
}
.cid-tVMJxMrMK5 .row {
  display: flex;
  justify-content: center;
}
.cid-tVMJxMrMK5 .date {
  text-transform: uppercase;
  color: #14a6c8;
  text-align: left;
  padding-top: 1rem;
}
.cid-tVMJxMrMK5 .author {
  color: #626262;
  text-align: left;
  padding-top: 0.8rem;
}
.cid-tVMJxMrMK5 .heading {
  padding-bottom: 40px;
}
@media (max-width: 1400px) {
  .cid-tVMJxMrMK5 img {
    margin-top: 60px;
  }
}
.cid-tVMJxMrMK5 .card-heading {
  color: #14a6c8;
}
.cid-tVMLeJma82 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-blue2.svg");
}
.cid-tVMLeJma82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tVMLeJma82 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tVMKOZiRL4 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #b7f1ff;
}
.cid-tVMKOZiRL4 img {
  width: 120px;
  margin: auto;
}
.cid-tVMKOZiRL4 .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tVMKOZiRL4 .card {
    max-width: 12.5%;
  }
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tYJ4y3UU7v .navbar-dropdown {
  position: relative !important;
}
.cid-tYJ4y3UU7v .navbar-dropdown {
  position: absolute !important;
}
.cid-tYJ4y3UU7v .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYJ4y3UU7v .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tYJ4y3UU7v .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tYJ4y3UU7v .dropdown-item:hover,
.cid-tYJ4y3UU7v .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tYJ4y3UU7v .dropdown-item:hover span {
  color: white;
}
.cid-tYJ4y3UU7v .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tYJ4y3UU7v .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tYJ4y3UU7v .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tYJ4y3UU7v .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYJ4y3UU7v .nav-link {
  position: relative;
}
.cid-tYJ4y3UU7v .container {
  display: flex;
  margin: auto;
}
.cid-tYJ4y3UU7v .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tYJ4y3UU7v .dropdown-menu,
.cid-tYJ4y3UU7v .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tYJ4y3UU7v .nav-item:focus,
.cid-tYJ4y3UU7v .nav-link:focus {
  outline: none;
}
.cid-tYJ4y3UU7v .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYJ4y3UU7v .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYJ4y3UU7v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYJ4y3UU7v .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYJ4y3UU7v .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYJ4y3UU7v .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYJ4y3UU7v .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYJ4y3UU7v .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tYJ4y3UU7v .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tYJ4y3UU7v .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tYJ4y3UU7v .navbar.opened {
  transition: all 0.3s;
}
.cid-tYJ4y3UU7v .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tYJ4y3UU7v .navbar .navbar-logo img {
  width: auto;
}
.cid-tYJ4y3UU7v .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tYJ4y3UU7v .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tYJ4y3UU7v .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tYJ4y3UU7v .navbar.collapsed {
  justify-content: center;
}
.cid-tYJ4y3UU7v .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYJ4y3UU7v .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tYJ4y3UU7v .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tYJ4y3UU7v .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYJ4y3UU7v .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYJ4y3UU7v .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-tYJ4y3UU7v .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tYJ4y3UU7v .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tYJ4y3UU7v .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tYJ4y3UU7v .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYJ4y3UU7v .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYJ4y3UU7v .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYJ4y3UU7v .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYJ4y3UU7v .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-tYJ4y3UU7v .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYJ4y3UU7v .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tYJ4y3UU7v .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tYJ4y3UU7v .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYJ4y3UU7v .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYJ4y3UU7v .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tYJ4y3UU7v .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYJ4y3UU7v .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYJ4y3UU7v .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tYJ4y3UU7v .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tYJ4y3UU7v .navbar {
    padding: 0 50px !important;
  }
}
.cid-tYJ4y3UU7v .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tYJ4y3UU7v .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tYJ4y3UU7v .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tYJ4y3UU7v .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tYJ4y3UU7v .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tYJ4y3UU7v .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYJ4y3UU7v .dropdown-item.active,
.cid-tYJ4y3UU7v .dropdown-item:active {
  background-color: transparent;
}
.cid-tYJ4y3UU7v .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYJ4y3UU7v .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYJ4y3UU7v .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYJ4y3UU7v .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tYJ4y3UU7v .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tYJ4y3UU7v .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYJ4y3UU7v ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tYJ4y3UU7v ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tYJ4y3UU7v .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYJ4y3UU7v .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tYJ4y3UU7v .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tYJ4y3UU7v button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tYJ4y3UU7v button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tYJ4y3UU7v button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYJ4y3UU7v button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tYJ4y3UU7v button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tYJ4y3UU7v button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tYJ4y3UU7v nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYJ4y3UU7v nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tYJ4y3UU7v nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tYJ4y3UU7v nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYJ4y3UU7v .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tYJ4y3UU7v a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tYJ4y3UU7v .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYJ4y3UU7v .navbar {
    height: 100px;
  }
  .cid-tYJ4y3UU7v .navbar.opened {
    height: auto;
  }
  .cid-tYJ4y3UU7v .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYJ4y3UU7v .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tYJ4y3UU7v .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tYJ4y3UU7v .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-tYJ4y4wCNf {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-tYJ4y4wCNf .row {
  align-items: center;
}
.cid-tYJ4y4wCNf .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tYJ4y4wCNf .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tYJ4y4wCNf .header-text {
    margin-bottom: 20px;
  }
}
.cid-tYJ4y4wCNf .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-tYJ4y4wCNf .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-tYJ4y4wCNf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYJ4y4wCNf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYJ4y4wCNf .mbr-text,
.cid-tYJ4y4wCNf .mbr-section-btn {
  color: #ffffff;
}
.cid-tYJ4y4P7aA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tYJ4y4P7aA .mbr-text {
  color: #353535;
}
.cid-tYJ4y526JU {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-tYJ4y526JU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYJ4y526JU .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tYJpdRvR26 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ffeaf4;
}
.cid-tYJpdRvR26 .mark_text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #ffffff;
}
.cid-tYJpdRvR26 .mbr-section-title {
  margin-bottom: 18px;
  color: #353535;
}
.cid-tYJpdRvR26 .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-tYJpdRvR26 .mbr-text {
  color: #ffffff;
}
.cid-tYJpdRvR26 .card_title {
  color: #353535;
  line-height: 1.2727em;
  margin-bottom: 0;
}
.cid-tYJpdRvR26 .card_content {
  margin: 26px 0 23px;
}
.cid-tYJpdRvR26 img,
.cid-tYJpdRvR26 .item-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.cid-tYJpdRvR26 .item {
  margin-bottom: 30px;
}
.cid-tYJpdRvR26 .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-tYJpdRvR26 .card_text {
  color: #353535;
  margin-top: 4px;
  text-align: center;
}
.cid-tYJpdRvR26 .item-img {
  position: relative;
}
.cid-tYJpdRvR26 .item-img .mbr-section-btn {
  position: absolute;
  margin-left: 3px;
  top: 53%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 0.2s ease-out;
  transform: translate(-50%, -50%);
}
.cid-tYJpdRvR26 .item-img:hover .mbr-section-btn {
  top: 50%;
  opacity: 1;
}
.cid-tYJ4y5H1w0 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-tYJ4y5H1w0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYJ4y5H1w0 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tYJ4y7qUeZ {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tYJ4y7DG62 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-tYJ4y7DG62 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYJ4y7DG62 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-tYJ4y7WlCs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-tYJ4y7WlCs .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYJ4y7WlCs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tYJ4y7WlCs .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tYJ4y7WlCs img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tYJ4y7WlCs .text-wrapper {
    padding: 2rem;
  }
}
.cid-tYJ4y7WlCs .mbr-section-title {
  color: #353535;
}
.cid-tYJ4y8mlcO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tYJ4y8mlcO .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tYJ4y8mlcO .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tYJ4y8mlcO .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tYJ4y8mlcO .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tYJ4y8mlcO .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tYJ4y8mlcO .social_icons {
  text-align: center;
}
.cid-tYJ4y8mlcO .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tYJ4y8mlcO .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYJ4y8mlcO .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYJ4y8mlcO .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tYJ4y8mlcO .footer_timework {
    margin-top: 50px;
  }
  .cid-tYJ4y8mlcO .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tYJ4y8mlcO .mbr-text,
.cid-tYJ4y8mlcO .footer_logo,
.cid-tYJ4y8mlcO .social_icons {
  color: #fafafa;
}
.cid-tYJ4y8mlcO .copyright {
  margin-top: 2rem;
}
.cid-ucgsLuUJwV .navbar-dropdown {
  position: relative !important;
}
.cid-ucgsLuUJwV .navbar-dropdown {
  position: absolute !important;
}
.cid-ucgsLuUJwV .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucgsLuUJwV .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucgsLuUJwV .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucgsLuUJwV .dropdown-item:hover,
.cid-ucgsLuUJwV .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-ucgsLuUJwV .dropdown-item:hover span {
  color: white;
}
.cid-ucgsLuUJwV .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucgsLuUJwV .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucgsLuUJwV .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucgsLuUJwV .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucgsLuUJwV .nav-link {
  position: relative;
}
.cid-ucgsLuUJwV .container {
  display: flex;
  margin: auto;
}
.cid-ucgsLuUJwV .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucgsLuUJwV .dropdown-menu,
.cid-ucgsLuUJwV .navbar.opened {
  background: #14a6c8 !important;
}
.cid-ucgsLuUJwV .nav-item:focus,
.cid-ucgsLuUJwV .nav-link:focus {
  outline: none;
}
.cid-ucgsLuUJwV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucgsLuUJwV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucgsLuUJwV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucgsLuUJwV .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucgsLuUJwV .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucgsLuUJwV .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucgsLuUJwV .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucgsLuUJwV .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-ucgsLuUJwV .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucgsLuUJwV .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-ucgsLuUJwV .navbar.opened {
  transition: all 0.3s;
}
.cid-ucgsLuUJwV .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucgsLuUJwV .navbar .navbar-logo img {
  width: auto;
}
.cid-ucgsLuUJwV .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ucgsLuUJwV .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-ucgsLuUJwV .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-ucgsLuUJwV .navbar.collapsed {
  justify-content: center;
}
.cid-ucgsLuUJwV .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucgsLuUJwV .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucgsLuUJwV .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ucgsLuUJwV .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucgsLuUJwV .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucgsLuUJwV .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-ucgsLuUJwV .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-ucgsLuUJwV .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucgsLuUJwV .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucgsLuUJwV .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucgsLuUJwV .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucgsLuUJwV .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucgsLuUJwV .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucgsLuUJwV .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-ucgsLuUJwV .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucgsLuUJwV .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucgsLuUJwV .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucgsLuUJwV .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucgsLuUJwV .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucgsLuUJwV .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucgsLuUJwV .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucgsLuUJwV .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucgsLuUJwV .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ucgsLuUJwV .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-ucgsLuUJwV .navbar {
    padding: 0 50px !important;
  }
}
.cid-ucgsLuUJwV .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ucgsLuUJwV .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-ucgsLuUJwV .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-ucgsLuUJwV .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-ucgsLuUJwV .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-ucgsLuUJwV .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucgsLuUJwV .dropdown-item.active,
.cid-ucgsLuUJwV .dropdown-item:active {
  background-color: transparent;
}
.cid-ucgsLuUJwV .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucgsLuUJwV .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucgsLuUJwV .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucgsLuUJwV .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-ucgsLuUJwV .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucgsLuUJwV .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucgsLuUJwV ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ucgsLuUJwV ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-ucgsLuUJwV .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ucgsLuUJwV .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-ucgsLuUJwV .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-ucgsLuUJwV button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-ucgsLuUJwV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucgsLuUJwV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucgsLuUJwV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucgsLuUJwV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucgsLuUJwV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-ucgsLuUJwV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucgsLuUJwV nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucgsLuUJwV nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucgsLuUJwV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucgsLuUJwV .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucgsLuUJwV a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucgsLuUJwV .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucgsLuUJwV .navbar {
    height: 100px;
  }
  .cid-ucgsLuUJwV .navbar.opened {
    height: auto;
  }
  .cid-ucgsLuUJwV .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucgsLuUJwV .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-ucgsLuUJwV .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-ucgsLuUJwV .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-ucgsLwD8oL {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-ucgsLwD8oL .row {
  align-items: center;
}
.cid-ucgsLwD8oL .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucgsLwD8oL .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucgsLwD8oL .header-text {
    margin-bottom: 20px;
  }
}
.cid-ucgsLwD8oL .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-ucgsLwD8oL .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucgsLwD8oL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLwD8oL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgsLwD8oL .mbr-text,
.cid-ucgsLwD8oL .mbr-section-btn {
  color: #ffffff;
}
.cid-ucgsLxd86t {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgsLxd86t .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLxd86t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgsLxd86t .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-ucgsLxd86t .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-ucgzGt2WfS {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucgzGt2WfS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgzGt2WfS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-ucgzGt2WfS .container {
    max-width: 1400px;
  }
}
.cid-ucgzGt2WfS .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-ucgzGt2WfS .row {
  justify-content: center;
}
.cid-ucgzGt2WfS .card-title,
.cid-ucgzGt2WfS .iconfont-wrapper {
  color: #14a6c8;
}
.cid-ucgsLxHELK {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-ucgsLxHELK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLxHELK .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgsLygcmY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucgsLygcmY .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-ucgsLygcmY .why-list {
    flex-direction: column;
  }
}
.cid-ucgsLygcmY .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ucgsLygcmY .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ucgsLygcmY .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-ucgsLygcmY .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-ucgsLygcmY .mbr-text {
  color: #353535;
}
.cid-ucgsLygcmY .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-ucgsLyHfuG {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-ucgsLyHfuG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLyHfuG .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgsLzkPQo {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucgsLzkPQo .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLzkPQo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgsLzkPQo .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ucgsLzkPQo .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-ucgsLzkPQo .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-ucgsLzkPQo .items-row {
  row-gap: 32px;
}
.cid-ucgsLzkPQo .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-ucgsLzkPQo .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-ucgsLzkPQo .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-ucgsLzkPQo .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-ucgsLzkPQo .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-ucgsLzkPQo .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucgsLzkPQo .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-ucgsLzkPQo .carousel-control,
.cid-ucgsLzkPQo .close {
  background: #1b1b1b;
}
.cid-ucgsLzkPQo .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucgsLzkPQo .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucgsLzkPQo .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucgsLzkPQo .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucgsLzkPQo .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ucgsLzkPQo .close::before {
  content: '\e91a';
}
.cid-ucgsLzkPQo .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucgsLzkPQo .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ucgsLzkPQo .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgsLzkPQo .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucgsLzkPQo .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucgsLzkPQo .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucgsLzkPQo .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ucgsLzkPQo .carousel-indicators li.active,
.cid-ucgsLzkPQo .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucgsLzkPQo .carousel-indicators li::after,
.cid-ucgsLzkPQo .carousel-indicators li::before {
  content: none;
}
.cid-ucgsLzkPQo .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucgsLzkPQo .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucgsLzkPQo .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucgsLzkPQo .carousel-indicators {
    display: none;
  }
}
.cid-ucgsLzkPQo .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucgsLzkPQo .carousel-inner > .active {
  display: block;
}
.cid-ucgsLzkPQo .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgsLzkPQo .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucgsLzkPQo .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucgsLzkPQo .carousel-control,
  .cid-ucgsLzkPQo .carousel-indicators,
  .cid-ucgsLzkPQo .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucgsLzkPQo .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucgsLzkPQo .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucgsLzkPQo .carousel-indicators .active,
.cid-ucgsLzkPQo .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucgsLzkPQo .carousel-indicators .active {
  background: #fff;
}
.cid-ucgsLzkPQo .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucgsLzkPQo .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucgsLzkPQo .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucgsLzkPQo .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucgsLzkPQo .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucgsLzkPQo .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucgsLzkPQo .carousel {
  width: 100%;
}
.cid-ucgsLzkPQo .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucgsLzkPQo .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucgsLzkPQo .modal.fade .modal-dialog,
.cid-ucgsLzkPQo .modal.in .modal-dialog {
  transform: none;
}
.cid-ucgsLzkPQo .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucgsLzkPQo H6 {
  text-align: center;
}
.cid-ucgsLBFzom {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucgsLBFzom .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLBFzom .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgsLBFzom .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgsLBFzom .container {
    padding: 0 12px;
  }
}
.cid-ucgsLBFzom .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgsLBFzom .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgsLBFzom .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgsLBFzom .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgsLBFzom .mbr-section-title {
  color: #222222;
}
.cid-ucgsLCdCJB {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgsLCdCJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLCdCJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgsLCdCJB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgsLCdCJB .container {
    padding: 0 12px;
  }
}
.cid-ucgsLCdCJB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgsLCdCJB .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgsLCdCJB .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgsLCdCJB .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgsLCdCJB .mbr-section-title {
  color: #222222;
}
.cid-ucgsLCJtvb {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-ucgsLCJtvb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLCJtvb .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgsLDeES0 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-ucgsLDeES0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgsLDeES0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgsLDeES0 h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-ucgsLDeES0 .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-ucgsLDeES0 .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-ucgsLDeES0 .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-ucgsLDeES0 .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-ucgsLDeES0 .mbr-text,
.cid-ucgsLDeES0 .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-ucgsLDeES0 .mbr-section-subtitle,
.cid-ucgsLDeES0 .align-wrapper {
  color: #04492e;
}
.cid-ucgsLDeES0 .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-ucgsLDeES0 .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-ucgsLDG11k {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-ucgsLDG11k .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-ucgsLDG11k .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-ucgsLDG11k .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-ucgsLDG11k .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-ucgsLDG11k .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-ucgsLDG11k .social_icons {
  text-align: center;
}
.cid-ucgsLDG11k .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-ucgsLDG11k .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucgsLDG11k .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucgsLDG11k .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-ucgsLDG11k .footer_timework {
    margin-top: 50px;
  }
  .cid-ucgsLDG11k .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-ucgsLDG11k .mbr-text,
.cid-ucgsLDG11k .footer_logo,
.cid-ucgsLDG11k .social_icons {
  color: #fafafa;
}
.cid-ucgsLDG11k .copyright {
  margin-top: 2rem;
}
.cid-ucgt3Smbos .navbar-dropdown {
  position: relative !important;
}
.cid-ucgt3Smbos .navbar-dropdown {
  position: absolute !important;
}
.cid-ucgt3Smbos .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucgt3Smbos .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucgt3Smbos .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucgt3Smbos .dropdown-item:hover,
.cid-ucgt3Smbos .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-ucgt3Smbos .dropdown-item:hover span {
  color: white;
}
.cid-ucgt3Smbos .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucgt3Smbos .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucgt3Smbos .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucgt3Smbos .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucgt3Smbos .nav-link {
  position: relative;
}
.cid-ucgt3Smbos .container {
  display: flex;
  margin: auto;
}
.cid-ucgt3Smbos .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucgt3Smbos .dropdown-menu,
.cid-ucgt3Smbos .navbar.opened {
  background: #14a6c8 !important;
}
.cid-ucgt3Smbos .nav-item:focus,
.cid-ucgt3Smbos .nav-link:focus {
  outline: none;
}
.cid-ucgt3Smbos .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucgt3Smbos .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucgt3Smbos .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucgt3Smbos .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucgt3Smbos .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucgt3Smbos .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucgt3Smbos .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucgt3Smbos .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-ucgt3Smbos .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucgt3Smbos .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-ucgt3Smbos .navbar.opened {
  transition: all 0.3s;
}
.cid-ucgt3Smbos .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucgt3Smbos .navbar .navbar-logo img {
  width: auto;
}
.cid-ucgt3Smbos .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ucgt3Smbos .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-ucgt3Smbos .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-ucgt3Smbos .navbar.collapsed {
  justify-content: center;
}
.cid-ucgt3Smbos .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucgt3Smbos .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucgt3Smbos .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ucgt3Smbos .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucgt3Smbos .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucgt3Smbos .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-ucgt3Smbos .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-ucgt3Smbos .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucgt3Smbos .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucgt3Smbos .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucgt3Smbos .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucgt3Smbos .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucgt3Smbos .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucgt3Smbos .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-ucgt3Smbos .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucgt3Smbos .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucgt3Smbos .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucgt3Smbos .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucgt3Smbos .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucgt3Smbos .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucgt3Smbos .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucgt3Smbos .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucgt3Smbos .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ucgt3Smbos .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-ucgt3Smbos .navbar {
    padding: 0 50px !important;
  }
}
.cid-ucgt3Smbos .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ucgt3Smbos .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-ucgt3Smbos .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-ucgt3Smbos .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-ucgt3Smbos .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-ucgt3Smbos .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucgt3Smbos .dropdown-item.active,
.cid-ucgt3Smbos .dropdown-item:active {
  background-color: transparent;
}
.cid-ucgt3Smbos .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucgt3Smbos .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucgt3Smbos .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucgt3Smbos .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-ucgt3Smbos .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucgt3Smbos .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucgt3Smbos ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ucgt3Smbos ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-ucgt3Smbos .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ucgt3Smbos .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-ucgt3Smbos .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-ucgt3Smbos button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-ucgt3Smbos button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucgt3Smbos button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucgt3Smbos button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucgt3Smbos button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucgt3Smbos button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-ucgt3Smbos nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucgt3Smbos nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucgt3Smbos nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucgt3Smbos nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucgt3Smbos .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucgt3Smbos a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucgt3Smbos .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucgt3Smbos .navbar {
    height: 100px;
  }
  .cid-ucgt3Smbos .navbar.opened {
    height: auto;
  }
  .cid-ucgt3Smbos .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucgt3Smbos .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-ucgt3Smbos .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-ucgt3Smbos .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-ucgt3Txfvk {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-ucgt3Txfvk .row {
  align-items: center;
}
.cid-ucgt3Txfvk .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucgt3Txfvk .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucgt3Txfvk .header-text {
    margin-bottom: 20px;
  }
}
.cid-ucgt3Txfvk .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-ucgt3Txfvk .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucgt3Txfvk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3Txfvk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgt3Txfvk .mbr-text,
.cid-ucgt3Txfvk .mbr-section-btn {
  color: #ffffff;
}
.cid-ucgt3U2wkb {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgt3U2wkb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3U2wkb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgt3U2wkb .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-ucgt3U2wkb .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-ucgFEacdI4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucgFEacdI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgFEacdI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-ucgFEacdI4 .container {
    max-width: 1400px;
  }
}
.cid-ucgFEacdI4 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-ucgFEacdI4 .row {
  justify-content: center;
}
.cid-ucgFEacdI4 .card-title,
.cid-ucgFEacdI4 .iconfont-wrapper {
  color: #14a6c8;
}
.cid-ucgt3UrMSP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-ucgt3UrMSP .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3UrMSP .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgt3UPikx {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucgt3UPikx .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-ucgt3UPikx .why-list {
    flex-direction: column;
  }
}
.cid-ucgt3UPikx .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ucgt3UPikx .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ucgt3UPikx .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-ucgt3UPikx .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-ucgt3UPikx .mbr-text {
  color: #353535;
}
.cid-ucgt3UPikx .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-ucgt3VdYmV {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-ucgt3VdYmV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3VdYmV .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgt3VDvLr {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucgt3VDvLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3VDvLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgt3VDvLr .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ucgt3VDvLr .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-ucgt3VDvLr .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-ucgt3VDvLr .items-row {
  row-gap: 32px;
}
.cid-ucgt3VDvLr .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-ucgt3VDvLr .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-ucgt3VDvLr .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-ucgt3VDvLr .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-ucgt3VDvLr .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-ucgt3VDvLr .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucgt3VDvLr .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-ucgt3VDvLr .carousel-control,
.cid-ucgt3VDvLr .close {
  background: #1b1b1b;
}
.cid-ucgt3VDvLr .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucgt3VDvLr .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucgt3VDvLr .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucgt3VDvLr .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucgt3VDvLr .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ucgt3VDvLr .close::before {
  content: '\e91a';
}
.cid-ucgt3VDvLr .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucgt3VDvLr .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ucgt3VDvLr .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgt3VDvLr .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucgt3VDvLr .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucgt3VDvLr .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucgt3VDvLr .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ucgt3VDvLr .carousel-indicators li.active,
.cid-ucgt3VDvLr .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucgt3VDvLr .carousel-indicators li::after,
.cid-ucgt3VDvLr .carousel-indicators li::before {
  content: none;
}
.cid-ucgt3VDvLr .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucgt3VDvLr .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucgt3VDvLr .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucgt3VDvLr .carousel-indicators {
    display: none;
  }
}
.cid-ucgt3VDvLr .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucgt3VDvLr .carousel-inner > .active {
  display: block;
}
.cid-ucgt3VDvLr .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgt3VDvLr .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucgt3VDvLr .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucgt3VDvLr .carousel-control,
  .cid-ucgt3VDvLr .carousel-indicators,
  .cid-ucgt3VDvLr .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucgt3VDvLr .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucgt3VDvLr .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucgt3VDvLr .carousel-indicators .active,
.cid-ucgt3VDvLr .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucgt3VDvLr .carousel-indicators .active {
  background: #fff;
}
.cid-ucgt3VDvLr .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucgt3VDvLr .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucgt3VDvLr .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucgt3VDvLr .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucgt3VDvLr .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucgt3VDvLr .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucgt3VDvLr .carousel {
  width: 100%;
}
.cid-ucgt3VDvLr .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucgt3VDvLr .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucgt3VDvLr .modal.fade .modal-dialog,
.cid-ucgt3VDvLr .modal.in .modal-dialog {
  transform: none;
}
.cid-ucgt3VDvLr .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucgt3VDvLr H6 {
  text-align: center;
}
.cid-ucgt3WuQjz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucgt3WuQjz .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3WuQjz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgt3WuQjz .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgt3WuQjz .container {
    padding: 0 12px;
  }
}
.cid-ucgt3WuQjz .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgt3WuQjz .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgt3WuQjz .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgt3WuQjz .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgt3WuQjz .mbr-section-title {
  color: #222222;
}
.cid-ucgt3WXIWD {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgt3WXIWD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3WXIWD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgt3WXIWD .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgt3WXIWD .container {
    padding: 0 12px;
  }
}
.cid-ucgt3WXIWD .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgt3WXIWD .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgt3WXIWD .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgt3WXIWD .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgt3WXIWD .mbr-section-title {
  color: #222222;
}
.cid-ucgt3Xn74K {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-ucgt3Xn74K .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3Xn74K .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgt3XXkkp {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-ucgt3XXkkp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgt3XXkkp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgt3XXkkp h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-ucgt3XXkkp .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-ucgt3XXkkp .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-ucgt3XXkkp .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-ucgt3XXkkp .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-ucgt3XXkkp .mbr-text,
.cid-ucgt3XXkkp .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-ucgt3XXkkp .mbr-section-subtitle,
.cid-ucgt3XXkkp .align-wrapper {
  color: #04492e;
}
.cid-ucgt3XXkkp .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-ucgt3XXkkp .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-ucgt3Ypc9z {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-ucgt3Ypc9z .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-ucgt3Ypc9z .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-ucgt3Ypc9z .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-ucgt3Ypc9z .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-ucgt3Ypc9z .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-ucgt3Ypc9z .social_icons {
  text-align: center;
}
.cid-ucgt3Ypc9z .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-ucgt3Ypc9z .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucgt3Ypc9z .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucgt3Ypc9z .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-ucgt3Ypc9z .footer_timework {
    margin-top: 50px;
  }
  .cid-ucgt3Ypc9z .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-ucgt3Ypc9z .mbr-text,
.cid-ucgt3Ypc9z .footer_logo,
.cid-ucgt3Ypc9z .social_icons {
  color: #fafafa;
}
.cid-ucgt3Ypc9z .copyright {
  margin-top: 2rem;
}
.cid-ucgug6vx2S .navbar-dropdown {
  position: relative !important;
}
.cid-ucgug6vx2S .navbar-dropdown {
  position: absolute !important;
}
.cid-ucgug6vx2S .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucgug6vx2S .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucgug6vx2S .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucgug6vx2S .dropdown-item:hover,
.cid-ucgug6vx2S .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-ucgug6vx2S .dropdown-item:hover span {
  color: white;
}
.cid-ucgug6vx2S .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucgug6vx2S .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucgug6vx2S .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucgug6vx2S .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucgug6vx2S .nav-link {
  position: relative;
}
.cid-ucgug6vx2S .container {
  display: flex;
  margin: auto;
}
.cid-ucgug6vx2S .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucgug6vx2S .dropdown-menu,
.cid-ucgug6vx2S .navbar.opened {
  background: #14a6c8 !important;
}
.cid-ucgug6vx2S .nav-item:focus,
.cid-ucgug6vx2S .nav-link:focus {
  outline: none;
}
.cid-ucgug6vx2S .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucgug6vx2S .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucgug6vx2S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucgug6vx2S .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucgug6vx2S .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucgug6vx2S .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucgug6vx2S .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucgug6vx2S .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-ucgug6vx2S .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucgug6vx2S .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-ucgug6vx2S .navbar.opened {
  transition: all 0.3s;
}
.cid-ucgug6vx2S .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucgug6vx2S .navbar .navbar-logo img {
  width: auto;
}
.cid-ucgug6vx2S .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ucgug6vx2S .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-ucgug6vx2S .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-ucgug6vx2S .navbar.collapsed {
  justify-content: center;
}
.cid-ucgug6vx2S .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucgug6vx2S .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucgug6vx2S .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ucgug6vx2S .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucgug6vx2S .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucgug6vx2S .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-ucgug6vx2S .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-ucgug6vx2S .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucgug6vx2S .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucgug6vx2S .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucgug6vx2S .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucgug6vx2S .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucgug6vx2S .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucgug6vx2S .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-ucgug6vx2S .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucgug6vx2S .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucgug6vx2S .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucgug6vx2S .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucgug6vx2S .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucgug6vx2S .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucgug6vx2S .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucgug6vx2S .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucgug6vx2S .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ucgug6vx2S .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-ucgug6vx2S .navbar {
    padding: 0 50px !important;
  }
}
.cid-ucgug6vx2S .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ucgug6vx2S .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-ucgug6vx2S .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-ucgug6vx2S .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-ucgug6vx2S .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-ucgug6vx2S .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucgug6vx2S .dropdown-item.active,
.cid-ucgug6vx2S .dropdown-item:active {
  background-color: transparent;
}
.cid-ucgug6vx2S .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucgug6vx2S .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucgug6vx2S .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucgug6vx2S .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-ucgug6vx2S .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucgug6vx2S .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucgug6vx2S ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ucgug6vx2S ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-ucgug6vx2S .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ucgug6vx2S .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-ucgug6vx2S .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-ucgug6vx2S button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-ucgug6vx2S button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucgug6vx2S button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucgug6vx2S button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucgug6vx2S button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucgug6vx2S button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-ucgug6vx2S nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucgug6vx2S nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucgug6vx2S nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucgug6vx2S nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucgug6vx2S .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucgug6vx2S a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucgug6vx2S .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucgug6vx2S .navbar {
    height: 100px;
  }
  .cid-ucgug6vx2S .navbar.opened {
    height: auto;
  }
  .cid-ucgug6vx2S .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucgug6vx2S .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-ucgug6vx2S .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-ucgug6vx2S .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-ucgug80eKq {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-ucgug80eKq .row {
  align-items: center;
}
.cid-ucgug80eKq .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucgug80eKq .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucgug80eKq .header-text {
    margin-bottom: 20px;
  }
}
.cid-ucgug80eKq .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-ucgug80eKq .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucgug80eKq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgug80eKq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgug80eKq .mbr-text,
.cid-ucgug80eKq .mbr-section-btn {
  color: #ffffff;
}
.cid-ucgug8seHm {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgug8seHm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgug8seHm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgug8seHm .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-ucgug8seHm .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-ucgKpK5I1m {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucgKpK5I1m .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgKpK5I1m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-ucgKpK5I1m .container {
    max-width: 1400px;
  }
}
.cid-ucgKpK5I1m .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-ucgKpK5I1m .row {
  justify-content: center;
}
.cid-ucgKpK5I1m .card-title,
.cid-ucgKpK5I1m .iconfont-wrapper {
  color: #14a6c8;
}
.cid-ucgug9FZiC {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-ucgug9FZiC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgug9FZiC .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgugapFzG {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucgugapFzG .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-ucgugapFzG .why-list {
    flex-direction: column;
  }
}
.cid-ucgugapFzG .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ucgugapFzG .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ucgugapFzG .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-ucgugapFzG .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-ucgugapFzG .mbr-text {
  color: #353535;
}
.cid-ucgugapFzG .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-ucgugaL6Gn {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-ucgugaL6Gn .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgugaL6Gn .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgugbc2YB {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucgugbc2YB .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgugbc2YB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgugbc2YB .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ucgugbc2YB .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-ucgugbc2YB .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-ucgugbc2YB .items-row {
  row-gap: 32px;
}
.cid-ucgugbc2YB .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-ucgugbc2YB .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-ucgugbc2YB .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-ucgugbc2YB .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-ucgugbc2YB .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-ucgugbc2YB .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucgugbc2YB .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-ucgugbc2YB .carousel-control,
.cid-ucgugbc2YB .close {
  background: #1b1b1b;
}
.cid-ucgugbc2YB .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucgugbc2YB .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucgugbc2YB .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucgugbc2YB .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucgugbc2YB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ucgugbc2YB .close::before {
  content: '\e91a';
}
.cid-ucgugbc2YB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucgugbc2YB .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ucgugbc2YB .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgugbc2YB .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucgugbc2YB .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucgugbc2YB .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucgugbc2YB .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ucgugbc2YB .carousel-indicators li.active,
.cid-ucgugbc2YB .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucgugbc2YB .carousel-indicators li::after,
.cid-ucgugbc2YB .carousel-indicators li::before {
  content: none;
}
.cid-ucgugbc2YB .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucgugbc2YB .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucgugbc2YB .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucgugbc2YB .carousel-indicators {
    display: none;
  }
}
.cid-ucgugbc2YB .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucgugbc2YB .carousel-inner > .active {
  display: block;
}
.cid-ucgugbc2YB .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgugbc2YB .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucgugbc2YB .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucgugbc2YB .carousel-control,
  .cid-ucgugbc2YB .carousel-indicators,
  .cid-ucgugbc2YB .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucgugbc2YB .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucgugbc2YB .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucgugbc2YB .carousel-indicators .active,
.cid-ucgugbc2YB .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucgugbc2YB .carousel-indicators .active {
  background: #fff;
}
.cid-ucgugbc2YB .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucgugbc2YB .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucgugbc2YB .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucgugbc2YB .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucgugbc2YB .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucgugbc2YB .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucgugbc2YB .carousel {
  width: 100%;
}
.cid-ucgugbc2YB .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucgugbc2YB .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucgugbc2YB .modal.fade .modal-dialog,
.cid-ucgugbc2YB .modal.in .modal-dialog {
  transform: none;
}
.cid-ucgugbc2YB .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucgugbc2YB H6 {
  text-align: center;
}
.cid-ucgugc4reI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucgugc4reI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgugc4reI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgugc4reI .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgugc4reI .container {
    padding: 0 12px;
  }
}
.cid-ucgugc4reI .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgugc4reI .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgugc4reI .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgugc4reI .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgugc4reI .mbr-section-title {
  color: #222222;
}
.cid-ucgugcAJnv {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgugcAJnv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgugcAJnv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgugcAJnv .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgugcAJnv .container {
    padding: 0 12px;
  }
}
.cid-ucgugcAJnv .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgugcAJnv .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgugcAJnv .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgugcAJnv .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgugcAJnv .mbr-section-title {
  color: #222222;
}
.cid-ucgugd5rgS {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-ucgugd5rgS .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgugd5rgS .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgugdzMTb {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-ucgugdzMTb .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgugdzMTb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgugdzMTb h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-ucgugdzMTb .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-ucgugdzMTb .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-ucgugdzMTb .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-ucgugdzMTb .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-ucgugdzMTb .mbr-text,
.cid-ucgugdzMTb .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-ucgugdzMTb .mbr-section-subtitle,
.cid-ucgugdzMTb .align-wrapper {
  color: #04492e;
}
.cid-ucgugdzMTb .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-ucgugdzMTb .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-ucguge0Noh {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-ucguge0Noh .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-ucguge0Noh .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-ucguge0Noh .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-ucguge0Noh .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-ucguge0Noh .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-ucguge0Noh .social_icons {
  text-align: center;
}
.cid-ucguge0Noh .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-ucguge0Noh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucguge0Noh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucguge0Noh .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-ucguge0Noh .footer_timework {
    margin-top: 50px;
  }
  .cid-ucguge0Noh .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-ucguge0Noh .mbr-text,
.cid-ucguge0Noh .footer_logo,
.cid-ucguge0Noh .social_icons {
  color: #fafafa;
}
.cid-ucguge0Noh .copyright {
  margin-top: 2rem;
}
.cid-ucguniePSp .navbar-dropdown {
  position: relative !important;
}
.cid-ucguniePSp .navbar-dropdown {
  position: absolute !important;
}
.cid-ucguniePSp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucguniePSp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucguniePSp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucguniePSp .dropdown-item:hover,
.cid-ucguniePSp .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-ucguniePSp .dropdown-item:hover span {
  color: white;
}
.cid-ucguniePSp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucguniePSp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucguniePSp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucguniePSp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucguniePSp .nav-link {
  position: relative;
}
.cid-ucguniePSp .container {
  display: flex;
  margin: auto;
}
.cid-ucguniePSp .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucguniePSp .dropdown-menu,
.cid-ucguniePSp .navbar.opened {
  background: #14a6c8 !important;
}
.cid-ucguniePSp .nav-item:focus,
.cid-ucguniePSp .nav-link:focus {
  outline: none;
}
.cid-ucguniePSp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucguniePSp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucguniePSp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucguniePSp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucguniePSp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucguniePSp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucguniePSp .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucguniePSp .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-ucguniePSp .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucguniePSp .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-ucguniePSp .navbar.opened {
  transition: all 0.3s;
}
.cid-ucguniePSp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucguniePSp .navbar .navbar-logo img {
  width: auto;
}
.cid-ucguniePSp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ucguniePSp .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-ucguniePSp .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-ucguniePSp .navbar.collapsed {
  justify-content: center;
}
.cid-ucguniePSp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucguniePSp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucguniePSp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ucguniePSp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucguniePSp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucguniePSp .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-ucguniePSp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-ucguniePSp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucguniePSp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucguniePSp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucguniePSp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucguniePSp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucguniePSp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucguniePSp .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-ucguniePSp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucguniePSp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucguniePSp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucguniePSp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucguniePSp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucguniePSp .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucguniePSp .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucguniePSp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucguniePSp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ucguniePSp .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-ucguniePSp .navbar {
    padding: 0 50px !important;
  }
}
.cid-ucguniePSp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ucguniePSp .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-ucguniePSp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-ucguniePSp .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-ucguniePSp .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-ucguniePSp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucguniePSp .dropdown-item.active,
.cid-ucguniePSp .dropdown-item:active {
  background-color: transparent;
}
.cid-ucguniePSp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucguniePSp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucguniePSp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucguniePSp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-ucguniePSp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucguniePSp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucguniePSp ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ucguniePSp ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-ucguniePSp .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ucguniePSp .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-ucguniePSp .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-ucguniePSp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-ucguniePSp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucguniePSp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucguniePSp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucguniePSp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucguniePSp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-ucguniePSp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucguniePSp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucguniePSp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucguniePSp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucguniePSp .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucguniePSp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucguniePSp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucguniePSp .navbar {
    height: 100px;
  }
  .cid-ucguniePSp .navbar.opened {
    height: auto;
  }
  .cid-ucguniePSp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucguniePSp .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-ucguniePSp .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-ucguniePSp .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-ucgunjmGwQ {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-ucgunjmGwQ .row {
  align-items: center;
}
.cid-ucgunjmGwQ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucgunjmGwQ .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucgunjmGwQ .header-text {
    margin-bottom: 20px;
  }
}
.cid-ucgunjmGwQ .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-ucgunjmGwQ .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucgunjmGwQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunjmGwQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgunjmGwQ .mbr-text,
.cid-ucgunjmGwQ .mbr-section-btn {
  color: #ffffff;
}
.cid-ucgunjONN6 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgunjONN6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunjONN6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgunjONN6 .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-ucgunjONN6 .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-ucgLjKzESI {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ucgLjKzESI .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgLjKzESI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-ucgLjKzESI .container {
    max-width: 1400px;
  }
}
.cid-ucgLjKzESI .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-ucgLjKzESI .row {
  justify-content: center;
}
.cid-ucgLjKzESI .card-title,
.cid-ucgLjKzESI .iconfont-wrapper {
  color: #14a6c8;
}
.cid-ucgunke19G {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-ucgunke19G .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunke19G .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgunkClf4 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucgunkClf4 .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-ucgunkClf4 .why-list {
    flex-direction: column;
  }
}
.cid-ucgunkClf4 .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ucgunkClf4 .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ucgunkClf4 .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-ucgunkClf4 .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-ucgunkClf4 .mbr-text {
  color: #353535;
}
.cid-ucgunkClf4 .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-ucgunkYiBk {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-ucgunkYiBk .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunkYiBk .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgunlnmOp {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucgunlnmOp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunlnmOp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgunlnmOp .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ucgunlnmOp .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-ucgunlnmOp .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-ucgunlnmOp .items-row {
  row-gap: 32px;
}
.cid-ucgunlnmOp .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-ucgunlnmOp .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-ucgunlnmOp .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-ucgunlnmOp .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-ucgunlnmOp .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-ucgunlnmOp .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucgunlnmOp .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-ucgunlnmOp .carousel-control,
.cid-ucgunlnmOp .close {
  background: #1b1b1b;
}
.cid-ucgunlnmOp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucgunlnmOp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucgunlnmOp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucgunlnmOp .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucgunlnmOp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ucgunlnmOp .close::before {
  content: '\e91a';
}
.cid-ucgunlnmOp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucgunlnmOp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ucgunlnmOp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgunlnmOp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucgunlnmOp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucgunlnmOp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucgunlnmOp .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ucgunlnmOp .carousel-indicators li.active,
.cid-ucgunlnmOp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucgunlnmOp .carousel-indicators li::after,
.cid-ucgunlnmOp .carousel-indicators li::before {
  content: none;
}
.cid-ucgunlnmOp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucgunlnmOp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucgunlnmOp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucgunlnmOp .carousel-indicators {
    display: none;
  }
}
.cid-ucgunlnmOp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucgunlnmOp .carousel-inner > .active {
  display: block;
}
.cid-ucgunlnmOp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucgunlnmOp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucgunlnmOp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucgunlnmOp .carousel-control,
  .cid-ucgunlnmOp .carousel-indicators,
  .cid-ucgunlnmOp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucgunlnmOp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucgunlnmOp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucgunlnmOp .carousel-indicators .active,
.cid-ucgunlnmOp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucgunlnmOp .carousel-indicators .active {
  background: #fff;
}
.cid-ucgunlnmOp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucgunlnmOp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucgunlnmOp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucgunlnmOp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucgunlnmOp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucgunlnmOp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucgunlnmOp .carousel {
  width: 100%;
}
.cid-ucgunlnmOp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucgunlnmOp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucgunlnmOp .modal.fade .modal-dialog,
.cid-ucgunlnmOp .modal.in .modal-dialog {
  transform: none;
}
.cid-ucgunlnmOp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucgunlnmOp H6 {
  text-align: center;
}
.cid-ucgunmidRT {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucgunmidRT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunmidRT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgunmidRT .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgunmidRT .container {
    padding: 0 12px;
  }
}
.cid-ucgunmidRT .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgunmidRT .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgunmidRT .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgunmidRT .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgunmidRT .mbr-section-title {
  color: #222222;
}
.cid-ucgunmOdnA {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucgunmOdnA .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunmOdnA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucgunmOdnA .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucgunmOdnA .container {
    padding: 0 12px;
  }
}
.cid-ucgunmOdnA .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucgunmOdnA .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucgunmOdnA .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucgunmOdnA .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucgunmOdnA .mbr-section-title {
  color: #222222;
}
.cid-ucgunnhvY4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-ucgunnhvY4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunnhvY4 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucgunnPyTs {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-ucgunnPyTs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucgunnPyTs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucgunnPyTs h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-ucgunnPyTs .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-ucgunnPyTs .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-ucgunnPyTs .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-ucgunnPyTs .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-ucgunnPyTs .mbr-text,
.cid-ucgunnPyTs .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-ucgunnPyTs .mbr-section-subtitle,
.cid-ucgunnPyTs .align-wrapper {
  color: #04492e;
}
.cid-ucgunnPyTs .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-ucgunnPyTs .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-ucgunooM8T {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-ucgunooM8T .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-ucgunooM8T .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-ucgunooM8T .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-ucgunooM8T .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-ucgunooM8T .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-ucgunooM8T .social_icons {
  text-align: center;
}
.cid-ucgunooM8T .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-ucgunooM8T .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucgunooM8T .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucgunooM8T .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-ucgunooM8T .footer_timework {
    margin-top: 50px;
  }
  .cid-ucgunooM8T .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-ucgunooM8T .mbr-text,
.cid-ucgunooM8T .footer_logo,
.cid-ucgunooM8T .social_icons {
  color: #fafafa;
}
.cid-ucgunooM8T .copyright {
  margin-top: 2rem;
}
.cid-ucguyC2MjH .navbar-dropdown {
  position: relative !important;
}
.cid-ucguyC2MjH .navbar-dropdown {
  position: absolute !important;
}
.cid-ucguyC2MjH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucguyC2MjH .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ucguyC2MjH .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ucguyC2MjH .dropdown-item:hover,
.cid-ucguyC2MjH .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-ucguyC2MjH .dropdown-item:hover span {
  color: white;
}
.cid-ucguyC2MjH .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ucguyC2MjH .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ucguyC2MjH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ucguyC2MjH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ucguyC2MjH .nav-link {
  position: relative;
}
.cid-ucguyC2MjH .container {
  display: flex;
  margin: auto;
}
.cid-ucguyC2MjH .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ucguyC2MjH .dropdown-menu,
.cid-ucguyC2MjH .navbar.opened {
  background: #14a6c8 !important;
}
.cid-ucguyC2MjH .nav-item:focus,
.cid-ucguyC2MjH .nav-link:focus {
  outline: none;
}
.cid-ucguyC2MjH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ucguyC2MjH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ucguyC2MjH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ucguyC2MjH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ucguyC2MjH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ucguyC2MjH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ucguyC2MjH .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-ucguyC2MjH .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-ucguyC2MjH .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-ucguyC2MjH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-ucguyC2MjH .navbar.opened {
  transition: all 0.3s;
}
.cid-ucguyC2MjH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ucguyC2MjH .navbar .navbar-logo img {
  width: auto;
}
.cid-ucguyC2MjH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-ucguyC2MjH .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-ucguyC2MjH .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-ucguyC2MjH .navbar.collapsed {
  justify-content: center;
}
.cid-ucguyC2MjH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ucguyC2MjH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ucguyC2MjH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-ucguyC2MjH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ucguyC2MjH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ucguyC2MjH .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-ucguyC2MjH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-ucguyC2MjH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ucguyC2MjH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ucguyC2MjH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ucguyC2MjH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ucguyC2MjH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ucguyC2MjH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ucguyC2MjH .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-ucguyC2MjH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ucguyC2MjH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ucguyC2MjH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ucguyC2MjH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ucguyC2MjH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ucguyC2MjH .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ucguyC2MjH .navbar.navbar-short {
  min-height: 60px;
}
.cid-ucguyC2MjH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ucguyC2MjH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-ucguyC2MjH .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-ucguyC2MjH .navbar {
    padding: 0 50px !important;
  }
}
.cid-ucguyC2MjH .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-ucguyC2MjH .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-ucguyC2MjH .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-ucguyC2MjH .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-ucguyC2MjH .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-ucguyC2MjH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ucguyC2MjH .dropdown-item.active,
.cid-ucguyC2MjH .dropdown-item:active {
  background-color: transparent;
}
.cid-ucguyC2MjH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ucguyC2MjH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ucguyC2MjH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ucguyC2MjH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-ucguyC2MjH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ucguyC2MjH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ucguyC2MjH ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-ucguyC2MjH ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-ucguyC2MjH .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ucguyC2MjH .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-ucguyC2MjH .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-ucguyC2MjH button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-ucguyC2MjH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ucguyC2MjH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ucguyC2MjH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucguyC2MjH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-ucguyC2MjH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-ucguyC2MjH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucguyC2MjH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucguyC2MjH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-ucguyC2MjH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ucguyC2MjH .navbar-dropdown {
  padding: 0 1rem;
}
.cid-ucguyC2MjH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ucguyC2MjH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ucguyC2MjH .navbar {
    height: 100px;
  }
  .cid-ucguyC2MjH .navbar.opened {
    height: auto;
  }
  .cid-ucguyC2MjH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ucguyC2MjH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-ucguyC2MjH .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-ucguyC2MjH .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-ucguyD90A8 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-ucguyD90A8 .row {
  align-items: center;
}
.cid-ucguyD90A8 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-ucguyD90A8 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-ucguyD90A8 .header-text {
    margin-bottom: 20px;
  }
}
.cid-ucguyD90A8 .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-ucguyD90A8 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-ucguyD90A8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyD90A8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucguyD90A8 .mbr-text,
.cid-ucguyD90A8 .mbr-section-btn {
  color: #ffffff;
}
.cid-ucguyDAKLL {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucguyDAKLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyDAKLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucguyDAKLL .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-ucguyDAKLL .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-ucguyDYbee {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-ucguyDYbee .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyDYbee .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucguyEmcPJ {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-ucguyEmcPJ .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-ucguyEmcPJ .why-list {
    flex-direction: column;
  }
}
.cid-ucguyEmcPJ .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-ucguyEmcPJ .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-ucguyEmcPJ .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-ucguyEmcPJ .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-ucguyEmcPJ .mbr-text {
  color: #353535;
}
.cid-ucguyEmcPJ .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-ucguyEIuOX {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-ucguyEIuOX .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyEIuOX .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucguyF8nMs {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-ucguyF8nMs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyF8nMs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucguyF8nMs .mbr-section-head {
  margin-bottom: 32px;
}
.cid-ucguyF8nMs .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-ucguyF8nMs .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-ucguyF8nMs .items-row {
  row-gap: 32px;
}
.cid-ucguyF8nMs .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-ucguyF8nMs .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-ucguyF8nMs .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-ucguyF8nMs .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-ucguyF8nMs .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-ucguyF8nMs .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-ucguyF8nMs .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-ucguyF8nMs .carousel-control,
.cid-ucguyF8nMs .close {
  background: #1b1b1b;
}
.cid-ucguyF8nMs .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-ucguyF8nMs .carousel-control-prev span {
  margin-right: 5px;
}
.cid-ucguyF8nMs .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-ucguyF8nMs .carousel-control-next span {
  margin-left: 5px;
}
.cid-ucguyF8nMs .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ucguyF8nMs .close::before {
  content: '\e91a';
}
.cid-ucguyF8nMs .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-ucguyF8nMs .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-ucguyF8nMs .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucguyF8nMs .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-ucguyF8nMs .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-ucguyF8nMs .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-ucguyF8nMs .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-ucguyF8nMs .carousel-indicators li.active,
.cid-ucguyF8nMs .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-ucguyF8nMs .carousel-indicators li::after,
.cid-ucguyF8nMs .carousel-indicators li::before {
  content: none;
}
.cid-ucguyF8nMs .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-ucguyF8nMs .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-ucguyF8nMs .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-ucguyF8nMs .carousel-indicators {
    display: none;
  }
}
.cid-ucguyF8nMs .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-ucguyF8nMs .carousel-inner > .active {
  display: block;
}
.cid-ucguyF8nMs .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-ucguyF8nMs .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-ucguyF8nMs .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-ucguyF8nMs .carousel-control,
  .cid-ucguyF8nMs .carousel-indicators,
  .cid-ucguyF8nMs .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-ucguyF8nMs .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-ucguyF8nMs .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-ucguyF8nMs .carousel-indicators .active,
.cid-ucguyF8nMs .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-ucguyF8nMs .carousel-indicators .active {
  background: #fff;
}
.cid-ucguyF8nMs .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-ucguyF8nMs .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-ucguyF8nMs .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-ucguyF8nMs .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-ucguyF8nMs .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-ucguyF8nMs .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-ucguyF8nMs .carousel {
  width: 100%;
}
.cid-ucguyF8nMs .modal-backdrop.in {
  opacity: 0.8;
}
.cid-ucguyF8nMs .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-ucguyF8nMs .modal.fade .modal-dialog,
.cid-ucguyF8nMs .modal.in .modal-dialog {
  transform: none;
}
.cid-ucguyF8nMs .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-ucguyF8nMs H6 {
  text-align: center;
}
.cid-ucEK19FJ2N {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-ucEK19FJ2N .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucEK19FJ2N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucEK19FJ2N .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucEK19FJ2N .container {
    padding: 0 12px;
  }
}
.cid-ucEK19FJ2N .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucEK19FJ2N .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucEK19FJ2N .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucEK19FJ2N .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucEK19FJ2N .mbr-section-title {
  color: #222222;
}
.cid-ucguyGuyu2 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ucguyGuyu2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyGuyu2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-ucguyGuyu2 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-ucguyGuyu2 .container {
    padding: 0 12px;
  }
}
.cid-ucguyGuyu2 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-ucguyGuyu2 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-ucguyGuyu2 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-ucguyGuyu2 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-ucguyGuyu2 .mbr-section-title {
  color: #222222;
}
.cid-ucguyGXD5J {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-ucguyGXD5J .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyGXD5J .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-ucguyHqpkq {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-ucguyHqpkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ucguyHqpkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ucguyHqpkq h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-ucguyHqpkq .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-ucguyHqpkq .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-ucguyHqpkq .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-ucguyHqpkq .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-ucguyHqpkq .mbr-text,
.cid-ucguyHqpkq .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-ucguyHqpkq .mbr-section-subtitle,
.cid-ucguyHqpkq .align-wrapper {
  color: #04492e;
}
.cid-ucguyHqpkq .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-ucguyHqpkq .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-ucguyHU9LD {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-ucguyHU9LD .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-ucguyHU9LD .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-ucguyHU9LD .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-ucguyHU9LD .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-ucguyHU9LD .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-ucguyHU9LD .social_icons {
  text-align: center;
}
.cid-ucguyHU9LD .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-ucguyHU9LD .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-ucguyHU9LD .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-ucguyHU9LD .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-ucguyHU9LD .footer_timework {
    margin-top: 50px;
  }
  .cid-ucguyHU9LD .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-ucguyHU9LD .mbr-text,
.cid-ucguyHU9LD .footer_logo,
.cid-ucguyHU9LD .social_icons {
  color: #fafafa;
}
.cid-ucguyHU9LD .copyright {
  margin-top: 2rem;
}
.cid-umQshfJ1Iw .navbar-dropdown {
  position: relative !important;
}
.cid-umQshfJ1Iw .navbar-dropdown {
  position: absolute !important;
}
.cid-umQshfJ1Iw .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umQshfJ1Iw .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umQshfJ1Iw .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umQshfJ1Iw .dropdown-item:hover,
.cid-umQshfJ1Iw .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-umQshfJ1Iw .dropdown-item:hover span {
  color: white;
}
.cid-umQshfJ1Iw .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umQshfJ1Iw .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umQshfJ1Iw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umQshfJ1Iw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umQshfJ1Iw .nav-link {
  position: relative;
}
.cid-umQshfJ1Iw .container {
  display: flex;
  margin: auto;
}
.cid-umQshfJ1Iw .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umQshfJ1Iw .dropdown-menu,
.cid-umQshfJ1Iw .navbar.opened {
  background: #14a6c8 !important;
}
.cid-umQshfJ1Iw .nav-item:focus,
.cid-umQshfJ1Iw .nav-link:focus {
  outline: none;
}
.cid-umQshfJ1Iw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umQshfJ1Iw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umQshfJ1Iw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umQshfJ1Iw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umQshfJ1Iw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umQshfJ1Iw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umQshfJ1Iw .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-umQshfJ1Iw .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-umQshfJ1Iw .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-umQshfJ1Iw .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-umQshfJ1Iw .navbar.opened {
  transition: all 0.3s;
}
.cid-umQshfJ1Iw .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umQshfJ1Iw .navbar .navbar-logo img {
  width: auto;
}
.cid-umQshfJ1Iw .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-umQshfJ1Iw .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-umQshfJ1Iw .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-umQshfJ1Iw .navbar.collapsed {
  justify-content: center;
}
.cid-umQshfJ1Iw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umQshfJ1Iw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umQshfJ1Iw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-umQshfJ1Iw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umQshfJ1Iw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umQshfJ1Iw .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-umQshfJ1Iw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-umQshfJ1Iw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umQshfJ1Iw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umQshfJ1Iw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umQshfJ1Iw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umQshfJ1Iw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umQshfJ1Iw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umQshfJ1Iw .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-umQshfJ1Iw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umQshfJ1Iw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umQshfJ1Iw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umQshfJ1Iw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umQshfJ1Iw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umQshfJ1Iw .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umQshfJ1Iw .navbar.navbar-short {
  min-height: 60px;
}
.cid-umQshfJ1Iw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umQshfJ1Iw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-umQshfJ1Iw .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-umQshfJ1Iw .navbar {
    padding: 0 50px !important;
  }
}
.cid-umQshfJ1Iw .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-umQshfJ1Iw .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-umQshfJ1Iw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-umQshfJ1Iw .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-umQshfJ1Iw .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-umQshfJ1Iw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-umQshfJ1Iw .dropdown-item.active,
.cid-umQshfJ1Iw .dropdown-item:active {
  background-color: transparent;
}
.cid-umQshfJ1Iw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umQshfJ1Iw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umQshfJ1Iw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umQshfJ1Iw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-umQshfJ1Iw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umQshfJ1Iw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umQshfJ1Iw ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-umQshfJ1Iw ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-umQshfJ1Iw .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-umQshfJ1Iw .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-umQshfJ1Iw .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-umQshfJ1Iw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-umQshfJ1Iw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-umQshfJ1Iw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umQshfJ1Iw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-umQshfJ1Iw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-umQshfJ1Iw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-umQshfJ1Iw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umQshfJ1Iw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-umQshfJ1Iw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-umQshfJ1Iw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umQshfJ1Iw .navbar-dropdown {
  padding: 0 1rem;
}
.cid-umQshfJ1Iw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umQshfJ1Iw .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-umQshfJ1Iw .navbar {
    height: 100px;
  }
  .cid-umQshfJ1Iw .navbar.opened {
    height: auto;
  }
  .cid-umQshfJ1Iw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umQshfJ1Iw .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-umQshfJ1Iw .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-umQshfJ1Iw .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-umQshgdFg4 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-umQshgdFg4 .row {
  align-items: center;
}
.cid-umQshgdFg4 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-umQshgdFg4 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-umQshgdFg4 .header-text {
    margin-bottom: 20px;
  }
}
.cid-umQshgdFg4 .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-umQshgdFg4 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-umQshgdFg4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umQshgdFg4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umQshgdFg4 .mbr-text,
.cid-umQshgdFg4 .mbr-section-btn {
  color: #ffffff;
}
.cid-umQshgwpts {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umQshgwpts .mbr-text {
  color: #353535;
}
.cid-umQshgO5F5 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-umQshgO5F5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-umQshgO5F5 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-umQshhaucm {
  padding-top: 4rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ffeaf4;
}
.cid-umQshhaucm .mark_text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #ffffff;
}
.cid-umQshhaucm .mbr-section-title {
  margin-bottom: 18px;
  color: #353535;
}
.cid-umQshhaucm .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-umQshhaucm .mbr-text {
  color: #ffffff;
}
.cid-umQshhaucm .card_title {
  color: #353535;
  line-height: 1.2727em;
  margin-bottom: 0;
}
.cid-umQshhaucm .card_content {
  margin: 26px 0 23px;
}
.cid-umQshhaucm img,
.cid-umQshhaucm .item-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.cid-umQshhaucm .item {
  margin-bottom: 30px;
}
.cid-umQshhaucm .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-umQshhaucm .card_text {
  color: #353535;
  margin-top: 4px;
  text-align: center;
}
.cid-umQshhaucm .item-img {
  position: relative;
}
.cid-umQshhaucm .item-img .mbr-section-btn {
  position: absolute;
  margin-left: 3px;
  top: 53%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 0.2s ease-out;
  transform: translate(-50%, -50%);
}
.cid-umQshhaucm .item-img:hover .mbr-section-btn {
  top: 50%;
  opacity: 1;
}
.cid-umQshhIpZE {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-umQshhIpZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-umQshhIpZE .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-umQshiXtIJ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-umQshiXtIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-umQshiXtIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-umQshiXtIJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umQshiXtIJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-umQshiXtIJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-umQshiXtIJ .mbr-section-title {
  color: #353535;
}
.cid-umQshjoebm {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-umQshjoebm .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-umQshjoebm .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-umQshjoebm .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-umQshjoebm .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-umQshjoebm .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-umQshjoebm .social_icons {
  text-align: center;
}
.cid-umQshjoebm .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-umQshjoebm .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-umQshjoebm .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-umQshjoebm .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-umQshjoebm .footer_timework {
    margin-top: 50px;
  }
  .cid-umQshjoebm .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-umQshjoebm .mbr-text,
.cid-umQshjoebm .footer_logo,
.cid-umQshjoebm .social_icons {
  color: #fafafa;
}
.cid-umQshjoebm .copyright {
  margin-top: 2rem;
}
.cid-unSq3x2842 .navbar-dropdown {
  position: relative !important;
}
.cid-unSq3x2842 .navbar-dropdown {
  position: absolute !important;
}
.cid-unSq3x2842 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unSq3x2842 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-unSq3x2842 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-unSq3x2842 .dropdown-item:hover,
.cid-unSq3x2842 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-unSq3x2842 .dropdown-item:hover span {
  color: white;
}
.cid-unSq3x2842 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-unSq3x2842 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-unSq3x2842 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-unSq3x2842 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-unSq3x2842 .nav-link {
  position: relative;
}
.cid-unSq3x2842 .container {
  display: flex;
  margin: auto;
}
.cid-unSq3x2842 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-unSq3x2842 .dropdown-menu,
.cid-unSq3x2842 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-unSq3x2842 .nav-item:focus,
.cid-unSq3x2842 .nav-link:focus {
  outline: none;
}
.cid-unSq3x2842 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-unSq3x2842 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-unSq3x2842 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-unSq3x2842 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-unSq3x2842 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-unSq3x2842 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-unSq3x2842 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-unSq3x2842 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-unSq3x2842 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-unSq3x2842 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-unSq3x2842 .navbar.opened {
  transition: all 0.3s;
}
.cid-unSq3x2842 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-unSq3x2842 .navbar .navbar-logo img {
  width: auto;
}
.cid-unSq3x2842 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-unSq3x2842 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-unSq3x2842 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-unSq3x2842 .navbar.collapsed {
  justify-content: center;
}
.cid-unSq3x2842 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-unSq3x2842 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-unSq3x2842 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-unSq3x2842 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-unSq3x2842 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-unSq3x2842 .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-unSq3x2842 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-unSq3x2842 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-unSq3x2842 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-unSq3x2842 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-unSq3x2842 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-unSq3x2842 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-unSq3x2842 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-unSq3x2842 .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-unSq3x2842 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-unSq3x2842 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-unSq3x2842 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-unSq3x2842 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-unSq3x2842 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-unSq3x2842 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-unSq3x2842 .navbar.navbar-short {
  min-height: 60px;
}
.cid-unSq3x2842 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-unSq3x2842 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-unSq3x2842 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-unSq3x2842 .navbar {
    padding: 0 50px !important;
  }
}
.cid-unSq3x2842 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-unSq3x2842 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-unSq3x2842 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-unSq3x2842 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-unSq3x2842 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-unSq3x2842 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-unSq3x2842 .dropdown-item.active,
.cid-unSq3x2842 .dropdown-item:active {
  background-color: transparent;
}
.cid-unSq3x2842 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-unSq3x2842 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-unSq3x2842 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-unSq3x2842 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-unSq3x2842 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-unSq3x2842 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-unSq3x2842 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-unSq3x2842 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-unSq3x2842 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-unSq3x2842 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-unSq3x2842 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-unSq3x2842 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-unSq3x2842 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-unSq3x2842 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-unSq3x2842 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-unSq3x2842 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-unSq3x2842 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-unSq3x2842 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unSq3x2842 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-unSq3x2842 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-unSq3x2842 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-unSq3x2842 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-unSq3x2842 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-unSq3x2842 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-unSq3x2842 .navbar {
    height: 100px;
  }
  .cid-unSq3x2842 .navbar.opened {
    height: auto;
  }
  .cid-unSq3x2842 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-unSq3x2842 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-unSq3x2842 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-unSq3x2842 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-unSq3y3weh {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-unSq3y3weh .row {
  align-items: center;
}
.cid-unSq3y3weh .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-unSq3y3weh .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-unSq3y3weh .header-text {
    margin-bottom: 20px;
  }
}
.cid-unSq3y3weh .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-unSq3y3weh .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-unSq3y3weh .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3y3weh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unSq3y3weh .mbr-text,
.cid-unSq3y3weh .mbr-section-btn {
  color: #ffffff;
}
.cid-unSq3yxmm1 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-unSq3yxmm1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3yxmm1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unSq3yxmm1 .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-unSq3yxmm1 .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-unSq3yXdgJ {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-unSq3yXdgJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3yXdgJ .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-unSq3zkv2R {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-unSq3zkv2R .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-unSq3zkv2R .why-list {
    flex-direction: column;
  }
}
.cid-unSq3zkv2R .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-unSq3zkv2R .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-unSq3zkv2R .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-unSq3zkv2R .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-unSq3zkv2R .mbr-text {
  color: #353535;
}
.cid-unSq3zkv2R .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-unSq3zFORR {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-unSq3zFORR .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3zFORR .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-unSq3A4LMh {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-unSq3A4LMh .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3A4LMh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unSq3A4LMh .mbr-section-head {
  margin-bottom: 32px;
}
.cid-unSq3A4LMh .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-unSq3A4LMh .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-unSq3A4LMh .items-row {
  row-gap: 32px;
}
.cid-unSq3A4LMh .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-unSq3A4LMh .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-unSq3A4LMh .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-unSq3A4LMh .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-unSq3A4LMh .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-unSq3A4LMh .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-unSq3A4LMh .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-unSq3A4LMh .carousel-control,
.cid-unSq3A4LMh .close {
  background: #1b1b1b;
}
.cid-unSq3A4LMh .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-unSq3A4LMh .carousel-control-prev span {
  margin-right: 5px;
}
.cid-unSq3A4LMh .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-unSq3A4LMh .carousel-control-next span {
  margin-left: 5px;
}
.cid-unSq3A4LMh .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-unSq3A4LMh .close::before {
  content: '\e91a';
}
.cid-unSq3A4LMh .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-unSq3A4LMh .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-unSq3A4LMh .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unSq3A4LMh .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-unSq3A4LMh .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-unSq3A4LMh .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-unSq3A4LMh .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-unSq3A4LMh .carousel-indicators li.active,
.cid-unSq3A4LMh .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-unSq3A4LMh .carousel-indicators li::after,
.cid-unSq3A4LMh .carousel-indicators li::before {
  content: none;
}
.cid-unSq3A4LMh .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-unSq3A4LMh .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-unSq3A4LMh .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-unSq3A4LMh .carousel-indicators {
    display: none;
  }
}
.cid-unSq3A4LMh .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-unSq3A4LMh .carousel-inner > .active {
  display: block;
}
.cid-unSq3A4LMh .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-unSq3A4LMh .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-unSq3A4LMh .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-unSq3A4LMh .carousel-control,
  .cid-unSq3A4LMh .carousel-indicators,
  .cid-unSq3A4LMh .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-unSq3A4LMh .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-unSq3A4LMh .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-unSq3A4LMh .carousel-indicators .active,
.cid-unSq3A4LMh .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-unSq3A4LMh .carousel-indicators .active {
  background: #fff;
}
.cid-unSq3A4LMh .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-unSq3A4LMh .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-unSq3A4LMh .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-unSq3A4LMh .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-unSq3A4LMh .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-unSq3A4LMh .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-unSq3A4LMh .carousel {
  width: 100%;
}
.cid-unSq3A4LMh .modal-backdrop.in {
  opacity: 0.8;
}
.cid-unSq3A4LMh .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-unSq3A4LMh .modal.fade .modal-dialog,
.cid-unSq3A4LMh .modal.in .modal-dialog {
  transform: none;
}
.cid-unSq3A4LMh .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-unSq3A4LMh H6 {
  text-align: center;
}
.cid-unSq3AVQPf {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-unSq3AVQPf .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3AVQPf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-unSq3AVQPf .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-unSq3AVQPf .container {
    padding: 0 12px;
  }
}
.cid-unSq3AVQPf .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-unSq3AVQPf .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-unSq3AVQPf .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-unSq3AVQPf .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-unSq3AVQPf .mbr-section-title {
  color: #222222;
}
.cid-unSq3BnOWv {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-unSq3BnOWv .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3BnOWv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-unSq3BnOWv .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-unSq3BnOWv .container {
    padding: 0 12px;
  }
}
.cid-unSq3BnOWv .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-unSq3BnOWv .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-unSq3BnOWv .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-unSq3BnOWv .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-unSq3BnOWv .mbr-section-title {
  color: #222222;
}
.cid-unSq3BVKNN {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-unSq3BVKNN .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3BVKNN .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-unSq3CmhGf {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-unSq3CmhGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-unSq3CmhGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-unSq3CmhGf h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-unSq3CmhGf .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-unSq3CmhGf .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-unSq3CmhGf .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-unSq3CmhGf .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-unSq3CmhGf .mbr-text,
.cid-unSq3CmhGf .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-unSq3CmhGf .mbr-section-subtitle,
.cid-unSq3CmhGf .align-wrapper {
  color: #04492e;
}
.cid-unSq3CmhGf .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-unSq3CmhGf .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-unSq3CM9jU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-unSq3CM9jU .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-unSq3CM9jU .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-unSq3CM9jU .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-unSq3CM9jU .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-unSq3CM9jU .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-unSq3CM9jU .social_icons {
  text-align: center;
}
.cid-unSq3CM9jU .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-unSq3CM9jU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-unSq3CM9jU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-unSq3CM9jU .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-unSq3CM9jU .footer_timework {
    margin-top: 50px;
  }
  .cid-unSq3CM9jU .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-unSq3CM9jU .mbr-text,
.cid-unSq3CM9jU .footer_logo,
.cid-unSq3CM9jU .social_icons {
  color: #fafafa;
}
.cid-unSq3CM9jU .copyright {
  margin-top: 2rem;
}
.cid-uqSXafJf7Z .navbar-dropdown {
  position: relative !important;
}
.cid-uqSXafJf7Z .navbar-dropdown {
  position: absolute !important;
}
.cid-uqSXafJf7Z .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqSXafJf7Z .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uqSXafJf7Z .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uqSXafJf7Z .dropdown-item:hover,
.cid-uqSXafJf7Z .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uqSXafJf7Z .dropdown-item:hover span {
  color: white;
}
.cid-uqSXafJf7Z .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uqSXafJf7Z .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uqSXafJf7Z .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uqSXafJf7Z .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uqSXafJf7Z .nav-link {
  position: relative;
}
.cid-uqSXafJf7Z .container {
  display: flex;
  margin: auto;
}
.cid-uqSXafJf7Z .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uqSXafJf7Z .dropdown-menu,
.cid-uqSXafJf7Z .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uqSXafJf7Z .nav-item:focus,
.cid-uqSXafJf7Z .nav-link:focus {
  outline: none;
}
.cid-uqSXafJf7Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uqSXafJf7Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uqSXafJf7Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uqSXafJf7Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uqSXafJf7Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uqSXafJf7Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uqSXafJf7Z .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uqSXafJf7Z .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uqSXafJf7Z .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uqSXafJf7Z .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uqSXafJf7Z .navbar.opened {
  transition: all 0.3s;
}
.cid-uqSXafJf7Z .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uqSXafJf7Z .navbar .navbar-logo img {
  width: auto;
}
.cid-uqSXafJf7Z .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uqSXafJf7Z .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uqSXafJf7Z .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uqSXafJf7Z .navbar.collapsed {
  justify-content: center;
}
.cid-uqSXafJf7Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uqSXafJf7Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uqSXafJf7Z .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uqSXafJf7Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uqSXafJf7Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uqSXafJf7Z .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-uqSXafJf7Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uqSXafJf7Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uqSXafJf7Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uqSXafJf7Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uqSXafJf7Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uqSXafJf7Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uqSXafJf7Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uqSXafJf7Z .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-uqSXafJf7Z .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uqSXafJf7Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uqSXafJf7Z .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uqSXafJf7Z .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uqSXafJf7Z .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uqSXafJf7Z .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uqSXafJf7Z .navbar.navbar-short {
  min-height: 60px;
}
.cid-uqSXafJf7Z .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uqSXafJf7Z .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uqSXafJf7Z .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uqSXafJf7Z .navbar {
    padding: 0 50px !important;
  }
}
.cid-uqSXafJf7Z .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uqSXafJf7Z .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uqSXafJf7Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uqSXafJf7Z .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uqSXafJf7Z .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uqSXafJf7Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uqSXafJf7Z .dropdown-item.active,
.cid-uqSXafJf7Z .dropdown-item:active {
  background-color: transparent;
}
.cid-uqSXafJf7Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uqSXafJf7Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uqSXafJf7Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uqSXafJf7Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uqSXafJf7Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uqSXafJf7Z .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uqSXafJf7Z ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uqSXafJf7Z ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uqSXafJf7Z .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uqSXafJf7Z .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uqSXafJf7Z .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uqSXafJf7Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uqSXafJf7Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uqSXafJf7Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uqSXafJf7Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uqSXafJf7Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uqSXafJf7Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uqSXafJf7Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqSXafJf7Z nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uqSXafJf7Z nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uqSXafJf7Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uqSXafJf7Z .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uqSXafJf7Z a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uqSXafJf7Z .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uqSXafJf7Z .navbar {
    height: 100px;
  }
  .cid-uqSXafJf7Z .navbar.opened {
    height: auto;
  }
  .cid-uqSXafJf7Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uqSXafJf7Z .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uqSXafJf7Z .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uqSXafJf7Z .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uqSXagwSWf {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uqSXagwSWf .row {
  align-items: center;
}
.cid-uqSXagwSWf .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uqSXagwSWf .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uqSXagwSWf .header-text {
    margin-bottom: 20px;
  }
}
.cid-uqSXagwSWf .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uqSXagwSWf .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uqSXagwSWf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXagwSWf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqSXagwSWf .mbr-text,
.cid-uqSXagwSWf .mbr-section-btn {
  color: #ffffff;
}
.cid-uqSXagM5ch {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqSXagM5ch .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXagM5ch .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqSXagM5ch .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-uqSXagM5ch .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-uqSXagZI09 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uqSXagZI09 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXagZI09 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uqSXagZI09 .container {
    max-width: 1400px;
  }
}
.cid-uqSXagZI09 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-uqSXagZI09 .row {
  justify-content: center;
}
.cid-uqSXagZI09 .card-title,
.cid-uqSXagZI09 .iconfont-wrapper {
  color: #14a6c8;
}
.cid-uqSXahs2Ex {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-uqSXahs2Ex .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXahs2Ex .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uqSXahI10v {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uqSXahI10v .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uqSXahI10v .why-list {
    flex-direction: column;
  }
}
.cid-uqSXahI10v .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uqSXahI10v .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uqSXahI10v .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-uqSXahI10v .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-uqSXahI10v .mbr-text {
  color: #353535;
}
.cid-uqSXahI10v .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uqSXahZxX6 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-uqSXahZxX6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXahZxX6 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uqSXaipexp {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uqSXaipexp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXaipexp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqSXaipexp .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uqSXaipexp .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-uqSXaipexp .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-uqSXaipexp .items-row {
  row-gap: 32px;
}
.cid-uqSXaipexp .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uqSXaipexp .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uqSXaipexp .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uqSXaipexp .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uqSXaipexp .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uqSXaipexp .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uqSXaipexp .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uqSXaipexp .carousel-control,
.cid-uqSXaipexp .close {
  background: #1b1b1b;
}
.cid-uqSXaipexp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uqSXaipexp .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uqSXaipexp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uqSXaipexp .carousel-control-next span {
  margin-left: 5px;
}
.cid-uqSXaipexp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uqSXaipexp .close::before {
  content: '\e91a';
}
.cid-uqSXaipexp .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uqSXaipexp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uqSXaipexp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uqSXaipexp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uqSXaipexp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uqSXaipexp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uqSXaipexp .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uqSXaipexp .carousel-indicators li.active,
.cid-uqSXaipexp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uqSXaipexp .carousel-indicators li::after,
.cid-uqSXaipexp .carousel-indicators li::before {
  content: none;
}
.cid-uqSXaipexp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uqSXaipexp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uqSXaipexp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uqSXaipexp .carousel-indicators {
    display: none;
  }
}
.cid-uqSXaipexp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uqSXaipexp .carousel-inner > .active {
  display: block;
}
.cid-uqSXaipexp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uqSXaipexp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uqSXaipexp .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uqSXaipexp .carousel-control,
  .cid-uqSXaipexp .carousel-indicators,
  .cid-uqSXaipexp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uqSXaipexp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uqSXaipexp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uqSXaipexp .carousel-indicators .active,
.cid-uqSXaipexp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uqSXaipexp .carousel-indicators .active {
  background: #fff;
}
.cid-uqSXaipexp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uqSXaipexp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uqSXaipexp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uqSXaipexp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uqSXaipexp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uqSXaipexp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uqSXaipexp .carousel {
  width: 100%;
}
.cid-uqSXaipexp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uqSXaipexp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uqSXaipexp .modal.fade .modal-dialog,
.cid-uqSXaipexp .modal.in .modal-dialog {
  transform: none;
}
.cid-uqSXaipexp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uqSXaipexp H6 {
  text-align: center;
}
.cid-uqSXajDcIc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uqSXajDcIc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXajDcIc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqSXajDcIc .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uqSXajDcIc .container {
    padding: 0 12px;
  }
}
.cid-uqSXajDcIc .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqSXajDcIc .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uqSXajDcIc .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uqSXajDcIc .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uqSXajDcIc .mbr-section-title {
  color: #222222;
}
.cid-uqSXak0TGP {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uqSXak0TGP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXak0TGP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uqSXak0TGP .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uqSXak0TGP .container {
    padding: 0 12px;
  }
}
.cid-uqSXak0TGP .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uqSXak0TGP .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uqSXak0TGP .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uqSXak0TGP .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uqSXak0TGP .mbr-section-title {
  color: #222222;
}
.cid-uqSXakfJi2 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-uqSXakfJi2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXakfJi2 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uqSXakB21P {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-uqSXakB21P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uqSXakB21P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uqSXakB21P h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-uqSXakB21P .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uqSXakB21P .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uqSXakB21P .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-uqSXakB21P .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uqSXakB21P .mbr-text,
.cid-uqSXakB21P .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-uqSXakB21P .mbr-section-subtitle,
.cid-uqSXakB21P .align-wrapper {
  color: #04492e;
}
.cid-uqSXakB21P .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-uqSXakB21P .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-uqSXal1vi3 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uqSXal1vi3 .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uqSXal1vi3 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uqSXal1vi3 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uqSXal1vi3 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uqSXal1vi3 .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uqSXal1vi3 .social_icons {
  text-align: center;
}
.cid-uqSXal1vi3 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uqSXal1vi3 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uqSXal1vi3 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uqSXal1vi3 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uqSXal1vi3 .footer_timework {
    margin-top: 50px;
  }
  .cid-uqSXal1vi3 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uqSXal1vi3 .mbr-text,
.cid-uqSXal1vi3 .footer_logo,
.cid-uqSXal1vi3 .social_icons {
  color: #fafafa;
}
.cid-uqSXal1vi3 .copyright {
  margin-top: 2rem;
}
.cid-uBni1HeB4R .navbar-dropdown {
  position: relative !important;
}
.cid-uBni1HeB4R .navbar-dropdown {
  position: absolute !important;
}
.cid-uBni1HeB4R .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBni1HeB4R .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBni1HeB4R .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBni1HeB4R .dropdown-item:hover,
.cid-uBni1HeB4R .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uBni1HeB4R .dropdown-item:hover span {
  color: white;
}
.cid-uBni1HeB4R .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBni1HeB4R .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBni1HeB4R .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBni1HeB4R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBni1HeB4R .nav-link {
  position: relative;
}
.cid-uBni1HeB4R .container {
  display: flex;
  margin: auto;
}
.cid-uBni1HeB4R .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBni1HeB4R .dropdown-menu,
.cid-uBni1HeB4R .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uBni1HeB4R .nav-item:focus,
.cid-uBni1HeB4R .nav-link:focus {
  outline: none;
}
.cid-uBni1HeB4R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBni1HeB4R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBni1HeB4R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBni1HeB4R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBni1HeB4R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBni1HeB4R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBni1HeB4R .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uBni1HeB4R .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uBni1HeB4R .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uBni1HeB4R .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uBni1HeB4R .navbar.opened {
  transition: all 0.3s;
}
.cid-uBni1HeB4R .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBni1HeB4R .navbar .navbar-logo img {
  width: auto;
}
.cid-uBni1HeB4R .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uBni1HeB4R .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uBni1HeB4R .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uBni1HeB4R .navbar.collapsed {
  justify-content: center;
}
.cid-uBni1HeB4R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBni1HeB4R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBni1HeB4R .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBni1HeB4R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBni1HeB4R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBni1HeB4R .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-uBni1HeB4R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uBni1HeB4R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBni1HeB4R .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBni1HeB4R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBni1HeB4R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBni1HeB4R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBni1HeB4R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBni1HeB4R .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-uBni1HeB4R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBni1HeB4R .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBni1HeB4R .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBni1HeB4R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBni1HeB4R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBni1HeB4R .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBni1HeB4R .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBni1HeB4R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBni1HeB4R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uBni1HeB4R .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uBni1HeB4R .navbar {
    padding: 0 50px !important;
  }
}
.cid-uBni1HeB4R .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uBni1HeB4R .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uBni1HeB4R .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uBni1HeB4R .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uBni1HeB4R .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uBni1HeB4R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBni1HeB4R .dropdown-item.active,
.cid-uBni1HeB4R .dropdown-item:active {
  background-color: transparent;
}
.cid-uBni1HeB4R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBni1HeB4R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBni1HeB4R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBni1HeB4R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uBni1HeB4R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBni1HeB4R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBni1HeB4R ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uBni1HeB4R ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uBni1HeB4R .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uBni1HeB4R .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uBni1HeB4R .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uBni1HeB4R button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uBni1HeB4R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBni1HeB4R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBni1HeB4R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uBni1HeB4R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uBni1HeB4R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uBni1HeB4R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBni1HeB4R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uBni1HeB4R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uBni1HeB4R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBni1HeB4R .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBni1HeB4R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBni1HeB4R .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBni1HeB4R .navbar {
    height: 100px;
  }
  .cid-uBni1HeB4R .navbar.opened {
    height: auto;
  }
  .cid-uBni1HeB4R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBni1HeB4R .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uBni1HeB4R .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uBni1HeB4R .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uBni1IrWCx {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uBni1IrWCx .row {
  align-items: center;
}
.cid-uBni1IrWCx .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uBni1IrWCx .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uBni1IrWCx .header-text {
    margin-bottom: 20px;
  }
}
.cid-uBni1IrWCx .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 3.5rem;
}
.cid-uBni1IrWCx .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uBni1IrWCx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBni1IrWCx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBni1IrWCx .mbr-text,
.cid-uBni1IrWCx .mbr-section-btn {
  color: #ffffff;
}
.cid-uBni1IRR66 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uBni1IRR66 .mbr-text {
  color: #353535;
}
.cid-uBni1Jdieb {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-uBni1Jdieb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBni1Jdieb .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uBni1JzGfo {
  padding-top: 4rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ffeaf4;
}
.cid-uBni1JzGfo .mark_text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #ffffff;
}
.cid-uBni1JzGfo .mbr-section-title {
  margin-bottom: 18px;
  color: #353535;
}
.cid-uBni1JzGfo .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-uBni1JzGfo .mbr-text {
  color: #ffffff;
}
.cid-uBni1JzGfo .card_title {
  color: #353535;
  line-height: 1.2727em;
  margin-bottom: 0;
}
.cid-uBni1JzGfo .card_content {
  margin: 26px 0 23px;
}
.cid-uBni1JzGfo img,
.cid-uBni1JzGfo .item-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.cid-uBni1JzGfo .item {
  margin-bottom: 30px;
}
.cid-uBni1JzGfo .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-uBni1JzGfo .card_text {
  color: #353535;
  margin-top: 4px;
  text-align: center;
}
.cid-uBni1JzGfo .item-img {
  position: relative;
}
.cid-uBni1JzGfo .item-img .mbr-section-btn {
  position: absolute;
  margin-left: 3px;
  top: 53%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 0.2s ease-out;
  transform: translate(-50%, -50%);
}
.cid-uBni1JzGfo .item-img:hover .mbr-section-btn {
  top: 50%;
  opacity: 1;
}
.cid-uBni1KepbT {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-uBni1KepbT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBni1KepbT .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uBni1KEHjG {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBni1KEHjG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBni1KEHjG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uBni1KEHjG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uBni1KEHjG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uBni1KEHjG .text-wrapper {
    padding: 2rem;
  }
}
.cid-uBni1KEHjG .mbr-section-title {
  color: #353535;
}
.cid-uBni1L73tr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uBni1L73tr .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uBni1L73tr .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uBni1L73tr .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uBni1L73tr .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uBni1L73tr .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uBni1L73tr .social_icons {
  text-align: center;
}
.cid-uBni1L73tr .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uBni1L73tr .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uBni1L73tr .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uBni1L73tr .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uBni1L73tr .footer_timework {
    margin-top: 50px;
  }
  .cid-uBni1L73tr .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uBni1L73tr .mbr-text,
.cid-uBni1L73tr .footer_logo,
.cid-uBni1L73tr .social_icons {
  color: #fafafa;
}
.cid-uBni1L73tr .copyright {
  margin-top: 2rem;
}
.cid-uBWlsfzbaX .navbar-dropdown {
  position: relative !important;
}
.cid-uBWlsfzbaX .navbar-dropdown {
  position: absolute !important;
}
.cid-uBWlsfzbaX .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBWlsfzbaX .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uBWlsfzbaX .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uBWlsfzbaX .dropdown-item:hover,
.cid-uBWlsfzbaX .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uBWlsfzbaX .dropdown-item:hover span {
  color: white;
}
.cid-uBWlsfzbaX .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uBWlsfzbaX .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uBWlsfzbaX .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uBWlsfzbaX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uBWlsfzbaX .nav-link {
  position: relative;
}
.cid-uBWlsfzbaX .container {
  display: flex;
  margin: auto;
}
.cid-uBWlsfzbaX .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uBWlsfzbaX .dropdown-menu,
.cid-uBWlsfzbaX .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uBWlsfzbaX .nav-item:focus,
.cid-uBWlsfzbaX .nav-link:focus {
  outline: none;
}
.cid-uBWlsfzbaX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uBWlsfzbaX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uBWlsfzbaX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uBWlsfzbaX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uBWlsfzbaX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uBWlsfzbaX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uBWlsfzbaX .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uBWlsfzbaX .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uBWlsfzbaX .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uBWlsfzbaX .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uBWlsfzbaX .navbar.opened {
  transition: all 0.3s;
}
.cid-uBWlsfzbaX .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uBWlsfzbaX .navbar .navbar-logo img {
  width: auto;
}
.cid-uBWlsfzbaX .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uBWlsfzbaX .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uBWlsfzbaX .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uBWlsfzbaX .navbar.collapsed {
  justify-content: center;
}
.cid-uBWlsfzbaX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uBWlsfzbaX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uBWlsfzbaX .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uBWlsfzbaX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uBWlsfzbaX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uBWlsfzbaX .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-uBWlsfzbaX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uBWlsfzbaX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uBWlsfzbaX .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uBWlsfzbaX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uBWlsfzbaX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uBWlsfzbaX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uBWlsfzbaX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uBWlsfzbaX .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-uBWlsfzbaX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uBWlsfzbaX .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uBWlsfzbaX .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uBWlsfzbaX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uBWlsfzbaX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uBWlsfzbaX .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uBWlsfzbaX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uBWlsfzbaX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uBWlsfzbaX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uBWlsfzbaX .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uBWlsfzbaX .navbar {
    padding: 0 50px !important;
  }
}
.cid-uBWlsfzbaX .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uBWlsfzbaX .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uBWlsfzbaX .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uBWlsfzbaX .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uBWlsfzbaX .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uBWlsfzbaX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uBWlsfzbaX .dropdown-item.active,
.cid-uBWlsfzbaX .dropdown-item:active {
  background-color: transparent;
}
.cid-uBWlsfzbaX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uBWlsfzbaX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uBWlsfzbaX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uBWlsfzbaX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uBWlsfzbaX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uBWlsfzbaX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uBWlsfzbaX ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uBWlsfzbaX ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uBWlsfzbaX .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uBWlsfzbaX .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uBWlsfzbaX .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uBWlsfzbaX button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uBWlsfzbaX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uBWlsfzbaX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uBWlsfzbaX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uBWlsfzbaX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uBWlsfzbaX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uBWlsfzbaX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBWlsfzbaX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uBWlsfzbaX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uBWlsfzbaX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uBWlsfzbaX .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uBWlsfzbaX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uBWlsfzbaX .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uBWlsfzbaX .navbar {
    height: 100px;
  }
  .cid-uBWlsfzbaX .navbar.opened {
    height: auto;
  }
  .cid-uBWlsfzbaX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uBWlsfzbaX .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uBWlsfzbaX .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uBWlsfzbaX .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uBWlsguH1u {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uBWlsguH1u .row {
  align-items: center;
}
.cid-uBWlsguH1u .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uBWlsguH1u .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uBWlsguH1u .header-text {
    margin-bottom: 20px;
  }
}
.cid-uBWlsguH1u .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uBWlsguH1u .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uBWlsguH1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsguH1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBWlsguH1u .mbr-text,
.cid-uBWlsguH1u .mbr-section-btn {
  color: #ffffff;
}
.cid-uBWlsgORV9 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBWlsgORV9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsgORV9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBWlsgORV9 .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-uBWlsgORV9 .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-uBWlsh5YIk {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uBWlsh5YIk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsh5YIk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uBWlsh5YIk .container {
    max-width: 1400px;
  }
}
.cid-uBWlsh5YIk .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-uBWlsh5YIk .row {
  justify-content: center;
}
.cid-uBWlsh5YIk .card-title,
.cid-uBWlsh5YIk .iconfont-wrapper {
  color: #14a6c8;
}
.cid-uBWlshwb3O {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-uBWlshwb3O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlshwb3O .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uBWlshLbyN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uBWlshLbyN .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uBWlshLbyN .why-list {
    flex-direction: column;
  }
}
.cid-uBWlshLbyN .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uBWlshLbyN .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uBWlshLbyN .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-uBWlshLbyN .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-uBWlshLbyN .mbr-text {
  color: #353535;
}
.cid-uBWlshLbyN .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uBWlsi0wrH {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-uBWlsi0wrH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsi0wrH .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uBWlsimET5 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uBWlsimET5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsimET5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBWlsimET5 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uBWlsimET5 .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-uBWlsimET5 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-uBWlsimET5 .items-row {
  row-gap: 32px;
}
.cid-uBWlsimET5 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uBWlsimET5 .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uBWlsimET5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uBWlsimET5 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uBWlsimET5 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uBWlsimET5 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uBWlsimET5 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uBWlsimET5 .carousel-control,
.cid-uBWlsimET5 .close {
  background: #1b1b1b;
}
.cid-uBWlsimET5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uBWlsimET5 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uBWlsimET5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uBWlsimET5 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uBWlsimET5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uBWlsimET5 .close::before {
  content: '\e91a';
}
.cid-uBWlsimET5 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uBWlsimET5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uBWlsimET5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBWlsimET5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uBWlsimET5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uBWlsimET5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uBWlsimET5 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uBWlsimET5 .carousel-indicators li.active,
.cid-uBWlsimET5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uBWlsimET5 .carousel-indicators li::after,
.cid-uBWlsimET5 .carousel-indicators li::before {
  content: none;
}
.cid-uBWlsimET5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uBWlsimET5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uBWlsimET5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uBWlsimET5 .carousel-indicators {
    display: none;
  }
}
.cid-uBWlsimET5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uBWlsimET5 .carousel-inner > .active {
  display: block;
}
.cid-uBWlsimET5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uBWlsimET5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uBWlsimET5 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uBWlsimET5 .carousel-control,
  .cid-uBWlsimET5 .carousel-indicators,
  .cid-uBWlsimET5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uBWlsimET5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uBWlsimET5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uBWlsimET5 .carousel-indicators .active,
.cid-uBWlsimET5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uBWlsimET5 .carousel-indicators .active {
  background: #fff;
}
.cid-uBWlsimET5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uBWlsimET5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uBWlsimET5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uBWlsimET5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uBWlsimET5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uBWlsimET5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uBWlsimET5 .carousel {
  width: 100%;
}
.cid-uBWlsimET5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uBWlsimET5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uBWlsimET5 .modal.fade .modal-dialog,
.cid-uBWlsimET5 .modal.in .modal-dialog {
  transform: none;
}
.cid-uBWlsimET5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uBWlsimET5 H6 {
  text-align: center;
}
.cid-uBWlsiX3x6 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uBWlsiX3x6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsiX3x6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBWlsiX3x6 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uBWlsiX3x6 .container {
    padding: 0 12px;
  }
}
.cid-uBWlsiX3x6 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBWlsiX3x6 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uBWlsiX3x6 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uBWlsiX3x6 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uBWlsiX3x6 .mbr-section-title {
  color: #222222;
}
.cid-uBWlsjhZD1 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uBWlsjhZD1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsjhZD1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uBWlsjhZD1 .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uBWlsjhZD1 .container {
    padding: 0 12px;
  }
}
.cid-uBWlsjhZD1 .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uBWlsjhZD1 .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uBWlsjhZD1 .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uBWlsjhZD1 .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uBWlsjhZD1 .mbr-section-title {
  color: #222222;
}
.cid-uBWlsjDWb8 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-uBWlsjDWb8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsjDWb8 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uBWlsk0Hew {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-uBWlsk0Hew .mbr-fallback-image.disabled {
  display: none;
}
.cid-uBWlsk0Hew .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uBWlsk0Hew h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-uBWlsk0Hew .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uBWlsk0Hew .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uBWlsk0Hew .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-uBWlsk0Hew .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uBWlsk0Hew .mbr-text,
.cid-uBWlsk0Hew .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-uBWlsk0Hew .mbr-section-subtitle,
.cid-uBWlsk0Hew .align-wrapper {
  color: #04492e;
}
.cid-uBWlsk0Hew .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-uBWlsk0Hew .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-uBWlskmKnx {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uBWlskmKnx .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uBWlskmKnx .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uBWlskmKnx .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uBWlskmKnx .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uBWlskmKnx .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uBWlskmKnx .social_icons {
  text-align: center;
}
.cid-uBWlskmKnx .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uBWlskmKnx .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uBWlskmKnx .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uBWlskmKnx .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uBWlskmKnx .footer_timework {
    margin-top: 50px;
  }
  .cid-uBWlskmKnx .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uBWlskmKnx .mbr-text,
.cid-uBWlskmKnx .footer_logo,
.cid-uBWlskmKnx .social_icons {
  color: #fafafa;
}
.cid-uBWlskmKnx .copyright {
  margin-top: 2rem;
}
.cid-uN3s4aKUFk .navbar-dropdown {
  position: relative !important;
}
.cid-uN3s4aKUFk .navbar-dropdown {
  position: absolute !important;
}
.cid-uN3s4aKUFk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN3s4aKUFk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uN3s4aKUFk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uN3s4aKUFk .dropdown-item:hover,
.cid-uN3s4aKUFk .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uN3s4aKUFk .dropdown-item:hover span {
  color: white;
}
.cid-uN3s4aKUFk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uN3s4aKUFk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uN3s4aKUFk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uN3s4aKUFk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uN3s4aKUFk .nav-link {
  position: relative;
}
.cid-uN3s4aKUFk .container {
  display: flex;
  margin: auto;
}
.cid-uN3s4aKUFk .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uN3s4aKUFk .dropdown-menu,
.cid-uN3s4aKUFk .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uN3s4aKUFk .nav-item:focus,
.cid-uN3s4aKUFk .nav-link:focus {
  outline: none;
}
.cid-uN3s4aKUFk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uN3s4aKUFk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uN3s4aKUFk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uN3s4aKUFk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uN3s4aKUFk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uN3s4aKUFk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uN3s4aKUFk .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uN3s4aKUFk .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uN3s4aKUFk .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uN3s4aKUFk .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uN3s4aKUFk .navbar.opened {
  transition: all 0.3s;
}
.cid-uN3s4aKUFk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uN3s4aKUFk .navbar .navbar-logo img {
  width: auto;
}
.cid-uN3s4aKUFk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uN3s4aKUFk .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uN3s4aKUFk .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uN3s4aKUFk .navbar.collapsed {
  justify-content: center;
}
.cid-uN3s4aKUFk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uN3s4aKUFk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uN3s4aKUFk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uN3s4aKUFk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uN3s4aKUFk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uN3s4aKUFk .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-uN3s4aKUFk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uN3s4aKUFk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uN3s4aKUFk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uN3s4aKUFk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uN3s4aKUFk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uN3s4aKUFk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uN3s4aKUFk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uN3s4aKUFk .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-uN3s4aKUFk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uN3s4aKUFk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uN3s4aKUFk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uN3s4aKUFk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uN3s4aKUFk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uN3s4aKUFk .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uN3s4aKUFk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uN3s4aKUFk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uN3s4aKUFk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uN3s4aKUFk .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uN3s4aKUFk .navbar {
    padding: 0 50px !important;
  }
}
.cid-uN3s4aKUFk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uN3s4aKUFk .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uN3s4aKUFk .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uN3s4aKUFk .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uN3s4aKUFk .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uN3s4aKUFk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uN3s4aKUFk .dropdown-item.active,
.cid-uN3s4aKUFk .dropdown-item:active {
  background-color: transparent;
}
.cid-uN3s4aKUFk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uN3s4aKUFk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uN3s4aKUFk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uN3s4aKUFk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uN3s4aKUFk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uN3s4aKUFk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uN3s4aKUFk ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uN3s4aKUFk ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uN3s4aKUFk .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uN3s4aKUFk .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uN3s4aKUFk .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uN3s4aKUFk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uN3s4aKUFk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uN3s4aKUFk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uN3s4aKUFk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uN3s4aKUFk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uN3s4aKUFk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uN3s4aKUFk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN3s4aKUFk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uN3s4aKUFk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uN3s4aKUFk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uN3s4aKUFk .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uN3s4aKUFk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uN3s4aKUFk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uN3s4aKUFk .navbar {
    height: 100px;
  }
  .cid-uN3s4aKUFk .navbar.opened {
    height: auto;
  }
  .cid-uN3s4aKUFk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uN3s4aKUFk .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uN3s4aKUFk .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uN3s4aKUFk .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uN3s4bkVxA {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uN3s4bkVxA .row {
  align-items: center;
}
.cid-uN3s4bkVxA .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uN3s4bkVxA .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uN3s4bkVxA .header-text {
    margin-bottom: 20px;
  }
}
.cid-uN3s4bkVxA .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uN3s4bkVxA .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uN3s4bkVxA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4bkVxA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN3s4bkVxA .mbr-text,
.cid-uN3s4bkVxA .mbr-section-btn {
  color: #ffffff;
}
.cid-uN3s4bvVp3 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uN3s4bvVp3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4bvVp3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN3s4bvVp3 .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-uN3s4bvVp3 .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-uN3s4bNcXE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uN3s4bNcXE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4bNcXE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uN3s4bNcXE .container {
    max-width: 1400px;
  }
}
.cid-uN3s4bNcXE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-uN3s4bNcXE .row {
  justify-content: center;
}
.cid-uN3s4bNcXE .card-title,
.cid-uN3s4bNcXE .iconfont-wrapper {
  color: #14a6c8;
}
.cid-uN3s4cgiaf {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-uN3s4cgiaf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4cgiaf .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uN3s4cwvjO {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uN3s4cwvjO .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uN3s4cwvjO .why-list {
    flex-direction: column;
  }
}
.cid-uN3s4cwvjO .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uN3s4cwvjO .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uN3s4cwvjO .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-uN3s4cwvjO .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-uN3s4cwvjO .mbr-text {
  color: #353535;
}
.cid-uN3s4cwvjO .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uN3s4cG44D {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-uN3s4cG44D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4cG44D .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uN3s4dmknB {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uN3s4dmknB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4dmknB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uN3s4dmknB .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uN3s4dmknB .container {
    padding: 0 12px;
  }
}
.cid-uN3s4dmknB .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uN3s4dmknB .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uN3s4dmknB .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uN3s4dmknB .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uN3s4dmknB .mbr-section-title {
  color: #222222;
}
.cid-uN3s4dyduu {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uN3s4dyduu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4dyduu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uN3s4dyduu .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uN3s4dyduu .container {
    padding: 0 12px;
  }
}
.cid-uN3s4dyduu .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uN3s4dyduu .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uN3s4dyduu .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uN3s4dyduu .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uN3s4dyduu .mbr-section-title {
  color: #222222;
}
.cid-uN3s4dJGcV {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-uN3s4dJGcV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4dJGcV .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uN3s4dRRnx {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-uN3s4dRRnx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3s4dRRnx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN3s4dRRnx h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-uN3s4dRRnx .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uN3s4dRRnx .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uN3s4dRRnx .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-uN3s4dRRnx .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uN3s4dRRnx .mbr-text,
.cid-uN3s4dRRnx .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-uN3s4dRRnx .mbr-section-subtitle,
.cid-uN3s4dRRnx .align-wrapper {
  color: #04492e;
}
.cid-uN3s4dRRnx .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-uN3s4dRRnx .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-uN3M8Fn5rb {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-uN3M8Fn5rb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3M8Fn5rb .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uN3LtcXEly {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uN3LtcXEly .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN3LtcXEly .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN3LtcXEly .mbr-text,
.cid-uN3LtcXEly .mbr-section-btn {
  color: #232323;
}
.cid-uN3LtcXEly .card-title,
.cid-uN3LtcXEly .card-box {
  color: #353535;
}
.cid-uN3LtcXEly .mbr-text,
.cid-uN3LtcXEly .link-wrap {
  color: #ffffff;
}
.cid-uN3LtcXEly .card-box .mbr-text,
.cid-uN3LtcXEly .mbr-section-btn {
  color: #353535;
}
.cid-uN3s4e0pQU {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uN3s4e0pQU .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uN3s4e0pQU .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uN3s4e0pQU .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uN3s4e0pQU .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uN3s4e0pQU .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uN3s4e0pQU .social_icons {
  text-align: center;
}
.cid-uN3s4e0pQU .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uN3s4e0pQU .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uN3s4e0pQU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uN3s4e0pQU .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uN3s4e0pQU .footer_timework {
    margin-top: 50px;
  }
  .cid-uN3s4e0pQU .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uN3s4e0pQU .mbr-text,
.cid-uN3s4e0pQU .footer_logo,
.cid-uN3s4e0pQU .social_icons {
  color: #fafafa;
}
.cid-uN3s4e0pQU .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uNfRpegVGZ {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uNfRpegVGZ .row {
  align-items: center;
}
.cid-uNfRpegVGZ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uNfRpegVGZ .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uNfRpegVGZ .header-text {
    margin-bottom: 20px;
  }
}
.cid-uNfRpegVGZ .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uNfRpegVGZ .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uNfRpegVGZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNfRpegVGZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNfRpegVGZ .mbr-text,
.cid-uNfRpegVGZ .mbr-section-btn {
  color: #ffffff;
}
.cid-uNfSfDtwdF {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uNfSfDtwdF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNfSfDtwdF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uNfSfDtwdF .container {
    max-width: 1400px;
  }
}
.cid-uNfSfDtwdF .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #14a6c8;
  margin-bottom: 2rem;
}
.cid-uNfSfDtwdF .row {
  justify-content: center;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uN45OM8nz9 {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uN45OM8nz9 .row {
  align-items: center;
}
.cid-uN45OM8nz9 .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uN45OM8nz9 .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uN45OM8nz9 .header-text {
    margin-bottom: 20px;
  }
}
.cid-uN45OM8nz9 .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uN45OM8nz9 .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uN45OM8nz9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN45OM8nz9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN45OM8nz9 .mbr-text,
.cid-uN45OM8nz9 .mbr-section-btn {
  color: #ffffff;
}
#iframe {
  /* Type valid CSS here */
}
@media screen (max-width: 991px) {
  #iframe iframe {
    height: 25000px;
  }
}
#iframe iframe {
  box-shadow: none;
  border: none;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
.cid-uPI6OwvJbM .navbar-dropdown {
  position: relative !important;
}
.cid-uPI6OwvJbM .navbar-dropdown {
  position: absolute !important;
}
.cid-uPI6OwvJbM .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPI6OwvJbM .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uPI6OwvJbM .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uPI6OwvJbM .dropdown-item:hover,
.cid-uPI6OwvJbM .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uPI6OwvJbM .dropdown-item:hover span {
  color: white;
}
.cid-uPI6OwvJbM .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uPI6OwvJbM .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uPI6OwvJbM .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uPI6OwvJbM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uPI6OwvJbM .nav-link {
  position: relative;
}
.cid-uPI6OwvJbM .container {
  display: flex;
  margin: auto;
}
.cid-uPI6OwvJbM .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uPI6OwvJbM .dropdown-menu,
.cid-uPI6OwvJbM .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uPI6OwvJbM .nav-item:focus,
.cid-uPI6OwvJbM .nav-link:focus {
  outline: none;
}
.cid-uPI6OwvJbM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uPI6OwvJbM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uPI6OwvJbM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uPI6OwvJbM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uPI6OwvJbM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uPI6OwvJbM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uPI6OwvJbM .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uPI6OwvJbM .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uPI6OwvJbM .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uPI6OwvJbM .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uPI6OwvJbM .navbar.opened {
  transition: all 0.3s;
}
.cid-uPI6OwvJbM .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uPI6OwvJbM .navbar .navbar-logo img {
  width: auto;
}
.cid-uPI6OwvJbM .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uPI6OwvJbM .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uPI6OwvJbM .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uPI6OwvJbM .navbar.collapsed {
  justify-content: center;
}
.cid-uPI6OwvJbM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uPI6OwvJbM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uPI6OwvJbM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uPI6OwvJbM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uPI6OwvJbM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uPI6OwvJbM .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-uPI6OwvJbM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uPI6OwvJbM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uPI6OwvJbM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uPI6OwvJbM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uPI6OwvJbM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uPI6OwvJbM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uPI6OwvJbM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uPI6OwvJbM .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-uPI6OwvJbM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uPI6OwvJbM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uPI6OwvJbM .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uPI6OwvJbM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uPI6OwvJbM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uPI6OwvJbM .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uPI6OwvJbM .navbar.navbar-short {
  min-height: 60px;
}
.cid-uPI6OwvJbM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uPI6OwvJbM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uPI6OwvJbM .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uPI6OwvJbM .navbar {
    padding: 0 50px !important;
  }
}
.cid-uPI6OwvJbM .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uPI6OwvJbM .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uPI6OwvJbM .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uPI6OwvJbM .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uPI6OwvJbM .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uPI6OwvJbM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uPI6OwvJbM .dropdown-item.active,
.cid-uPI6OwvJbM .dropdown-item:active {
  background-color: transparent;
}
.cid-uPI6OwvJbM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uPI6OwvJbM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uPI6OwvJbM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uPI6OwvJbM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uPI6OwvJbM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uPI6OwvJbM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uPI6OwvJbM ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uPI6OwvJbM ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uPI6OwvJbM .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPI6OwvJbM .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uPI6OwvJbM .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uPI6OwvJbM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uPI6OwvJbM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uPI6OwvJbM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uPI6OwvJbM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uPI6OwvJbM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uPI6OwvJbM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uPI6OwvJbM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPI6OwvJbM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uPI6OwvJbM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uPI6OwvJbM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uPI6OwvJbM .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uPI6OwvJbM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uPI6OwvJbM .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uPI6OwvJbM .navbar {
    height: 100px;
  }
  .cid-uPI6OwvJbM .navbar.opened {
    height: auto;
  }
  .cid-uPI6OwvJbM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uPI6OwvJbM .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uPI6OwvJbM .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uPI6OwvJbM .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uPI6OxaTmz {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uPI6OxaTmz .row {
  align-items: center;
}
.cid-uPI6OxaTmz .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uPI6OxaTmz .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uPI6OxaTmz .header-text {
    margin-bottom: 20px;
  }
}
.cid-uPI6OxaTmz .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
  font-size: 3.5rem;
}
.cid-uPI6OxaTmz .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uPI6OxaTmz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPI6OxaTmz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPI6OxaTmz .mbr-text,
.cid-uPI6OxaTmz .mbr-section-btn {
  color: #ffffff;
}
.cid-uPI6Oxs0Be {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPI6Oxs0Be .mbr-text {
  color: #353535;
}
.cid-uPI6OxCO9S {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-uPI6OxCO9S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPI6OxCO9S .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uPI6OxQB6S {
  padding-top: 4rem;
  padding-bottom: 0rem;
  position: relative;
  background-color: #ffeaf4;
}
.cid-uPI6OxQB6S .mark_text {
  display: inline-block;
  line-height: 1;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: #ffffff;
}
.cid-uPI6OxQB6S .mbr-section-title {
  margin-bottom: 18px;
  color: #353535;
}
.cid-uPI6OxQB6S .head_title {
  margin: 25px 0 58px;
  text-align: center;
}
.cid-uPI6OxQB6S .mbr-text {
  color: #ffffff;
}
.cid-uPI6OxQB6S .card_title {
  color: #353535;
  line-height: 1.2727em;
  margin-bottom: 0;
}
.cid-uPI6OxQB6S .card_content {
  margin: 26px 0 23px;
}
.cid-uPI6OxQB6S img,
.cid-uPI6OxQB6S .item-img {
  width: 100%;
  object-fit: cover;
  height: 400px;
}
.cid-uPI6OxQB6S .item {
  margin-bottom: 30px;
}
.cid-uPI6OxQB6S .item-wrapper {
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
  overflow: visible;
}
.cid-uPI6OxQB6S .card_text {
  color: #353535;
  margin-top: 4px;
  text-align: center;
}
.cid-uPI6OxQB6S .item-img {
  position: relative;
}
.cid-uPI6OxQB6S .item-img .mbr-section-btn {
  position: absolute;
  margin-left: 3px;
  top: 53%;
  left: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  opacity: 0;
  transition: opacity 0.2s ease-out, top 0.2s ease-out;
  transform: translate(-50%, -50%);
}
.cid-uPI6OxQB6S .item-img:hover .mbr-section-btn {
  top: 50%;
  opacity: 1;
}
.cid-uPI6Oy8jiP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-uPI6Oy8jiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPI6Oy8jiP .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uPI6OypF6J {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uPI6OypF6J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPI6OypF6J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uPI6OypF6J .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uPI6OypF6J img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPI6OypF6J .text-wrapper {
    padding: 2rem;
  }
}
.cid-uPI6OypF6J .mbr-section-title {
  color: #353535;
}
.cid-uPI6OyH47S {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uPI6OyH47S .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uPI6OyH47S .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uPI6OyH47S .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uPI6OyH47S .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uPI6OyH47S .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uPI6OyH47S .social_icons {
  text-align: center;
}
.cid-uPI6OyH47S .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uPI6OyH47S .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uPI6OyH47S .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uPI6OyH47S .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uPI6OyH47S .footer_timework {
    margin-top: 50px;
  }
  .cid-uPI6OyH47S .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uPI6OyH47S .mbr-text,
.cid-uPI6OyH47S .footer_logo,
.cid-uPI6OyH47S .social_icons {
  color: #fafafa;
}
.cid-uPI6OyH47S .copyright {
  margin-top: 2rem;
}
.cid-uVUfwYjGES .navbar-dropdown {
  position: relative !important;
}
.cid-uVUfwYjGES .navbar-dropdown {
  position: absolute !important;
}
.cid-uVUfwYjGES .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVUfwYjGES .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uVUfwYjGES .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uVUfwYjGES .dropdown-item:hover,
.cid-uVUfwYjGES .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uVUfwYjGES .dropdown-item:hover span {
  color: white;
}
.cid-uVUfwYjGES .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uVUfwYjGES .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uVUfwYjGES .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uVUfwYjGES .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uVUfwYjGES .nav-link {
  position: relative;
}
.cid-uVUfwYjGES .container {
  display: flex;
  margin: auto;
}
.cid-uVUfwYjGES .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uVUfwYjGES .dropdown-menu,
.cid-uVUfwYjGES .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uVUfwYjGES .nav-item:focus,
.cid-uVUfwYjGES .nav-link:focus {
  outline: none;
}
.cid-uVUfwYjGES .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uVUfwYjGES .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uVUfwYjGES .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uVUfwYjGES .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uVUfwYjGES .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uVUfwYjGES .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uVUfwYjGES .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uVUfwYjGES .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uVUfwYjGES .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uVUfwYjGES .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uVUfwYjGES .navbar.opened {
  transition: all 0.3s;
}
.cid-uVUfwYjGES .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uVUfwYjGES .navbar .navbar-logo img {
  width: auto;
}
.cid-uVUfwYjGES .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uVUfwYjGES .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uVUfwYjGES .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uVUfwYjGES .navbar.collapsed {
  justify-content: center;
}
.cid-uVUfwYjGES .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uVUfwYjGES .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uVUfwYjGES .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uVUfwYjGES .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uVUfwYjGES .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uVUfwYjGES .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-uVUfwYjGES .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uVUfwYjGES .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uVUfwYjGES .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uVUfwYjGES .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uVUfwYjGES .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uVUfwYjGES .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uVUfwYjGES .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uVUfwYjGES .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-uVUfwYjGES .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uVUfwYjGES .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uVUfwYjGES .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uVUfwYjGES .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uVUfwYjGES .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uVUfwYjGES .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uVUfwYjGES .navbar.navbar-short {
  min-height: 60px;
}
.cid-uVUfwYjGES .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uVUfwYjGES .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uVUfwYjGES .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uVUfwYjGES .navbar {
    padding: 0 50px !important;
  }
}
.cid-uVUfwYjGES .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uVUfwYjGES .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uVUfwYjGES .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uVUfwYjGES .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uVUfwYjGES .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uVUfwYjGES .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uVUfwYjGES .dropdown-item.active,
.cid-uVUfwYjGES .dropdown-item:active {
  background-color: transparent;
}
.cid-uVUfwYjGES .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uVUfwYjGES .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uVUfwYjGES .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uVUfwYjGES .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uVUfwYjGES .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uVUfwYjGES .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uVUfwYjGES ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uVUfwYjGES ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uVUfwYjGES .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uVUfwYjGES .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uVUfwYjGES .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uVUfwYjGES button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uVUfwYjGES button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uVUfwYjGES button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uVUfwYjGES button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uVUfwYjGES button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uVUfwYjGES button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uVUfwYjGES nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVUfwYjGES nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uVUfwYjGES nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uVUfwYjGES nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uVUfwYjGES .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uVUfwYjGES a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uVUfwYjGES .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uVUfwYjGES .navbar {
    height: 100px;
  }
  .cid-uVUfwYjGES .navbar.opened {
    height: auto;
  }
  .cid-uVUfwYjGES .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uVUfwYjGES .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uVUfwYjGES .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uVUfwYjGES .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uVUfwZ41tW {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uVUfwZ41tW .row {
  align-items: center;
}
.cid-uVUfwZ41tW .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uVUfwZ41tW .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uVUfwZ41tW .header-text {
    margin-bottom: 20px;
  }
}
.cid-uVUfwZ41tW .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uVUfwZ41tW .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uVUfwZ41tW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uVUfwZ41tW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uVUfwZ41tW .mbr-text,
.cid-uVUfwZ41tW .mbr-section-btn {
  color: #ffffff;
}
.cid-v1RmIuhCSN {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-v1RmIuhCSN .container {
    max-width: 1400px;
  }
}
@media (max-width: 991px) {
  .cid-v1RmIuhCSN .row {
    width: 100vw;
  }
}
.cid-v1RmIuhCSN .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #d06398;
  margin-bottom: 1rem;
}
.cid-v1RmIuhCSN .card-wrapper {
  margin-top: 2rem;
}
.cid-v1RmIuhCSN .row {
  justify-content: center;
  width: 70vw;
  margin: auto;
}
.cid-v1RmIuhCSN .mbr-section-title {
  color: #14a6c8;
}
#custom-html-96 {
  /* Type valid CSS here */
}
@media screen (max-width: 991px) {
  #custom-html-96 iframe {
    height: 25000px;
  }
}
#custom-html-96 iframe {
  box-shadow: none;
  border: none;
}
.cid-uWd5yE13LH {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-uWd5yE13LH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWd5yE13LH .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uWd5vYZbiP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uWd5vYZbiP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWd5vYZbiP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uWd5vYZbiP .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uWd5vYZbiP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uWd5vYZbiP .text-wrapper {
    padding: 2rem;
  }
}
.cid-uWd5vYZbiP .mbr-section-title {
  color: #353535;
}
.cid-uVUfwZzBVb {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uVUfwZzBVb .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uVUfwZzBVb .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uVUfwZzBVb .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uVUfwZzBVb .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uVUfwZzBVb .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uVUfwZzBVb .social_icons {
  text-align: center;
}
.cid-uVUfwZzBVb .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uVUfwZzBVb .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uVUfwZzBVb .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uVUfwZzBVb .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uVUfwZzBVb .footer_timework {
    margin-top: 50px;
  }
  .cid-uVUfwZzBVb .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uVUfwZzBVb .mbr-text,
.cid-uVUfwZzBVb .footer_logo,
.cid-uVUfwZzBVb .social_icons {
  color: #fafafa;
}
.cid-uVUfwZzBVb .copyright {
  margin-top: 2rem;
}
.cid-uXeiwW5fmF .navbar-dropdown {
  position: relative !important;
}
.cid-uXeiwW5fmF .navbar-dropdown {
  position: absolute !important;
}
.cid-uXeiwW5fmF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uXeiwW5fmF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uXeiwW5fmF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uXeiwW5fmF .dropdown-item:hover,
.cid-uXeiwW5fmF .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uXeiwW5fmF .dropdown-item:hover span {
  color: white;
}
.cid-uXeiwW5fmF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uXeiwW5fmF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uXeiwW5fmF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uXeiwW5fmF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uXeiwW5fmF .nav-link {
  position: relative;
}
.cid-uXeiwW5fmF .container {
  display: flex;
  margin: auto;
}
.cid-uXeiwW5fmF .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uXeiwW5fmF .dropdown-menu,
.cid-uXeiwW5fmF .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uXeiwW5fmF .nav-item:focus,
.cid-uXeiwW5fmF .nav-link:focus {
  outline: none;
}
.cid-uXeiwW5fmF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uXeiwW5fmF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uXeiwW5fmF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uXeiwW5fmF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uXeiwW5fmF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uXeiwW5fmF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uXeiwW5fmF .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uXeiwW5fmF .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uXeiwW5fmF .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uXeiwW5fmF .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uXeiwW5fmF .navbar.opened {
  transition: all 0.3s;
}
.cid-uXeiwW5fmF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uXeiwW5fmF .navbar .navbar-logo img {
  width: auto;
}
.cid-uXeiwW5fmF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uXeiwW5fmF .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uXeiwW5fmF .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uXeiwW5fmF .navbar.collapsed {
  justify-content: center;
}
.cid-uXeiwW5fmF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uXeiwW5fmF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uXeiwW5fmF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uXeiwW5fmF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uXeiwW5fmF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uXeiwW5fmF .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-uXeiwW5fmF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uXeiwW5fmF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uXeiwW5fmF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uXeiwW5fmF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uXeiwW5fmF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uXeiwW5fmF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uXeiwW5fmF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uXeiwW5fmF .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-uXeiwW5fmF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uXeiwW5fmF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uXeiwW5fmF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uXeiwW5fmF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uXeiwW5fmF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uXeiwW5fmF .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uXeiwW5fmF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uXeiwW5fmF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uXeiwW5fmF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uXeiwW5fmF .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uXeiwW5fmF .navbar {
    padding: 0 50px !important;
  }
}
.cid-uXeiwW5fmF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uXeiwW5fmF .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uXeiwW5fmF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uXeiwW5fmF .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uXeiwW5fmF .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uXeiwW5fmF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uXeiwW5fmF .dropdown-item.active,
.cid-uXeiwW5fmF .dropdown-item:active {
  background-color: transparent;
}
.cid-uXeiwW5fmF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uXeiwW5fmF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uXeiwW5fmF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uXeiwW5fmF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uXeiwW5fmF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uXeiwW5fmF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uXeiwW5fmF ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uXeiwW5fmF ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uXeiwW5fmF .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uXeiwW5fmF .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uXeiwW5fmF .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uXeiwW5fmF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uXeiwW5fmF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uXeiwW5fmF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uXeiwW5fmF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uXeiwW5fmF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uXeiwW5fmF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uXeiwW5fmF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXeiwW5fmF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uXeiwW5fmF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uXeiwW5fmF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uXeiwW5fmF .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uXeiwW5fmF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uXeiwW5fmF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uXeiwW5fmF .navbar {
    height: 100px;
  }
  .cid-uXeiwW5fmF .navbar.opened {
    height: auto;
  }
  .cid-uXeiwW5fmF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uXeiwW5fmF .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uXeiwW5fmF .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uXeiwW5fmF .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uXeiwWLzjM {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uXeiwWLzjM .row {
  align-items: center;
}
.cid-uXeiwWLzjM .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uXeiwWLzjM .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uXeiwWLzjM .header-text {
    margin-bottom: 20px;
  }
}
.cid-uXeiwWLzjM .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uXeiwWLzjM .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uXeiwWLzjM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXeiwWLzjM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uXeiwWLzjM .mbr-text,
.cid-uXeiwWLzjM .mbr-section-btn {
  color: #ffffff;
}
.cid-uXeiwXaAXN {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uXeiwXaAXN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXeiwXaAXN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uXeiwXaAXN .container {
    max-width: 1400px;
  }
}
.cid-uXeiwXaAXN .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #14a6c8;
  margin-bottom: 2rem;
}
.cid-uXeiwXaAXN .row {
  justify-content: center;
}
.cid-uXeiwXzCWA {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uXeiwXzCWA .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uXeiwXzCWA .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uXeiwXzCWA .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uXeiwXzCWA .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uXeiwXzCWA .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uXeiwXzCWA .social_icons {
  text-align: center;
}
.cid-uXeiwXzCWA .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uXeiwXzCWA .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uXeiwXzCWA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uXeiwXzCWA .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uXeiwXzCWA .footer_timework {
    margin-top: 50px;
  }
  .cid-uXeiwXzCWA .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uXeiwXzCWA .mbr-text,
.cid-uXeiwXzCWA .footer_logo,
.cid-uXeiwXzCWA .social_icons {
  color: #fafafa;
}
.cid-uXeiwXzCWA .copyright {
  margin-top: 2rem;
}
.cid-uYhVmNqhmg .navbar-dropdown {
  position: relative !important;
}
.cid-uYhVmNqhmg .navbar-dropdown {
  position: absolute !important;
}
.cid-uYhVmNqhmg .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYhVmNqhmg .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYhVmNqhmg .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYhVmNqhmg .dropdown-item:hover,
.cid-uYhVmNqhmg .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uYhVmNqhmg .dropdown-item:hover span {
  color: white;
}
.cid-uYhVmNqhmg .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYhVmNqhmg .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYhVmNqhmg .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYhVmNqhmg .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYhVmNqhmg .nav-link {
  position: relative;
}
.cid-uYhVmNqhmg .container {
  display: flex;
  margin: auto;
}
.cid-uYhVmNqhmg .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYhVmNqhmg .dropdown-menu,
.cid-uYhVmNqhmg .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uYhVmNqhmg .nav-item:focus,
.cid-uYhVmNqhmg .nav-link:focus {
  outline: none;
}
.cid-uYhVmNqhmg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYhVmNqhmg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYhVmNqhmg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYhVmNqhmg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYhVmNqhmg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYhVmNqhmg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYhVmNqhmg .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uYhVmNqhmg .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uYhVmNqhmg .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uYhVmNqhmg .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uYhVmNqhmg .navbar.opened {
  transition: all 0.3s;
}
.cid-uYhVmNqhmg .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYhVmNqhmg .navbar .navbar-logo img {
  width: auto;
}
.cid-uYhVmNqhmg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uYhVmNqhmg .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uYhVmNqhmg .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uYhVmNqhmg .navbar.collapsed {
  justify-content: center;
}
.cid-uYhVmNqhmg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYhVmNqhmg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYhVmNqhmg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uYhVmNqhmg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYhVmNqhmg .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYhVmNqhmg .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-uYhVmNqhmg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uYhVmNqhmg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYhVmNqhmg .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYhVmNqhmg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYhVmNqhmg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYhVmNqhmg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYhVmNqhmg .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYhVmNqhmg .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-uYhVmNqhmg .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYhVmNqhmg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYhVmNqhmg .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYhVmNqhmg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYhVmNqhmg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYhVmNqhmg .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uYhVmNqhmg .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYhVmNqhmg .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYhVmNqhmg .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uYhVmNqhmg .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uYhVmNqhmg .navbar {
    padding: 0 50px !important;
  }
}
.cid-uYhVmNqhmg .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uYhVmNqhmg .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uYhVmNqhmg .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uYhVmNqhmg .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uYhVmNqhmg .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uYhVmNqhmg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYhVmNqhmg .dropdown-item.active,
.cid-uYhVmNqhmg .dropdown-item:active {
  background-color: transparent;
}
.cid-uYhVmNqhmg .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYhVmNqhmg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYhVmNqhmg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYhVmNqhmg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uYhVmNqhmg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYhVmNqhmg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYhVmNqhmg ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uYhVmNqhmg ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uYhVmNqhmg .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYhVmNqhmg .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uYhVmNqhmg .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uYhVmNqhmg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uYhVmNqhmg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYhVmNqhmg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYhVmNqhmg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uYhVmNqhmg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uYhVmNqhmg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uYhVmNqhmg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYhVmNqhmg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uYhVmNqhmg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uYhVmNqhmg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYhVmNqhmg .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uYhVmNqhmg a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYhVmNqhmg .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYhVmNqhmg .navbar {
    height: 100px;
  }
  .cid-uYhVmNqhmg .navbar.opened {
    height: auto;
  }
  .cid-uYhVmNqhmg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYhVmNqhmg .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uYhVmNqhmg .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uYhVmNqhmg .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uYhVmOjDwJ {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uYhVmOjDwJ .row {
  align-items: center;
}
.cid-uYhVmOjDwJ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uYhVmOjDwJ .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uYhVmOjDwJ .header-text {
    margin-bottom: 20px;
  }
}
.cid-uYhVmOjDwJ .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uYhVmOjDwJ .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uYhVmOjDwJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYhVmOjDwJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYhVmOjDwJ .mbr-text,
.cid-uYhVmOjDwJ .mbr-section-btn {
  color: #ffffff;
}
#custom-html-9j {
  /* Type valid CSS here */
}
@media screen (max-width: 991px) {
  #custom-html-9j iframe {
    height: 25000px;
  }
}
#custom-html-9j iframe {
  box-shadow: none;
  border: none;
}
.cid-uYhVmOEfPj {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-uYhVmOEfPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYhVmOEfPj .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uYhVmOViLz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uYhVmOViLz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYhVmOViLz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYhVmOViLz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYhVmOViLz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYhVmOViLz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYhVmOViLz .mbr-section-title {
  color: #353535;
}
.cid-uYhVmPdEom {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uYhVmPdEom .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uYhVmPdEom .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uYhVmPdEom .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uYhVmPdEom .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uYhVmPdEom .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uYhVmPdEom .social_icons {
  text-align: center;
}
.cid-uYhVmPdEom .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uYhVmPdEom .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uYhVmPdEom .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uYhVmPdEom .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uYhVmPdEom .footer_timework {
    margin-top: 50px;
  }
  .cid-uYhVmPdEom .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uYhVmPdEom .mbr-text,
.cid-uYhVmPdEom .footer_logo,
.cid-uYhVmPdEom .social_icons {
  color: #fafafa;
}
.cid-uYhVmPdEom .copyright {
  margin-top: 2rem;
}
.cid-uYtWlZ7nHe .navbar-dropdown {
  position: relative !important;
}
.cid-uYtWlZ7nHe .navbar-dropdown {
  position: absolute !important;
}
.cid-uYtWlZ7nHe .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYtWlZ7nHe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uYtWlZ7nHe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uYtWlZ7nHe .dropdown-item:hover,
.cid-uYtWlZ7nHe .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uYtWlZ7nHe .dropdown-item:hover span {
  color: white;
}
.cid-uYtWlZ7nHe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uYtWlZ7nHe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uYtWlZ7nHe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uYtWlZ7nHe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uYtWlZ7nHe .nav-link {
  position: relative;
}
.cid-uYtWlZ7nHe .container {
  display: flex;
  margin: auto;
}
.cid-uYtWlZ7nHe .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uYtWlZ7nHe .dropdown-menu,
.cid-uYtWlZ7nHe .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uYtWlZ7nHe .nav-item:focus,
.cid-uYtWlZ7nHe .nav-link:focus {
  outline: none;
}
.cid-uYtWlZ7nHe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uYtWlZ7nHe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uYtWlZ7nHe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uYtWlZ7nHe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uYtWlZ7nHe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uYtWlZ7nHe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uYtWlZ7nHe .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uYtWlZ7nHe .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uYtWlZ7nHe .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uYtWlZ7nHe .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uYtWlZ7nHe .navbar.opened {
  transition: all 0.3s;
}
.cid-uYtWlZ7nHe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uYtWlZ7nHe .navbar .navbar-logo img {
  width: auto;
}
.cid-uYtWlZ7nHe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uYtWlZ7nHe .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uYtWlZ7nHe .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uYtWlZ7nHe .navbar.collapsed {
  justify-content: center;
}
.cid-uYtWlZ7nHe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uYtWlZ7nHe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uYtWlZ7nHe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uYtWlZ7nHe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uYtWlZ7nHe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uYtWlZ7nHe .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-uYtWlZ7nHe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uYtWlZ7nHe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uYtWlZ7nHe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uYtWlZ7nHe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uYtWlZ7nHe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uYtWlZ7nHe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uYtWlZ7nHe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uYtWlZ7nHe .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-uYtWlZ7nHe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uYtWlZ7nHe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uYtWlZ7nHe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uYtWlZ7nHe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uYtWlZ7nHe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uYtWlZ7nHe .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uYtWlZ7nHe .navbar.navbar-short {
  min-height: 60px;
}
.cid-uYtWlZ7nHe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uYtWlZ7nHe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uYtWlZ7nHe .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uYtWlZ7nHe .navbar {
    padding: 0 50px !important;
  }
}
.cid-uYtWlZ7nHe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uYtWlZ7nHe .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uYtWlZ7nHe .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uYtWlZ7nHe .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uYtWlZ7nHe .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uYtWlZ7nHe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uYtWlZ7nHe .dropdown-item.active,
.cid-uYtWlZ7nHe .dropdown-item:active {
  background-color: transparent;
}
.cid-uYtWlZ7nHe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uYtWlZ7nHe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uYtWlZ7nHe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uYtWlZ7nHe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uYtWlZ7nHe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uYtWlZ7nHe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uYtWlZ7nHe ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uYtWlZ7nHe ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uYtWlZ7nHe .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uYtWlZ7nHe .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uYtWlZ7nHe .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uYtWlZ7nHe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uYtWlZ7nHe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uYtWlZ7nHe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uYtWlZ7nHe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uYtWlZ7nHe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uYtWlZ7nHe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uYtWlZ7nHe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYtWlZ7nHe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uYtWlZ7nHe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uYtWlZ7nHe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uYtWlZ7nHe .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uYtWlZ7nHe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYtWlZ7nHe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uYtWlZ7nHe .navbar {
    height: 100px;
  }
  .cid-uYtWlZ7nHe .navbar.opened {
    height: auto;
  }
  .cid-uYtWlZ7nHe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYtWlZ7nHe .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uYtWlZ7nHe .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uYtWlZ7nHe .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uYtWlZRDkJ {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uYtWlZRDkJ .row {
  align-items: center;
}
.cid-uYtWlZRDkJ .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uYtWlZRDkJ .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uYtWlZRDkJ .header-text {
    margin-bottom: 20px;
  }
}
.cid-uYtWlZRDkJ .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uYtWlZRDkJ .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uYtWlZRDkJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYtWlZRDkJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYtWlZRDkJ .mbr-text,
.cid-uYtWlZRDkJ .mbr-section-btn {
  color: #ffffff;
}
.cid-uYtWm0evvU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uYtWm0evvU .mbr-text {
  color: #353535;
}
.cid-uYtWm0tod7 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-uYtWm0tod7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYtWm0tod7 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uYu07bWM94 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffeaf4;
}
.cid-uYu07bWM94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYu07bWM94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYu07bWM94 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uYu07bWM94 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uYu07bWM94 .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uYu07bWM94 .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uYu07bWM94 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uYu07bWM94 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uYu07bWM94 .carousel-control,
.cid-uYu07bWM94 .close {
  background: #1b1b1b;
}
.cid-uYu07bWM94 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uYu07bWM94 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uYu07bWM94 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uYu07bWM94 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uYu07bWM94 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uYu07bWM94 .close::before {
  content: '\e91a';
}
.cid-uYu07bWM94 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uYu07bWM94 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uYu07bWM94 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYu07bWM94 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYu07bWM94 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uYu07bWM94 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uYu07bWM94 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uYu07bWM94 .carousel-indicators li.active,
.cid-uYu07bWM94 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uYu07bWM94 .carousel-indicators li::after,
.cid-uYu07bWM94 .carousel-indicators li::before {
  content: none;
}
.cid-uYu07bWM94 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uYu07bWM94 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uYu07bWM94 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uYu07bWM94 .carousel-indicators {
    display: none;
  }
}
.cid-uYu07bWM94 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uYu07bWM94 .carousel-inner > .active {
  display: block;
}
.cid-uYu07bWM94 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYu07bWM94 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uYu07bWM94 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uYu07bWM94 .carousel-control,
  .cid-uYu07bWM94 .carousel-indicators,
  .cid-uYu07bWM94 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uYu07bWM94 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uYu07bWM94 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uYu07bWM94 .carousel-indicators .active,
.cid-uYu07bWM94 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uYu07bWM94 .carousel-indicators .active {
  background: #fff;
}
.cid-uYu07bWM94 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uYu07bWM94 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uYu07bWM94 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uYu07bWM94 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uYu07bWM94 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uYu07bWM94 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uYu07bWM94 .carousel {
  width: 100%;
}
.cid-uYu07bWM94 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uYu07bWM94 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uYu07bWM94 .modal.fade .modal-dialog,
.cid-uYu07bWM94 .modal.in .modal-dialog {
  transform: none;
}
.cid-uYu07bWM94 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uYu07bWM94 H6 {
  text-align: center;
}
.cid-uYu07bWM94 H2 {
  color: #353535;
}
.cid-uYtWm152iq {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-pink3.svg");
}
.cid-uYtWm152iq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYtWm152iq .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uYu1CsgGKO {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uYu1CsgGKO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYu1CsgGKO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYu1CsgGKO .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uYu1CsgGKO .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uYu1CsgGKO .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-uYu1CsgGKO .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-uYu1CsgGKO .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uYu1CsgGKO .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uYu1CsgGKO .carousel-control,
.cid-uYu1CsgGKO .close {
  background: #1b1b1b;
}
.cid-uYu1CsgGKO .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uYu1CsgGKO .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uYu1CsgGKO .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uYu1CsgGKO .carousel-control-next span {
  margin-left: 5px;
}
.cid-uYu1CsgGKO .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uYu1CsgGKO .close::before {
  content: '\e91a';
}
.cid-uYu1CsgGKO .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uYu1CsgGKO .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uYu1CsgGKO .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYu1CsgGKO .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uYu1CsgGKO .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uYu1CsgGKO .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uYu1CsgGKO .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uYu1CsgGKO .carousel-indicators li.active,
.cid-uYu1CsgGKO .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uYu1CsgGKO .carousel-indicators li::after,
.cid-uYu1CsgGKO .carousel-indicators li::before {
  content: none;
}
.cid-uYu1CsgGKO .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uYu1CsgGKO .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uYu1CsgGKO .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uYu1CsgGKO .carousel-indicators {
    display: none;
  }
}
.cid-uYu1CsgGKO .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uYu1CsgGKO .carousel-inner > .active {
  display: block;
}
.cid-uYu1CsgGKO .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYu1CsgGKO .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uYu1CsgGKO .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uYu1CsgGKO .carousel-control,
  .cid-uYu1CsgGKO .carousel-indicators,
  .cid-uYu1CsgGKO .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uYu1CsgGKO .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uYu1CsgGKO .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uYu1CsgGKO .carousel-indicators .active,
.cid-uYu1CsgGKO .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uYu1CsgGKO .carousel-indicators .active {
  background: #fff;
}
.cid-uYu1CsgGKO .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uYu1CsgGKO .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uYu1CsgGKO .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uYu1CsgGKO .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uYu1CsgGKO .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uYu1CsgGKO .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uYu1CsgGKO .carousel {
  width: 100%;
}
.cid-uYu1CsgGKO .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uYu1CsgGKO .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uYu1CsgGKO .modal.fade .modal-dialog,
.cid-uYu1CsgGKO .modal.in .modal-dialog {
  transform: none;
}
.cid-uYu1CsgGKO .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uYu1CsgGKO H6 {
  text-align: center;
}
.cid-uYu1CsgGKO H2 {
  color: #353535;
}
.cid-uYtWm2EtXv {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uYu3sqelWP {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-blue2.svg");
}
.cid-uYu3sqelWP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYu3sqelWP .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uYu3zXV5OG {
  padding-top: 2rem;
  padding-bottom: 4rem;
  background-color: #b7f1ff;
}
.cid-uYu3zXV5OG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYu3zXV5OG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYu3zXV5OG .mbr-section-title {
  color: #14a6c8;
}
.cid-uYu3zXV5OG .mbr-text,
.cid-uYu3zXV5OG .mbr-section-btn {
  color: #353535;
}
.cid-uYu3Y0yBE4 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-bluegray-lower.svg");
}
.cid-uYu3Y0yBE4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYu3Y0yBE4 .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uYtWm3d4Xc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fafafa;
}
.cid-uYtWm3d4Xc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYtWm3d4Xc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uYtWm3d4Xc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uYtWm3d4Xc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uYtWm3d4Xc .text-wrapper {
    padding: 2rem;
  }
}
.cid-uYtWm3d4Xc .mbr-section-title {
  color: #353535;
}
.cid-uYtWm3xTR0 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uYtWm3xTR0 .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uYtWm3xTR0 .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uYtWm3xTR0 .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uYtWm3xTR0 .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uYtWm3xTR0 .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uYtWm3xTR0 .social_icons {
  text-align: center;
}
.cid-uYtWm3xTR0 .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uYtWm3xTR0 .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uYtWm3xTR0 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uYtWm3xTR0 .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uYtWm3xTR0 .footer_timework {
    margin-top: 50px;
  }
  .cid-uYtWm3xTR0 .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uYtWm3xTR0 .mbr-text,
.cid-uYtWm3xTR0 .footer_logo,
.cid-uYtWm3xTR0 .social_icons {
  color: #fafafa;
}
.cid-uYtWm3xTR0 .copyright {
  margin-top: 2rem;
}
.cid-uZB5OU9Ywl .navbar-dropdown {
  position: relative !important;
}
.cid-uZB5OU9Ywl .navbar-dropdown {
  position: absolute !important;
}
.cid-uZB5OU9Ywl .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZB5OU9Ywl .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uZB5OU9Ywl .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uZB5OU9Ywl .dropdown-item:hover,
.cid-uZB5OU9Ywl .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-uZB5OU9Ywl .dropdown-item:hover span {
  color: white;
}
.cid-uZB5OU9Ywl .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uZB5OU9Ywl .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uZB5OU9Ywl .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-uZB5OU9Ywl .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uZB5OU9Ywl .nav-link {
  position: relative;
}
.cid-uZB5OU9Ywl .container {
  display: flex;
  margin: auto;
}
.cid-uZB5OU9Ywl .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uZB5OU9Ywl .dropdown-menu,
.cid-uZB5OU9Ywl .navbar.opened {
  background: #14a6c8 !important;
}
.cid-uZB5OU9Ywl .nav-item:focus,
.cid-uZB5OU9Ywl .nav-link:focus {
  outline: none;
}
.cid-uZB5OU9Ywl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uZB5OU9Ywl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uZB5OU9Ywl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uZB5OU9Ywl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uZB5OU9Ywl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uZB5OU9Ywl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uZB5OU9Ywl .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uZB5OU9Ywl .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-uZB5OU9Ywl .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-uZB5OU9Ywl .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-uZB5OU9Ywl .navbar.opened {
  transition: all 0.3s;
}
.cid-uZB5OU9Ywl .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uZB5OU9Ywl .navbar .navbar-logo img {
  width: auto;
}
.cid-uZB5OU9Ywl .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-uZB5OU9Ywl .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-uZB5OU9Ywl .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-uZB5OU9Ywl .navbar.collapsed {
  justify-content: center;
}
.cid-uZB5OU9Ywl .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uZB5OU9Ywl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uZB5OU9Ywl .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-uZB5OU9Ywl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uZB5OU9Ywl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uZB5OU9Ywl .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-uZB5OU9Ywl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-uZB5OU9Ywl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uZB5OU9Ywl .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uZB5OU9Ywl .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uZB5OU9Ywl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uZB5OU9Ywl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uZB5OU9Ywl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uZB5OU9Ywl .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-uZB5OU9Ywl .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uZB5OU9Ywl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uZB5OU9Ywl .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uZB5OU9Ywl .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uZB5OU9Ywl .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uZB5OU9Ywl .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uZB5OU9Ywl .navbar.navbar-short {
  min-height: 60px;
}
.cid-uZB5OU9Ywl .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uZB5OU9Ywl .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-uZB5OU9Ywl .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-uZB5OU9Ywl .navbar {
    padding: 0 50px !important;
  }
}
.cid-uZB5OU9Ywl .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-uZB5OU9Ywl .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-uZB5OU9Ywl .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-uZB5OU9Ywl .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-uZB5OU9Ywl .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-uZB5OU9Ywl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uZB5OU9Ywl .dropdown-item.active,
.cid-uZB5OU9Ywl .dropdown-item:active {
  background-color: transparent;
}
.cid-uZB5OU9Ywl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uZB5OU9Ywl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uZB5OU9Ywl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uZB5OU9Ywl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-uZB5OU9Ywl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uZB5OU9Ywl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uZB5OU9Ywl ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-uZB5OU9Ywl ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-uZB5OU9Ywl .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uZB5OU9Ywl .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-uZB5OU9Ywl .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-uZB5OU9Ywl button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-uZB5OU9Ywl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uZB5OU9Ywl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uZB5OU9Ywl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uZB5OU9Ywl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-uZB5OU9Ywl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-uZB5OU9Ywl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZB5OU9Ywl nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uZB5OU9Ywl nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-uZB5OU9Ywl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uZB5OU9Ywl .navbar-dropdown {
  padding: 0 1rem;
}
.cid-uZB5OU9Ywl a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uZB5OU9Ywl .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uZB5OU9Ywl .navbar {
    height: 100px;
  }
  .cid-uZB5OU9Ywl .navbar.opened {
    height: auto;
  }
  .cid-uZB5OU9Ywl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uZB5OU9Ywl .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-uZB5OU9Ywl .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-uZB5OU9Ywl .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-uZB5OUPYLn {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/bbj-services-header.svg");
}
.cid-uZB5OUPYLn .row {
  align-items: center;
}
.cid-uZB5OUPYLn .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-uZB5OUPYLn .header-text {
  width: 100%;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-uZB5OUPYLn .header-text {
    margin-bottom: 20px;
  }
}
.cid-uZB5OUPYLn .mbr-section-title {
  width: 100%;
  color: #ffffff;
  margin-bottom: 8px;
}
.cid-uZB5OUPYLn .mbr-text {
  color: #555555;
  width: 100%;
  margin-bottom: 0;
}
.cid-uZB5OUPYLn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OUPYLn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZB5OUPYLn .mbr-text,
.cid-uZB5OUPYLn .mbr-section-btn {
  color: #ffffff;
}
.cid-uZB5OV9P9I {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZB5OV9P9I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OV9P9I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZB5OV9P9I .mbr-section-title {
  color: #353535;
  font-size: 2rem;
  font-weight: 300;
}
@media (max-width: 768px) {
  .cid-uZB5OV9P9I .mbr-section-title {
    line-height: 1.5;
  }
}
.cid-uZB6B7BFe5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uZB6B7BFe5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB6B7BFe5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-uZB6B7BFe5 .container {
    max-width: 1400px;
  }
}
.cid-uZB6B7BFe5 .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #d06398;
  margin-bottom: 2rem;
}
.cid-uZB6B7BFe5 .row {
  justify-content: center;
}
.cid-uZB6B7BFe5 .card-title,
.cid-uZB6B7BFe5 .iconfont-wrapper {
  color: #14a6c8;
}
.cid-uZB5OVtw1j {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray-upper.svg");
}
.cid-uZB5OVtw1j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OVtw1j .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uZB5OVNhJD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uZB5OVNhJD .why-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 991px) {
  .cid-uZB5OVNhJD .why-list {
    flex-direction: column;
  }
}
.cid-uZB5OVNhJD .counter-container ul {
  margin: 0 0.5rem;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-uZB5OVNhJD .counter-container ul li {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-uZB5OVNhJD .counter-container ul li:before {
  position: absolute;
  top: -8px;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #14a6c8;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "+";
}
.cid-uZB5OVNhJD .mbr-section-title {
  text-align: center;
  color: #252434;
  padding: 1rem 0 3rem;
  margin: 0 !important;
}
.cid-uZB5OVNhJD .mbr-text {
  color: #353535;
}
.cid-uZB5OVNhJD .mbr-section-subtitle {
  text-align: center;
  margin-bottom: 2rem;
}
.cid-uZB5OW4fZl {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-gray.svg");
}
.cid-uZB5OW4fZl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OW4fZl .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uZB5OWm7w3 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uZB5OWm7w3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OWm7w3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZB5OWm7w3 .mbr-section-head {
  margin-bottom: 32px;
}
.cid-uZB5OWm7w3 .mbr-section-title {
  color: #24262b;
  text-align: center;
}
.cid-uZB5OWm7w3 .mbr-section-subtitle {
  margin-top: 16px;
  color: #24262b;
  text-align: center;
}
.cid-uZB5OWm7w3 .items-row {
  row-gap: 32px;
}
.cid-uZB5OWm7w3 .item-wrapper {
  position: relative;
  overflow: hidden;
}
.cid-uZB5OWm7w3 .item-wrapper img {
  width: 100%;
  height: calc(50px * 6);
  object-fit: cover;
  transition: all 0.3s;
}
.cid-uZB5OWm7w3 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  z-index: 3;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  opacity: 0;
  color: #24262b;
  transform: translateX(-50%) translateY(-50%);
  background-color: #FFFFFF;
  transition: 0.3s;
}
.cid-uZB5OWm7w3 .item-wrapper .img-overlay {
  position: absolute;
  pointer-events: none;
  transition: all 0.3s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #33363b;
  opacity: 0;
  z-index: 2;
}
.cid-uZB5OWm7w3 .item-wrapper:hover img {
  transform: scale(1.05);
}
.cid-uZB5OWm7w3 .item-wrapper:hover .icon-wrapper {
  opacity: 1;
}
.cid-uZB5OWm7w3 .item-wrapper:hover .img-overlay {
  opacity: 0.3;
}
.cid-uZB5OWm7w3 .carousel-control,
.cid-uZB5OWm7w3 .close {
  background: #1b1b1b;
}
.cid-uZB5OWm7w3 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uZB5OWm7w3 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uZB5OWm7w3 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uZB5OWm7w3 .carousel-control-next span {
  margin-left: 5px;
}
.cid-uZB5OWm7w3 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uZB5OWm7w3 .close::before {
  content: '\e91a';
}
.cid-uZB5OWm7w3 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uZB5OWm7w3 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uZB5OWm7w3 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZB5OWm7w3 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uZB5OWm7w3 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uZB5OWm7w3 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uZB5OWm7w3 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uZB5OWm7w3 .carousel-indicators li.active,
.cid-uZB5OWm7w3 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uZB5OWm7w3 .carousel-indicators li::after,
.cid-uZB5OWm7w3 .carousel-indicators li::before {
  content: none;
}
.cid-uZB5OWm7w3 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uZB5OWm7w3 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uZB5OWm7w3 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uZB5OWm7w3 .carousel-indicators {
    display: none;
  }
}
.cid-uZB5OWm7w3 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uZB5OWm7w3 .carousel-inner > .active {
  display: block;
}
.cid-uZB5OWm7w3 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uZB5OWm7w3 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uZB5OWm7w3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uZB5OWm7w3 .carousel-control,
  .cid-uZB5OWm7w3 .carousel-indicators,
  .cid-uZB5OWm7w3 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uZB5OWm7w3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uZB5OWm7w3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uZB5OWm7w3 .carousel-indicators .active,
.cid-uZB5OWm7w3 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uZB5OWm7w3 .carousel-indicators .active {
  background: #fff;
}
.cid-uZB5OWm7w3 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uZB5OWm7w3 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uZB5OWm7w3 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uZB5OWm7w3 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uZB5OWm7w3 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uZB5OWm7w3 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uZB5OWm7w3 .carousel {
  width: 100%;
}
.cid-uZB5OWm7w3 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uZB5OWm7w3 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uZB5OWm7w3 .modal.fade .modal-dialog,
.cid-uZB5OWm7w3 .modal.in .modal-dialog {
  transform: none;
}
.cid-uZB5OWm7w3 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uZB5OWm7w3 H6 {
  text-align: center;
}
.cid-uZB5OX0sUC {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uZB5OX0sUC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OX0sUC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uZB5OX0sUC .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uZB5OX0sUC .container {
    padding: 0 12px;
  }
}
.cid-uZB5OX0sUC .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uZB5OX0sUC .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uZB5OX0sUC .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uZB5OX0sUC .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #ff68b1;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uZB5OX0sUC .mbr-section-title {
  color: #222222;
}
.cid-uZB5OXmkWh {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uZB5OXmkWh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OXmkWh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uZB5OXmkWh .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uZB5OXmkWh .container {
    padding: 0 12px;
  }
}
.cid-uZB5OXmkWh .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uZB5OXmkWh .list {
  margin: 0;
  list-style-type: none;
  padding-left: 0;
  color: #222222;
}
.cid-uZB5OXmkWh .list li {
  margin-bottom: 1rem;
  position: relative;
  padding-left: 36px;
}
.cid-uZB5OXmkWh .list li:before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #14a6c8;
  width: 15px;
  height: 15px;
  font-size: 14px;
  border-radius: 50%;
}
.cid-uZB5OXmkWh .mbr-section-title {
  color: #222222;
}
.cid-uZB5OXJPTH {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/bbj-devider-1.webp");
}
.cid-uZB5OXJPTH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OXJPTH .mbr-fallback-image {
  background-size: 1920px;
  background-position: center;
  max-width: 1920px;
  position: absolute;
  top: 0;
}
.cid-uZB5OY97G5 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffeaf4;
}
.cid-uZB5OY97G5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uZB5OY97G5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uZB5OY97G5 h1 {
  font-weight: 500;
  line-height: 1;
}
.cid-uZB5OY97G5 .mbr-section-subtitle {
  background: white;
  color: #ffffff;
  width: fit-content;
  border-radius: 2rem;
  padding: 5px 1rem;
  text-align: left;
}
.cid-uZB5OY97G5 .subtitle-wrap {
  display: inline-flex;
  border-radius: 2rem;
  padding: 0.5rem;
  padding-bottom: 0;
  background: #14a6c8;
  flex-direction: row;
  width: fit-content;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-uZB5OY97G5 .subtitle-wrap .mbr-iconfont {
  padding: 0 15px;
  padding-bottom: 8px;
  margin: 0;
  color: #d06398;
  font-size: 1.5rem;
}
.cid-uZB5OY97G5 .mbr-section-title {
  color: #353535;
  text-align: center;
}
.cid-uZB5OY97G5 .mbr-text,
.cid-uZB5OY97G5 .mbr-section-btn {
  color: #353535;
  text-align: center;
}
.cid-uZB5OY97G5 .mbr-section-subtitle,
.cid-uZB5OY97G5 .align-wrapper {
  color: #04492e;
}
.cid-uZB5OY97G5 .btn-secondary-outline {
  font-size: 3rem;
}
@media (max-width: 768px) {
  .cid-uZB5OY97G5 .btn-secondary-outline {
    font-size: 2rem;
  }
}
.cid-uZB5OYwdbE {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-uZB5OYwdbE .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-uZB5OYwdbE .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-uZB5OYwdbE .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-uZB5OYwdbE .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-uZB5OYwdbE .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-uZB5OYwdbE .social_icons {
  text-align: center;
}
.cid-uZB5OYwdbE .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-uZB5OYwdbE .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uZB5OYwdbE .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uZB5OYwdbE .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-uZB5OYwdbE .footer_timework {
    margin-top: 50px;
  }
  .cid-uZB5OYwdbE .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-uZB5OYwdbE .mbr-text,
.cid-uZB5OYwdbE .footer_logo,
.cid-uZB5OYwdbE .social_icons {
  color: #fafafa;
}
.cid-uZB5OYwdbE .copyright {
  margin-top: 2rem;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: relative !important;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  position: absolute !important;
}
.cid-tcjGl8SoG9 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tcjGl8SoG9 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tcjGl8SoG9 .dropdown-item:hover,
.cid-tcjGl8SoG9 .dropdown-item:focus {
  background: #14a6c8 !important;
  color: white !important;
}
.cid-tcjGl8SoG9 .dropdown-item:hover span {
  color: white;
}
.cid-tcjGl8SoG9 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tcjGl8SoG9 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tcjGl8SoG9 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tcjGl8SoG9 .nav-link {
  position: relative;
}
.cid-tcjGl8SoG9 .container {
  display: flex;
  margin: auto;
}
.cid-tcjGl8SoG9 .iconfont-wrapper {
  color: #0057fc !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown-menu,
.cid-tcjGl8SoG9 .navbar.opened {
  background: #14a6c8 !important;
}
.cid-tcjGl8SoG9 .nav-item:focus,
.cid-tcjGl8SoG9 .nav-link:focus {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tcjGl8SoG9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tcjGl8SoG9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tcjGl8SoG9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tcjGl8SoG9 .container-fluid {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .container-fluid {
    justify-content: flex-start;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .container-fluid {
    flex-wrap: nowrap;
  }
}
.cid-tcjGl8SoG9 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none;
  background: rgba(20, 166, 200, 0);
  box-shadow: none;
  padding: 0 12px !important;
}
.cid-tcjGl8SoG9 .navbar.opened {
  transition: all 0.3s;
}
.cid-tcjGl8SoG9 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tcjGl8SoG9 .navbar .navbar-logo img {
  width: auto;
}
.cid-tcjGl8SoG9 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    order: 10;
  }
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar .navbar-collapse {
    width: 60%;
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed {
  justify-content: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tcjGl8SoG9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tcjGl8SoG9 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tcjGl8SoG9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tcjGl8SoG9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tcjGl8SoG9 .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-tcjGl8SoG9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tcjGl8SoG9 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tcjGl8SoG9 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tcjGl8SoG9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tcjGl8SoG9 .navbar .icons-menu {
    padding-left: 0;
    padding-right: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tcjGl8SoG9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tcjGl8SoG9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
@media (min-width: 768px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 28px !important;
  }
}
@media (min-width: 1200px) {
  .cid-tcjGl8SoG9 .navbar {
    padding: 0 50px !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 30px !important;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-brand {
    width: 20%;
    padding: 10px 0 !important;
  }
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  display: flex;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .iconfont-wrapper {
  padding: 0;
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-caption .mbr-iconfont {
  order: 2;
  padding-left: 5px;
  transform: rotate(45deg);
}
.cid-tcjGl8SoG9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tcjGl8SoG9 .dropdown-item.active,
.cid-tcjGl8SoG9 .dropdown-item:active {
  background-color: transparent;
}
.cid-tcjGl8SoG9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tcjGl8SoG9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #14a6c8;
}
.cid-tcjGl8SoG9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tcjGl8SoG9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tcjGl8SoG9 ul.navbar-nav {
  flex-wrap: wrap;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 ul.navbar-nav {
    margin: 0 auto;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tcjGl8SoG9 .navbar-buttons {
    text-align: right;
    width: 20%;
    flex-shrink: 0;
  }
}
.cid-tcjGl8SoG9 .navbar-buttons .btn {
  box-shadow: none;
  padding: 11px 32px !important;
}
.cid-tcjGl8SoG9 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 14px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  margin: 10px 0;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 3px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
  display: none;
}
.cid-tcjGl8SoG9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 11px;
  left: 0;
  width: 20px;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
  display: block;
}
.cid-tcjGl8SoG9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tcjGl8SoG9 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-tcjGl8SoG9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tcjGl8SoG9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tcjGl8SoG9 .navbar {
    height: 100px;
  }
  .cid-tcjGl8SoG9 .navbar.opened {
    height: auto;
  }
  .cid-tcjGl8SoG9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tcjGl8SoG9 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 0.667em 1.25rem !important;
  font-weight: 500;
}
.cid-tcjGl8SoG9 .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-tcjGl8SoG9 .nav-link:before {
  content: '';
  position: absolute;
  color: #d06398;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-v1d9J0dkE9 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-v1d9J0dkE9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v1d9J0dkE9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v1d9J0dkE9 .mbr-section-title {
  color: #d06398;
}
.cid-v1d9J0dkE9 .mbr-text,
.cid-v1d9J0dkE9 .mbr-section-btn {
  color: #353535;
}
.cid-tclEZXLxGL {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/footer-image.webp");
}
.cid-tclEZXLxGL .mbr-section-title {
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo {
  margin-bottom: 2rem;
  text-align: center;
}
.cid-tclEZXLxGL .footer_logo img {
  width: auto;
  object-fit: cover;
  display: inline-block;
}
.cid-tclEZXLxGL .mbr-text {
  margin: 10px 0;
  text-align: center;
}
.cid-tclEZXLxGL .footer_info {
  margin: 10px 0;
  text-align: center;
  color: #ffffff;
}
.cid-tclEZXLxGL .social_icons {
  text-align: center;
}
.cid-tclEZXLxGL .icons_footer {
  margin-top: 35px;
  padding: 0;
  display: inline-flex;
}
.cid-tclEZXLxGL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 17px;
  margin-right: 25px;
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tclEZXLxGL .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tclEZXLxGL .iconfont-wrapper:hover {
  background-color: #f2f2f2;
}
@media (max-width: 767px) {
  .cid-tclEZXLxGL .footer_timework {
    margin-top: 50px;
  }
  .cid-tclEZXLxGL .footer_contact {
    margin-bottom: 50px;
  }
}
.cid-tclEZXLxGL .mbr-text,
.cid-tclEZXLxGL .footer_logo,
.cid-tclEZXLxGL .social_icons {
  color: #fafafa;
}
.cid-tclEZXLxGL .copyright {
  margin-top: 2rem;
}
