body {
  background-color: #fefae6;
}
body {
  font-family: Onest;
}
.display-1 {
  font-family: 'Onest', sans-serif;
  font-size: 5rem;
  line-height: 88px;
  letter-spacing: -0.01em;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Onest', sans-serif;
  font-size: 3.125rem;
  line-height: 1.16;
  letter-spacing: -0.01em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.90625rem;
}
.display-4 {
  font-family: 'Onest', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.40625rem;
}
.display-5 {
  font-family: 'Onest', sans-serif;
  font-size: 2.2rem;
  line-height: 1.228;
}
.display-5 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-7 {
  font-family: 'Onest', sans-serif;
  font-size: 1.56rem;
  line-height: 34px;
}
.display-7 > .mbr-iconfont {
  font-size: 1.95rem;
}
/* ---- 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: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.5rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.248rem;
    font-size: calc( 1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.196rem + (1.56 - 1.196) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #4d5e85 !important;
}
.bg-success {
  background-color: #20ac6b !important;
}
.bg-info {
  background-color: #08b5ed !important;
}
.bg-warning {
  background-color: #cc9900 !important;
}
.bg-danger {
  background-color: #ae1e2c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #4d5e85 !important;
  border-color: #4d5e85 !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: #2d374e !important;
  border-color: #2d374e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2d374e !important;
  border-color: #2d374e !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #a40e4c !important;
  border-color: #a40e4c !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: #540727 !important;
  border-color: #540727 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #540727 !important;
  border-color: #540727 !important;
}
.btn-info,
.btn-info:active {
  background-color: #08b5ed !important;
  border-color: #08b5ed !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: #057599 !important;
  border-color: #057599 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #057599 !important;
  border-color: #057599 !important;
}
.btn-success,
.btn-success:active {
  background-color: #20ac6b !important;
  border-color: #20ac6b !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: #12633e !important;
  border-color: #12633e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #12633e !important;
  border-color: #12633e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
  color: #ffffff !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: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #755800 !important;
  border-color: #755800 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ae1e2c !important;
  border-color: #ae1e2c !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: #641119 !important;
  border-color: #641119 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #641119 !important;
  border-color: #641119 !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: #4d5e85;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2d374e !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: #4d5e85 !important;
  border-color: #4d5e85 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #a40e4c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #540727 !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: #a40e4c !important;
  border-color: #a40e4c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #08b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #057599 !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: #08b5ed !important;
  border-color: #08b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #20ac6b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #12633e !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: #20ac6b !important;
  border-color: #20ac6b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cc9900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #755800 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ae1e2c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #641119 !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: #ae1e2c !important;
  border-color: #ae1e2c !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: #4d5e85 !important;
}
.text-secondary {
  color: #a40e4c !important;
}
.text-success {
  color: #20ac6b !important;
}
.text-info {
  color: #08b5ed !important;
}
.text-warning {
  color: #cc9900 !important;
}
.text-danger {
  color: #ae1e2c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #283044 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #460620 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #105636 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #056a8a !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #664d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #570f16 !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: #4d5e85;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #08b5ed;
}
.alert-warning {
  background-color: #cc9900;
}
.alert-danger {
  background-color: #ae1e2c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #4d5e85;
  border-color: #4d5e85;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #4d5e85;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #92a0c0;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #68e3aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c4effd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe599;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e56773;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Onest', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.40625rem;
}
.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: #4d5e85 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Onest', sans-serif;
  font-size: 1.125rem;
  line-height: 1.5;
  letter-spacing: -0.015em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.40625rem;
}
blockquote {
  border-color: #4d5e85;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #4d5e85;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #4d5e85;
}
.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: #4d5e85;
  border-bottom-color: #4d5e85;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #4d5e85 !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: #a40e4c !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='%234d5e85' %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;
}
.mbr-section-btn .btn,
.mbr-section-btn-main .btn {
  box-shadow: none;
  border: none;
  padding: 14px 30px 14px;
}
.mbr-section-btn .btn:hover .mbr-iconfont,
.mbr-section-btn-main .btn:hover .mbr-iconfont {
  transform: translateX(5px);
}
.mbr-section-btn .btn .mbr-iconfont,
.mbr-section-btn-main .btn .mbr-iconfont {
  margin-left: 14px;
  transform: translateX(0);
  transition: all 0.3s ease-out;
}
.mbr-section-btn .btn-primary-outline,
.mbr-section-btn-main .btn-primary-outline {
  border: 1px solid #4d5e85 !important;
}
.mbr-section-btn .btn-primary-outline:hover,
.mbr-section-btn-main .btn-primary-outline:hover {
  color: #4d5e85 !important;
}
.mbr-section-btn .btn-secondary-outline,
.mbr-section-btn-main .btn-secondary-outline {
  border: 1px solid #a40e4c !important;
}
.mbr-section-btn .btn-secondary-outline:hover,
.mbr-section-btn-main .btn-secondary-outline:hover {
  color: #a40e4c !important;
}
.mbr-section-btn .btn-success-outline,
.mbr-section-btn-main .btn-success-outline {
  border: 1px solid #20ac6b !important;
}
.mbr-section-btn .btn-success-outline:hover,
.mbr-section-btn-main .btn-success-outline:hover {
  color: #20ac6b !important;
}
.mbr-section-btn .btn-info-outline,
.mbr-section-btn-main .btn-info-outline {
  border: 1px solid #08b5ed !important;
}
.mbr-section-btn .btn-info-outline:hover,
.mbr-section-btn-main .btn-info-outline:hover {
  color: #08b5ed !important;
}
.mbr-section-btn .btn-warning-outline,
.mbr-section-btn-main .btn-warning-outline {
  border: 1px solid #cc9900 !important;
}
.mbr-section-btn .btn-warning-outline:hover,
.mbr-section-btn-main .btn-warning-outline:hover {
  color: #cc9900 !important;
}
.mbr-section-btn .btn-danger-outline,
.mbr-section-btn-main .btn-danger-outline {
  border: 1px solid #ae1e2c !important;
}
.mbr-section-btn .btn-danger-outline:hover,
.mbr-section-btn-main .btn-danger-outline:hover {
  color: #ae1e2c !important;
}
.mbr-section-btn .btn-black-outline,
.mbr-section-btn-main .btn-black-outline {
  border: 1px solid #000000 !important;
}
.mbr-section-btn .btn-black-outline:hover,
.mbr-section-btn-main .btn-black-outline:hover {
  color: #000000 !important;
}
.mbr-section-btn .btn-white-outline,
.mbr-section-btn-main .btn-white-outline {
  border: 1px solid #ffffff !important;
}
.mbr-section-btn .btn-white-outline:hover,
.mbr-section-btn-main .btn-white-outline:hover {
  color: #ffffff !important;
}
.cid-uj4Ga4p4f9 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uj4Ga4p4f9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uj4Ga4p4f9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .menu_box .navbar.opened,
  .cid-uj4Ga4p4f9 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uj4Ga4p4f9 .navbar-dropdown {
  position: relative !important;
}
.cid-uj4Ga4p4f9 .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-uj4Ga4p4f9 .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-uj4Ga4p4f9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uj4Ga4p4f9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uj4Ga4p4f9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uj4Ga4p4f9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uj4Ga4p4f9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uj4Ga4p4f9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uj4Ga4p4f9 .offcanvas-body .mbr-text,
  .cid-uj4Ga4p4f9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uj4Ga4p4f9 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uj4Ga4p4f9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uj4Ga4p4f9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uj4Ga4p4f9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uj4Ga4p4f9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uj4Ga4p4f9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uj4Ga4p4f9 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uj4Ga4p4f9 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
    flex-wrap: nowrap;
  }
}
.cid-uj4Ga4p4f9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uj4Ga4p4f9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uj4Ga4p4f9 .nav-item .nav-link {
  position: relative;
}
.cid-uj4Ga4p4f9 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #4d5e85;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4p4f9 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uj4Ga4p4f9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uj4Ga4p4f9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uj4Ga4p4f9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uj4Ga4p4f9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box {
    display: none;
  }
}
.cid-uj4Ga4p4f9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uj4Ga4p4f9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uj4Ga4p4f9 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uj4Ga4p4f9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uj4Ga4p4f9 .iconfont-wrapper:hover {
  opacity: 0.5;
}
.cid-uj4Ga4p4f9 .navbar-caption {
  color: #000000;
}
.cid-uj4Ga4p4f9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .navbar-nav {
    margin: 0;
  }
}
.cid-uj4Ga4p4f9 .dropdown-menu,
.cid-uj4Ga4p4f9 .navbar.opened {
  background-color: false !important;
}
.cid-uj4Ga4p4f9 .nav-item:focus,
.cid-uj4Ga4p4f9 .nav-link:focus {
  outline: none;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uj4Ga4p4f9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uj4Ga4p4f9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uj4Ga4p4f9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4p4f9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uj4Ga4p4f9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uj4Ga4p4f9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uj4Ga4p4f9 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uj4Ga4p4f9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uj4Ga4p4f9 .navbar.collapsed {
  justify-content: center;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uj4Ga4p4f9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uj4Ga4p4f9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .navbar .nav-item {
    padding: 0.5rem 0;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uj4Ga4p4f9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uj4Ga4p4f9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uj4Ga4p4f9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uj4Ga4p4f9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uj4Ga4p4f9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uj4Ga4p4f9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uj4Ga4p4f9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uj4Ga4p4f9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uj4Ga4p4f9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uj4Ga4p4f9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uj4Ga4p4f9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uj4Ga4p4f9 .dropdown-item.active,
.cid-uj4Ga4p4f9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uj4Ga4p4f9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uj4Ga4p4f9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uj4Ga4p4f9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uj4Ga4p4f9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uj4Ga4p4f9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #08b5ed;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uj4Ga4p4f9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uj4Ga4p4f9 .navbar {
    height: 70px;
  }
  .cid-uj4Ga4p4f9 .navbar.opened {
    height: auto;
  }
  .cid-uj4Ga4p4f9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uj4Ga4p4f9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uj4Ga4p4f9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uj4Ga4p4f9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4p4f9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uj4Ga4p4f9 .navbar-caption:hover {
  color: #4d5e85;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uj4Ga4p4f9 .text_widget {
  margin-bottom: 20px;
  color: #08b5ed;
}
.cid-uj4Ga4p4f9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4p4f9 .text_widget a:hover {
  color: #a40e4c !important;
}
.cid-uj4Ga4p4f9 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uj4Ga4p4f9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uj4Ga4p4f9 .mbr-section-subtitle,
.cid-uj4Ga4p4f9 .text_widget,
.cid-uj4Ga4p4f9 .mbr-section-btn {
  text-align: left;
  color: #08b5ed;
}
.cid-uj4Ga4p4f9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uj4Ga4stWf {
  background-image: url("../../../assets/images/photo-1461175128502-8b13d90ee1ec.jpeg");
}
.cid-uj4Ga4stWf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4stWf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4stWf .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4stWf .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4stWf .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4stWf .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4stWf .title-wrapper {
  margin-top: 20%;
  padding: 0 8%;
}
@media (max-width: 992px) {
  .cid-uj4Ga4stWf .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uj4Ga4stWf .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uj4Ga4stWf .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uj4Ga4stWf .mbr-section-title {
  color: #ffffff;
}
.cid-uj4Ga4stWf .mbr-text {
  color: #ffffff;
}
.cid-uj4Ga4srZd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uj4Ga4srZd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4srZd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4srZd .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4srZd .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4srZd .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4srZd .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4srZd .card {
  margin-bottom: 64px;
}
.cid-uj4Ga4srZd .card .card-wrapper {
  display: flex;
  margin-right: 110px;
}
@media (max-width: 1400px) {
  .cid-uj4Ga4srZd .card .card-wrapper {
    margin-right: 30px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4srZd .card .card-wrapper {
    margin: 0;
  }
}
@media (max-width: 768px) {
  .cid-uj4Ga4srZd .card .card-wrapper {
    display: block;
  }
}
.cid-uj4Ga4srZd .card .card-wrapper .mbr-iconfont {
  font-size: 75px;
  margin-right: 28px;
  color: #a8a8a8;
}
@media (max-width: 768px) {
  .cid-uj4Ga4srZd .card .card-wrapper .mbr-iconfont {
    margin-bottom: 16px;
    display: block;
  }
}
.cid-uj4Ga4srZd .card .card-wrapper .card-content .mbr-section-title {
  margin-bottom: 16px;
}
.cid-uj4Ga4srZd .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-uj4Ga4srZd .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4srZd .mbr-text {
  color: #000000;
}
.cid-uj4Ga4t4xP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uj4Ga4t4xP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4t4xP .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-uj4Ga4t4xP .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4t4xP .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uj4Ga4t4xP .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uj4Ga4xEjX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uj4Ga4xEjX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4xEjX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4xEjX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4xEjX .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4xEjX .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4xEjX .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4xEjX .text-wrap {
  display: flex;
  align-items: center;
}
.cid-uj4Ga4xEjX .text-wrap .text-wrapper {
  padding-right: 160px;
  padding-right: 0;
  padding-left: 160px;
}
@media (max-width: 1200px) {
  .cid-uj4Ga4xEjX .text-wrap .text-wrapper {
    padding-right: 82px;
  }
}
@media (max-width: 1200px) {
  .cid-uj4Ga4xEjX .text-wrap .text-wrapper {
    padding-right: 0;
    padding-left: 82px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4xEjX .text-wrap .text-wrapper {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4xEjX .text-wrap .text-wrapper {
    padding: 0;
  }
}
.cid-uj4Ga4xEjX .text-wrap .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uj4Ga4xEjX .text-wrap .text-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uj4Ga4xEjX .image-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uj4Ga4xEjX .image-wrapper {
    margin-top: 60px;
  }
}
.cid-uj4Ga4xEjX .image-wrapper img {
  object-fit: cover;
  border-radius: 10px;
}
.cid-uj4Ga4xEjX .image-wrapper img:first-child {
  height: 720px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4xEjX .image-wrapper img:first-child {
    height: 280px;
  }
}
.cid-uj4Ga4xEjX .image-wrapper img:last-child {
  position: absolute;
  bottom: 4rem;
  left: -7rem;
  width: 230px;
  height: 320px;
  left: auto;
  right: -7rem;
}
@media (max-width: 1200px) {
  .cid-uj4Ga4xEjX .image-wrapper img:last-child {
    right: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4xEjX .image-wrapper img:last-child {
    display: none;
  }
}
.cid-uj4Ga4xEjX .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4xEjX .mbr-text {
  color: #000000;
}
.cid-uj4Ga4xEjX .mbr-cit {
  color: #000000;
}
.cid-uj4Ga4xEjX .mbr-name {
  color: #a8a8a8;
}
.cid-uj4Ga4xEjX .mbr-section-title,
.cid-uj4Ga4xEjX .mbr-section-btn {
  color: #08b5ed;
}
.cid-uj4Ga4xRT7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uj4Ga4xRT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4xRT7 .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-uj4Ga4xRT7 .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4xRT7 .item .item-wrapper {
  padding: 0 8px 40px;
}
.cid-uj4Ga4xRT7 .item .item-wrapper .item-img {
  border-radius: 16px;
  position: relative;
  padding: 35px;
  overflow: hidden;
  height: 430px;
}
.cid-uj4Ga4xRT7 .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uj4Ga4xRT7 .item .item-wrapper .item-img .item-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.cid-uj4Ga4xRT7 .item .item-wrapper .item-img .item-content .mbr-section-title {
  margin-bottom: 0;
  pointer-events: visible;
}
.cid-uj4Ga4xRT7 .item .item-wrapper .item-img .item-content .mbr-section-btn {
  pointer-events: visible;
}
.cid-uj4Ga4xRT7 .item .item-wrapper .item-img .item-content .mbr-section-btn .btn {
  margin-bottom: 0;
}
.cid-uj4Ga4xRT7 .mbr-section-title {
  color: #ffffff;
}
.cid-uj4Ga4zkET {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uj4Ga4zkET .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4zkET .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-uj4Ga4zkET .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4zkET .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
.cid-uj4Ga4zkET .item {
  margin-bottom: 72px;
}
.cid-uj4Ga4zkET .item a {
  display: block;
}
.cid-uj4Ga4zkET .item a:hover .item-wrapper .item-img img {
  transform: scale(1.06);
}
.cid-uj4Ga4zkET .item a:hover .item-wrapper .item-img .mbr-iconfont {
  opacity: 1;
}
.cid-uj4Ga4zkET .item a .item-wrapper {
  padding: 0 4px 40px;
}
.cid-uj4Ga4zkET .item a .item-wrapper .item-img {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uj4Ga4zkET .item a .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4zkET .item a .item-wrapper .item-img .mbr-iconfont {
  position: relative;
  font-size: 22px;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  opacity: 0.7;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4zkET .item a .item-content {
  padding: 0 4px;
}
.cid-uj4Ga4zkET .item a .item-content .item-time .item-time-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uj4Ga4zkET .item a .item-content .item-time .item-time-wrap .mbr-iconfont {
  display: inline-block;
  font-size: 18px;
  margin-right: 4px;
}
.cid-uj4Ga4zkET .item a .item-content .item-time .item-time-wrap .mbr-time {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uj4Ga4zkET .item a .item-content .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uj4Ga4zkET .item a .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uj4Ga4zkET .mbr-section-btn {
  margin-top: 46px;
  text-align: center;
}
.cid-uj4Ga4zkET .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4zkET .mbr-time {
  color: #000000;
}
.cid-uj4Ga4zkET .mbr-card-title {
  color: #000000;
}
.cid-uj4Ga4zkET .mbr-desc {
  color: #a8a8a8;
}
#custom-html-1 {
  /* Type valid CSS here */
}
#custom-html-1 div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-1 p {
  font-size: 60px;
  color: #777;
}
.cid-uj4Ga4AN1R {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uj4Ga4AN1R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4AN1R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4AN1R .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4AN1R .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4AN1R .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4AN1R .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4AN1R .row {
  justify-content: center;
}
.cid-uj4Ga4AN1R .title-wrapper {
  margin-bottom: 55px;
}
.cid-uj4Ga4AN1R .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4AN1R .card {
    margin-bottom: 30px;
  }
}
.cid-uj4Ga4AN1R .card .card-wrapper {
  display: flex;
}
.cid-uj4Ga4AN1R .card .card-wrapper .mbr-number {
  min-width: 100px;
  margin: 0 22px 0 0;
}
@media (max-width: 425px) {
  .cid-uj4Ga4AN1R .card .card-wrapper .mbr-number {
    min-width: 62px;
  }
}
.cid-uj4Ga4AN1R .card .card-wrapper .card-content .mbr-card-title {
  margin-bottom: 6px;
}
.cid-uj4Ga4AN1R .card .card-wrapper .card-content .mbr-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-uj4Ga4AN1R .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4AN1R .mbr-number {
  color: #000000;
}
.cid-uj4Ga4AN1R .mbr-card-title {
  color: #000000;
}
.cid-uj4Ga4AN1R .mbr-text {
  color: #000000;
}
.cid-uj4Ga4ByA4 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #08b5ed;
}
.cid-uj4Ga4ByA4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4ByA4 .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-uj4Ga4ByA4 .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4ByA4 .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4ByA4 .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-uj4Ga4ByA4 .mbr-section-btn {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .cid-uj4Ga4ByA4 .mbr-section-btn {
    display: block;
  }
}
.cid-uj4Ga4ByA4 .mbr-section-title {
  color: #ffffff;
}
.cid-uj4Ga4ByA4 .mbr-section-title,
.cid-uj4Ga4ByA4 .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uj4Ga4B66Y {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uj4Ga4B66Y .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4B66Y .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4B66Y .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4B66Y .container-fluid {
    padding: 0;
  }
}
.cid-uj4Ga4B66Y .container-fluid .row {
  padding: 0;
}
.cid-uj4Ga4B66Y .card {
  padding: 0;
}
.cid-uj4Ga4B66Y .card:first-child {
  padding: 140px 170px;
}
@media (max-width: 1200px) {
  .cid-uj4Ga4B66Y .card:first-child {
    padding: 100px 90px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4B66Y .card:first-child {
    padding: 110px 30px;
  }
}
.cid-uj4Ga4B66Y .card .text-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uj4Ga4B66Y .card .text-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-position: inside;
  list-style-type: none;
  counter-reset: myCounter;
  line-height: 1.625;
}
.cid-uj4Ga4B66Y .card .text-wrapper .list li {
  margin-bottom: 30px;
  position: relative;
  list-style-type: none;
  min-height: 18px;
}
.cid-uj4Ga4B66Y .card:last-child {
  position: relative;
}
.cid-uj4Ga4B66Y .card:last-child img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uj4Ga4B66Y .card:last-child .desc-wrapper {
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding: 22px 50px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4B66Y .card:last-child .desc-wrapper {
    padding: 200px 30px 30px 30px;
  }
}
.cid-uj4Ga4B66Y .card:last-child .desc-wrapper .mbr-desc {
  width: 100%;
  margin: 25px 0;
  position: relative;
}
.cid-uj4Ga4B66Y .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4B66Y .list {
  color: #000000;
}
.cid-uj4Ga4B66Y .mbr-desc {
  color: #ffffff;
}
.cid-uj4Ga4B66Y .mbr-section-title,
.cid-uj4Ga4B66Y .mbr-section-btn {
  color: #08b5ed;
}
.cid-uj4Ga4EUBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uj4Ga4EUBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4EUBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4EUBl .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4EUBl .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4EUBl .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4EUBl .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4EUBl .subtitle-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uj4Ga4EUBl .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uj4Ga4EUBl .subtitle-wrapper .mbr-section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uj4Ga4EUBl .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uj4Ga4EUBl .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uj4Ga4EUBl .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
}
.cid-uj4Ga4EUBl .title-wrapper .mbr-name {
  margin-bottom: 0;
  position: relative;
}
.cid-uj4Ga4EUBl .title-wrapper::before {
  content: '';
  position: absolute;
  right: 10rem;
  bottom: -20rem;
  transform: rotate(45deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #f0c808;
}
@media (max-width: 992px) {
  .cid-uj4Ga4EUBl .title-wrapper::before {
    display: none;
  }
}
.cid-uj4Ga4EUBl .mbr-section-subtitle {
  color: #000000;
}
.cid-uj4Ga4EUBl .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4EUBl .mbr-name {
  color: #000000;
}
.cid-uj4Ga4EUBl .mbr-role {
  color: #a8a8a8;
}
.cid-uj4Ga4E9BM {
  padding-top: 3rem;
  padding-bottom: 3rem;
  overflow: hidden;
  background-color: transparent;
}
.cid-uj4Ga4E9BM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4E9BM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4E9BM .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4E9BM .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4E9BM .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4E9BM .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4E9BM .row {
  position: relative;
}
.cid-uj4Ga4E9BM .row::before {
  content: '';
  position: absolute;
  top: -10rem;
  left: -10rem;
  transform: rotate(45deg);
  display: block;
  width: 500px;
  height: 400px;
  border-radius: 100%;
  border: 2px solid #08b5ed;
}
@media (max-width: 992px) {
  .cid-uj4Ga4E9BM .row::before {
    display: none;
  }
}
.cid-uj4Ga4E9BM .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uj4Ga4E9BM .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uj4Ga4E9BM .title-wrapper .mbr-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uj4Ga4E9BM .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uj4Ga4E9BM .tabs-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cid-uj4Ga4E9BM .nav.nav-tabs {
  position: relative;
  padding-right: 12px;
  display: block;
  border: none;
}
@media (max-width: 1400px) {
  .cid-uj4Ga4E9BM .nav.nav-tabs {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4E9BM .nav.nav-tabs {
    margin-bottom: 32px;
  }
}
.cid-uj4Ga4E9BM .nav.nav-tabs .nav-item .nav-link {
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  color: #000000;
}
.cid-uj4Ga4E9BM .nav.nav-tabs .nav-item .nav-link .mbr-iconfont {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 60%;
  margin-left: 13px;
  color: #000000;
  opacity: 0;
  transform: translate(-5px, 5px) rotate(-45deg);
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4E9BM .nav.nav-tabs .nav-item .nav-link .mbr-iconfont::after {
  content: '';
  position: absolute;
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid #000000;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4E9BM .nav.nav-tabs .nav-item .nav-link:hover {
  border: none;
}
.cid-uj4Ga4E9BM .nav.nav-tabs .nav-item .nav-link.active {
  border: none;
}
.cid-uj4Ga4E9BM .nav.nav-tabs .nav-item .nav-link.active .mbr-iconfont {
  opacity: 1;
  transform: translate(0) rotate(-45deg);
}
.cid-uj4Ga4E9BM .nav.nav-tabs .nav-item .nav-link.active .mbr-iconfont::after {
  opacity: 1;
}
.cid-uj4Ga4E9BM .nav-tabs .nav-link {
  border: none;
}
.cid-uj4Ga4E9BM .tab-content {
  padding-right: 110px;
  position: relative;
}
@media (max-width: 1400px) {
  .cid-uj4Ga4E9BM .tab-content {
    padding-right: 60px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4E9BM .tab-content {
    padding: 0;
  }
}
.cid-uj4Ga4E9BM .tab-content .tab-pane .tab-image img {
  height: 580px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4E9BM .tab-content .tab-pane .tab-image img {
    height: 380px;
  }
}
.cid-uj4Ga4E9BM .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4IcET {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uj4Ga4IcET .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4IcET .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4IcET .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4IcET .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4IcET .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4IcET .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4IcET .subtitle-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uj4Ga4IcET .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uj4Ga4IcET .subtitle-wrapper .mbr-section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uj4Ga4IcET .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uj4Ga4IcET .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uj4Ga4IcET .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
}
.cid-uj4Ga4IcET .title-wrapper .mbr-name {
  margin-bottom: 0;
  position: relative;
}
.cid-uj4Ga4IcET .title-wrapper::before {
  content: '';
  position: absolute;
  right: 10rem;
  bottom: -20rem;
  transform: rotate(45deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #f0c808;
}
@media (max-width: 992px) {
  .cid-uj4Ga4IcET .title-wrapper::before {
    display: none;
  }
}
.cid-uj4Ga4IcET .mbr-section-subtitle {
  color: #000000;
}
.cid-uj4Ga4IcET .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4IcET .mbr-name {
  color: #08b5ed;
}
.cid-uj4Ga4IcET .mbr-role {
  color: #a8a8a8;
}
.cid-uj4Ga4Iw8P {
  background-color: #ffffff;
}
.cid-uj4Ga4Iw8P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4Iw8P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4Iw8P .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4Iw8P .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4Iw8P .container-fluid .row {
  padding: 0;
}
.cid-uj4Ga4Iw8P .title-wrapper {
  padding: 180px 120px;
}
@media (max-width: 1200px) {
  .cid-uj4Ga4Iw8P .title-wrapper {
    padding: 120px 60px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4Iw8P .title-wrapper {
    padding: 80px 0;
  }
}
.cid-uj4Ga4Iw8P .title-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uj4Ga4Iw8P .title-wrapper .mbr-text {
  margin-bottom: 22px;
}
.cid-uj4Ga4Iw8P .image-wrapper {
  position: relative;
}
.cid-uj4Ga4Iw8P .image-wrapper img {
  object-fit: cover;
}
.cid-uj4Ga4Iw8P .image-wrapper img:first-child {
  height: 900px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4Iw8P .image-wrapper img:first-child {
    height: 350px;
  }
}
.cid-uj4Ga4Iw8P .image-wrapper img:last-child {
  position: absolute;
  bottom: 5rem;
  left: -7rem;
  width: 315px;
  height: 425px;
  border-radius: 10px;
}
@media (max-width: 1200px) {
  .cid-uj4Ga4Iw8P .image-wrapper img:last-child {
    left: -5rem;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4Iw8P .image-wrapper img:last-child {
    display: none;
  }
}
.cid-uj4Ga4Iw8P .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4Iw8P .mbr-text {
  color: #000000;
}
.cid-uj4Ga4Iw8P .mbr-section-title,
.cid-uj4Ga4Iw8P .mbr-section-btn {
  color: #08b5ed;
}
.cid-uj4Ga4Jxiq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background: #f9f9f9;
}
.cid-uj4Ga4Jxiq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4Jxiq .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-uj4Ga4Jxiq .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4Jxiq .row {
  position: relative;
}
.cid-uj4Ga4Jxiq .row::before {
  content: '';
  position: absolute;
  bottom: -15rem;
  left: -15rem;
  transform: rotate(-10deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  border: 2px solid #f0c808;
}
@media (max-width: 992px) {
  .cid-uj4Ga4Jxiq .row::before {
    display: none;
  }
}
.cid-uj4Ga4Jxiq .title-wrapper {
  margin-bottom: 55px;
}
.cid-uj4Ga4Jxiq .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uj4Ga4Jxiq .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uj4Ga4Jxiq .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 380px;
  max-width: 380px;
}
@media (max-width: 768px) {
  .cid-uj4Ga4Jxiq .embla__slide {
    min-width: 100%;
    max-width: initial;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uj4Ga4Jxiq .embla__slide .card-wrap .content-wrap .rating-wrapper {
  margin-bottom: 30px;
}
.cid-uj4Ga4Jxiq .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap {
  display: inline-flex;
}
.cid-uj4Ga4Jxiq .embla__slide .card-wrap .content-wrap .rating-wrapper .rating-wrap .mbr-iconfont {
  font-size: 22px;
  color: #000000;
  margin-right: 5px;
}
.cid-uj4Ga4Jxiq .embla__slide .card-wrap .content-wrap .mbr-text {
  margin-bottom: 38px;
}
.cid-uj4Ga4Jxiq .embla__slide .card-wrap .content-wrap .mbr-name {
  margin-bottom: 0.3rem;
}
.cid-uj4Ga4Jxiq .embla__slide .card-wrap .content-wrap .mbr-role {
  margin-bottom: 0;
}
.cid-uj4Ga4Jxiq .embla__button--next,
.cid-uj4Ga4Jxiq .embla__button--prev {
  display: flex;
}
.cid-uj4Ga4Jxiq .embla__button {
  bottom: -4rem;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: transparent;
  color: #4d5e85;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uj4Ga4Jxiq .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uj4Ga4Jxiq .embla__button:hover {
  background: transparent;
  color: #a40e4c;
}
.cid-uj4Ga4Jxiq .embla__button.embla__button--prev {
  left: 0;
}
.cid-uj4Ga4Jxiq .embla__button.embla__button--next {
  right: auto;
  left: 2rem;
}
@media (max-width: 767px) {
  .cid-uj4Ga4Jxiq .embla__button {
    top: auto;
  }
}
.cid-uj4Ga4Jxiq .slider-wrap {
  display: flex;
  align-items: center;
}
.cid-uj4Ga4Jxiq .embla {
  position: relative;
  width: 100%;
}
.cid-uj4Ga4Jxiq .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-uj4Ga4Jxiq .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uj4Ga4Jxiq .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uj4Ga4Jxiq .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uj4Ga4Jxiq .mbr-section-title {
  color: #08b5ed;
  text-align: center;
}
.cid-uj4Ga4Jxiq .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uj4Ga4Jxiq .mbr-card-text {
  color: #000000;
}
.cid-uj4Ga4Jxiq .mbr-name {
  color: #000000;
}
.cid-uj4Ga4Jxiq .mbr-role {
  color: #a8a8a8;
}
.cid-uj4Ga4K1OX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uj4Ga4K1OX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4K1OX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4K1OX .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4K1OX .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4K1OX .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4K1OX .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4K1OX .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4K1OX .row {
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uj4Ga4K1OX .row {
    border-radius: 0;
  }
}
.cid-uj4Ga4K1OX .card {
  padding: 0;
}
.cid-uj4Ga4K1OX .card .image-wrapper img {
  height: 340px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uj4Ga4K1OX .card .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
    border-radius: 10px;
  }
}
.cid-uj4Ga4K1OX .mbr-date {
  color: #ffffff;
}
.cid-uj4Ga4K1OX .mbr-link {
  color: #ffffff;
}
.cid-uj4Ga4LSiy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uj4Ga4LSiy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4LSiy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4LSiy .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4LSiy .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4LSiy .container-fluid .row {
  margin: 0;
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4LSiy .container-fluid .row {
    margin: 0;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4LSiy .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4LSiy .row {
  justify-content: center;
}
.cid-uj4Ga4LSiy .title-wrapper {
  margin-bottom: 55px;
}
.cid-uj4Ga4LSiy .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-uj4Ga4LSiy .title-wrapper .link-wrapper:hover .mbr-link {
  color: #ff6839;
}
.cid-uj4Ga4LSiy .title-wrapper .link-wrapper .mbr-link {
  margin-bottom: 0;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4LSiy .card {
  padding: 0 8px;
}
.cid-uj4Ga4LSiy .card:nth-child(2n) {
  padding: 80px 8px 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4LSiy .card:nth-child(2n) {
    padding: 0 12px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4LSiy .card {
    padding: 0 12px;
  }
}
.cid-uj4Ga4LSiy .card a {
  display: block;
}
.cid-uj4Ga4LSiy .card a:hover .image-wrapper .mbr-iconfont {
  opacity: 1;
}
.cid-uj4Ga4LSiy .card a:hover .image-wrapper::before {
  opacity: 0.5;
}
.cid-uj4Ga4LSiy .card a .image-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cid-uj4Ga4LSiy .card a .image-wrapper img {
  height: 215px;
  object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4LSiy .card a .image-wrapper img {
    height: 250px;
    margin-bottom: 22px;
  }
}
.cid-uj4Ga4LSiy .card a .image-wrapper .mbr-iconfont {
  position: absolute;
  font-size: 22px;
  color: #ffffff;
  opacity: 0;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4LSiy .card a .image-wrapper:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  opacity: 0;
  border-radius: 10px;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-uj4Ga4LSiy .text-wrapper {
  margin-top: 44px;
}
.cid-uj4Ga4LSiy .text-wrapper .mbr-text {
  margin: 0;
}
.cid-uj4Ga4LSiy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uj4Ga4LSiy .mbr-link {
  color: #000000;
  text-align: center;
}
.cid-uj4Ga4LSiy .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uj4Ga4MJJl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: transparent;
}
.cid-uj4Ga4MJJl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4MJJl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4MJJl .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4MJJl .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4MJJl .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4MJJl .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4MJJl .title-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uj4Ga4MJJl .title-wrapper .mbr-section-title {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uj4Ga4MJJl .title-wrapper .mbr-section-title::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uj4Ga4MJJl .panel-group {
  padding: 60px 80px;
  border-radius: 10px;
  background-color: #ffffff;
}
@media (max-width: 768px) {
  .cid-uj4Ga4MJJl .panel-group {
    padding: 60px 30px;
  }
}
@media (max-width: 425px) {
  .cid-uj4Ga4MJJl .panel-group {
    padding: 60px 16px;
  }
}
.cid-uj4Ga4MJJl .panel-group .card {
  border-bottom: 1px solid #000000;
  border-radius: 0;
}
.cid-uj4Ga4MJJl .panel-group .card .card-header {
  padding: 22px 0;
  background-color: transparent;
  border: none;
}
.cid-uj4Ga4MJJl .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: none;
  background-color: transparent;
}
.cid-uj4Ga4MJJl .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uj4Ga4MJJl .panel-group .card .card-header .panel-title .mbr-iconfont {
  margin-left: 10px;
  font-size: 22px;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4MJJl .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0c808;
  transform: rotate(90deg);
}
.cid-uj4Ga4MJJl .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 50px;
}
.cid-uj4Ga4MJJl .panel-group .card .panel-collapse .panel-body .panel-text {
  line-height: 1.625;
  margin-bottom: 0;
}
.cid-uj4Ga4MJJl .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4MJJl .panel-title-edit,
.cid-uj4Ga4MJJl .mbr-iconfont {
  color: #000000;
}
.cid-uj4Ga4MJJl .panel-text {
  color: #000000;
}
.cid-uj4Ga4N3yC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uj4Ga4N3yC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4N3yC .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-uj4Ga4N3yC .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4N3yC .title-wrapper .mbr-section-title {
  margin-bottom: 55px;
}
.cid-uj4Ga4N3yC .item {
  margin-bottom: 72px;
}
.cid-uj4Ga4N3yC .item a {
  display: block;
}
.cid-uj4Ga4N3yC .item a:hover .item-wrapper .item-img img {
  transform: scale(1.06);
}
.cid-uj4Ga4N3yC .item a:hover .item-wrapper .item-img .mbr-iconfont {
  opacity: 1;
}
.cid-uj4Ga4N3yC .item a .item-wrapper {
  padding: 0 4px 40px;
}
.cid-uj4Ga4N3yC .item a .item-wrapper .item-img {
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  height: 270px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uj4Ga4N3yC .item a .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4N3yC .item a .item-wrapper .item-img .mbr-iconfont {
  position: relative;
  font-size: 22px;
  width: 104px;
  height: 104px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  border: 1px solid #ffffff !important;
  color: #ffffff !important;
  opacity: 0.7;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4N3yC .item a .item-content {
  padding: 0 4px;
}
.cid-uj4Ga4N3yC .item a .item-content .item-time .item-time-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-uj4Ga4N3yC .item a .item-content .item-time .item-time-wrap .mbr-iconfont {
  display: inline-block;
  font-size: 18px;
  margin-right: 4px;
}
.cid-uj4Ga4N3yC .item a .item-content .item-time .item-time-wrap .mbr-time {
  display: inline-block;
  margin-bottom: 0;
}
.cid-uj4Ga4N3yC .item a .item-content .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uj4Ga4N3yC .item a .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uj4Ga4N3yC .mbr-section-btn {
  margin-top: 46px;
  text-align: center;
}
.cid-uj4Ga4N3yC .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4N3yC .mbr-time {
  color: #000000;
}
.cid-uj4Ga4N3yC .mbr-card-title {
  color: #000000;
}
.cid-uj4Ga4N3yC .mbr-desc {
  color: #a8a8a8;
}
.cid-uj4Ga4Nv7q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uj4Ga4Nv7q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4Nv7q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uj4Ga4Nv7q .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4Nv7q .container-fluid {
    padding: 0 30px;
  }
}
.cid-uj4Ga4Nv7q .container-fluid .row {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4Nv7q .container {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uj4Ga4Nv7q .subtitle-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uj4Ga4Nv7q .subtitle-wrapper .mbr-section-subtitle {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
  padding-left: 14px;
  position: relative;
}
.cid-uj4Ga4Nv7q .subtitle-wrapper .mbr-section-subtitle::before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background-color: #000000;
}
.cid-uj4Ga4Nv7q .title-wrapper {
  position: relative;
}
@media (max-width: 992px) {
  .cid-uj4Ga4Nv7q .title-wrapper {
    margin-top: 0;
    padding: 0;
  }
}
.cid-uj4Ga4Nv7q .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
  position: relative;
}
.cid-uj4Ga4Nv7q .title-wrapper .mbr-name {
  margin-bottom: 0;
  position: relative;
}
.cid-uj4Ga4Nv7q .title-wrapper::before {
  content: '';
  position: absolute;
  right: 10rem;
  bottom: -20rem;
  transform: rotate(45deg);
  display: block;
  width: 500px;
  height: 250px;
  border-radius: 100%;
  background-color: transparent;
  border: 2px solid #08b5ed;
}
@media (max-width: 992px) {
  .cid-uj4Ga4Nv7q .title-wrapper::before {
    display: none;
  }
}
.cid-uj4Ga4Nv7q .mbr-section-subtitle {
  color: #000000;
}
.cid-uj4Ga4Nv7q .mbr-section-title {
  color: #000000;
}
.cid-uj4Ga4Nv7q .mbr-name {
  color: #000000;
}
.cid-uj4Ga4Nv7q .mbr-role {
  color: #a8a8a8;
}
.cid-uj4Ga4NXn6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9f9;
}
.cid-uj4Ga4NXn6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uj4Ga4NXn6 .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-uj4Ga4NXn6 .container {
    padding: 0 30px;
  }
}
.cid-uj4Ga4NXn6 .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uj4Ga4NXn6 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uj5eOB0l9z {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #08b5ed;
}
.cid-uj5eOB0l9z .container {
  padding: 0 5%;
}
.cid-uj5eOB0l9z .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-uj5eOB0l9z .card:nth-child(odd) {
  padding-right: 21px;
}
@media (max-width: 992px) {
  .cid-uj5eOB0l9z .card:nth-child(odd) {
    padding-right: 16px;
  }
}
.cid-uj5eOB0l9z .card:nth-child(even) {
  padding-left: 21px;
}
@media (max-width: 992px) {
  .cid-uj5eOB0l9z .card:nth-child(even) {
    padding-left: 16px;
  }
}
.cid-uj5eOB0l9z .card-wrapper {
  margin-bottom: 42px;
  border-radius: 15px;
  display: flex;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uj5eOB0l9z .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uj5eOB0l9z .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-uj5eOB0l9z .mbr-iconfont {
  font-size: 3rem;
  padding-right: 1.5rem;
  color: #4d5e85;
}
.cid-uj5eOB0l9z .mbr-section-title {
  margin-bottom: 4.5rem;
  color: #000000;
}
.cid-uj5eOB0l9z .card-title {
  color: #08b5ed;
}
.cid-uj5eOB0l9z .mbr-text {
  color: #e082c5;
}
.cid-uj5eOB0l9z P {
  color: #08b5ed;
  text-align: left;
}
.cid-uj4Ga4p4f9 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uj4Ga4p4f9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uj4Ga4p4f9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .menu_box .navbar.opened,
  .cid-uj4Ga4p4f9 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uj4Ga4p4f9 .navbar-dropdown {
  position: relative !important;
}
.cid-uj4Ga4p4f9 .icons-menu-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
    display: flex;
  }
}
.cid-uj4Ga4p4f9 .mbr-section-btn-main {
  display: none;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .mbr-section-btn-main {
    margin-top: 1rem;
    display: block;
  }
}
.cid-uj4Ga4p4f9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uj4Ga4p4f9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .offcanvas {
    padding: 12rem 80px 0;
    width: 40%;
    background-color: #f9f9f9;
  }
  .cid-uj4Ga4p4f9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uj4Ga4p4f9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uj4Ga4p4f9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uj4Ga4p4f9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uj4Ga4p4f9 .offcanvas-body .mbr-text,
  .cid-uj4Ga4p4f9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 20px;
  }
  .cid-uj4Ga4p4f9 .offcanvas-body .offcanvas_contact {
    margin: 22px 0;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #000000;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uj4Ga4p4f9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uj4Ga4p4f9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uj4Ga4p4f9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-uj4Ga4p4f9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uj4Ga4p4f9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uj4Ga4p4f9 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uj4Ga4p4f9 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
    flex-wrap: nowrap;
  }
}
.cid-uj4Ga4p4f9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uj4Ga4p4f9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uj4Ga4p4f9 .nav-item .nav-link {
  position: relative;
}
.cid-uj4Ga4p4f9 .nav-item .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #4d5e85;
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4p4f9 .nav-item .nav-link:hover::after {
  width: 100%;
}
.cid-uj4Ga4p4f9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uj4Ga4p4f9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uj4Ga4p4f9 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 0.5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-uj4Ga4p4f9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uj4Ga4p4f9 .offcanvas_box {
    display: none;
  }
}
.cid-uj4Ga4p4f9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uj4Ga4p4f9 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .container {
    flex-wrap: nowrap;
  }
}
.cid-uj4Ga4p4f9 .iconfont-wrapper {
  color: #163f9f;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uj4Ga4p4f9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uj4Ga4p4f9 .iconfont-wrapper:hover {
  opacity: 0.5;
}
.cid-uj4Ga4p4f9 .navbar-caption {
  color: #000000;
}
.cid-uj4Ga4p4f9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .navbar-nav {
    margin: 0;
  }
}
.cid-uj4Ga4p4f9 .dropdown-menu,
.cid-uj4Ga4p4f9 .navbar.opened {
  background-color: false !important;
}
.cid-uj4Ga4p4f9 .nav-item:focus,
.cid-uj4Ga4p4f9 .nav-link:focus {
  outline: none;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uj4Ga4p4f9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uj4Ga4p4f9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uj4Ga4p4f9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uj4Ga4p4f9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uj4Ga4p4f9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uj4Ga4p4f9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uj4Ga4p4f9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uj4Ga4p4f9 .navbar .navbar-logo img {
  max-width: 130px;
  max-height: 130px;
  object-fit: contain;
}
.cid-uj4Ga4p4f9 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-uj4Ga4p4f9 .navbar.collapsed {
  justify-content: center;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uj4Ga4p4f9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uj4Ga4p4f9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uj4Ga4p4f9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uj4Ga4p4f9 .navbar .nav-item {
    padding: 0.5rem 0;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uj4Ga4p4f9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uj4Ga4p4f9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uj4Ga4p4f9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uj4Ga4p4f9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uj4Ga4p4f9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uj4Ga4p4f9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uj4Ga4p4f9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uj4Ga4p4f9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uj4Ga4p4f9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uj4Ga4p4f9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uj4Ga4p4f9 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uj4Ga4p4f9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uj4Ga4p4f9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uj4Ga4p4f9 .dropdown-item.active,
.cid-uj4Ga4p4f9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uj4Ga4p4f9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uj4Ga4p4f9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uj4Ga4p4f9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uj4Ga4p4f9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uj4Ga4p4f9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uj4Ga4p4f9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #08b5ed;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uj4Ga4p4f9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uj4Ga4p4f9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uj4Ga4p4f9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uj4Ga4p4f9 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uj4Ga4p4f9 .navbar {
    height: 70px;
  }
  .cid-uj4Ga4p4f9 .navbar.opened {
    height: auto;
  }
  .cid-uj4Ga4p4f9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uj4Ga4p4f9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
.cid-uj4Ga4p4f9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uj4Ga4p4f9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
}
@media (max-width: 992px) {
  .cid-uj4Ga4p4f9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uj4Ga4p4f9 .navbar-caption:hover {
  color: #4d5e85;
}
@media (min-width: 992px) {
  .cid-uj4Ga4p4f9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uj4Ga4p4f9 .text_widget {
  margin-bottom: 20px;
  color: #08b5ed;
}
.cid-uj4Ga4p4f9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uj4Ga4p4f9 .text_widget a:hover {
  color: #a40e4c !important;
}
.cid-uj4Ga4p4f9 .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-uj4Ga4p4f9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uj4Ga4p4f9 .mbr-section-subtitle,
.cid-uj4Ga4p4f9 .text_widget,
.cid-uj4Ga4p4f9 .mbr-section-btn {
  text-align: left;
  color: #08b5ed;
}
.cid-uj4Ga4p4f9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-ujojtFpNqd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ujojtFpNqd .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-ujojtFpNqd h4,
.cid-ujojtFpNqd p {
  padding-bottom: 1rem;
}
.cid-ujojtFpNqd .col-auto,
.cid-ujojtFpNqd .btn {
  width: 100% !important;
  padding: 1rem;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-ujojtFpNqd .mbr-form {
    margin-bottom: 1rem;
  }
}
.cid-ujojtFpNqd .google-map {
  height: 100%;
  padding-bottom: 1rem;
  min-height: 20rem;
  filter: grayscale(1);
  position: relative;
  border-radius: 2rem;
}
.cid-ujojtFpNqd .google-map iframe {
  height: 100%;
  width: 100%;
  border-radius: 2rem;
}
.cid-ujojtFpNqd .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-ujojtFpNqd .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ujojtFpNqd .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ujojtFpNqd .form-control,
.cid-ujojtFpNqd .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #f2f2f2 !important;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  font-size: 1rem;
  font-weight: 400;
  outline: none;
}
.cid-ujojtFpNqd .form-control::-webkit-input-placeholder,
.cid-ujojtFpNqd .field-input::-webkit-input-placeholder,
.cid-ujojtFpNqd .form-control::-webkit-input-placeholder,
.cid-ujojtFpNqd .field-input::-webkit-input-placeholder {
  color: #cfcfcf;
}
.cid-ujojtFpNqd .form-control:-moz-placeholder,
.cid-ujojtFpNqd .field-input:-moz-placeholder,
.cid-ujojtFpNqd .form-control:-moz-placeholder,
.cid-ujojtFpNqd .field-input:-moz-placeholder {
  color: #cfcfcf;
}
.cid-ujojtFpNqd .form-control:hover,
.cid-ujojtFpNqd .field-input:hover,
.cid-ujojtFpNqd .form-control:focus,
.cid-ujojtFpNqd .field-input:focus {
  background-color: #ffffff;
  border-color: #08b5ed !important;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-ujojtFpNqd .form-control:hover::-webkit-input-placeholder,
.cid-ujojtFpNqd .field-input:hover::-webkit-input-placeholder,
.cid-ujojtFpNqd .form-control:focus::-webkit-input-placeholder,
.cid-ujojtFpNqd .field-input:focus::-webkit-input-placeholder,
.cid-ujojtFpNqd .form-control:hover::-webkit-input-placeholder,
.cid-ujojtFpNqd .field-input:hover::-webkit-input-placeholder,
.cid-ujojtFpNqd .form-control:focus::-webkit-input-placeholder,
.cid-ujojtFpNqd .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-ujojtFpNqd .form-control:hover:-moz-placeholder,
.cid-ujojtFpNqd .field-input:hover:-moz-placeholder,
.cid-ujojtFpNqd .form-control:focus:-moz-placeholder,
.cid-ujojtFpNqd .field-input:focus:-moz-placeholder,
.cid-ujojtFpNqd .form-control:hover:-moz-placeholder,
.cid-ujojtFpNqd .field-input:hover:-moz-placeholder,
.cid-ujojtFpNqd .form-control:focus:-moz-placeholder,
.cid-ujojtFpNqd .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-ujojtFpNqd .jq-number__spin:hover,
.cid-ujojtFpNqd .jq-number__spin:focus {
  background-color: #ffffff;
  border-color: #08b5ed !important;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-ujojtFpNqd .jq-number__spin {
  background-color: #ffffff;
  border-color: #f2f2f2;
  color: #232323;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-ujojtFpNqd .jq-selectbox li,
.cid-ujojtFpNqd .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-ujojtFpNqd .jq-selectbox li:hover,
.cid-ujojtFpNqd .jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.cid-ujojtFpNqd .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-ujojtFpNqd .jq-number__spin.minus:hover:after,
.cid-ujojtFpNqd .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-ujojtFpNqd .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-ujojtFpNqd .jq-number__spin.minus:after,
.cid-ujojtFpNqd .jq-number__spin.plus:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-ujojtFpNqd input::-webkit-clear-button {
  display: none;
}
.cid-ujojtFpNqd input::-webkit-inner-spin-button {
  display: none;
}
.cid-ujojtFpNqd input::-webkit-outer-spin-button {
  display: none;
}
.cid-ujojtFpNqd input::-webkit-calendar-picker-indicator {
  display: none;
}
