body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'Material Symbols Outlined', monospace;
  font-size: 2.8rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 4.48rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3.4rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 5.44rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.8rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.72rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #0099ff !important;
}
.bg-success {
  background-color: #fe0c0c !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #149dcc !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0099ff !important;
  border-color: #0099ff !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #006bb3 !important;
  border-color: #006bb3 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #006bb3 !important;
  border-color: #006bb3 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #e50039 !important;
  border-color: #e50039 !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active {
  background-color: #fe0c0c !important;
  border-color: #fe0c0c !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #bd0101 !important;
  border-color: #bd0101 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #bd0101 !important;
  border-color: #bd0101 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #005c99;
  color: #005c99;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #0099ff;
  border-color: #0099ff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0099ff !important;
  border-color: #0099ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #a30101;
  color: #a30101;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #fe0c0c;
  border-color: #fe0c0c;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fe0c0c !important;
  border-color: #fe0c0c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0099ff !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #fe0c0c !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #149dcc !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #005c99 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cc0033 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #a30101 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #0b566f !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #149dcc;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0099ff;
  border-color: #0099ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0099ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ccebff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffd7d7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #0099ff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #0099ff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #0099ff;
}
/* Headers*/
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0099ff;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0099ff;
  border-bottom-color: #0099ff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #0099ff !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: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%230099ff' %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.3;
}
.cid-tcDW60YOIV .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tcDW60YOIV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tcDW60YOIV a {
  font-style: normal;
}
.cid-tcDW60YOIV .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tcDW60YOIV .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tcDW60YOIV .nav-item:focus,
.cid-tcDW60YOIV .nav-link:focus {
  outline: none;
}
.cid-tcDW60YOIV .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tcDW60YOIV .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tcDW60YOIV .menu-logo {
  margin-right: auto;
}
.cid-tcDW60YOIV .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tcDW60YOIV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tcDW60YOIV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tcDW60YOIV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tcDW60YOIV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tcDW60YOIV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tcDW60YOIV .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tcDW60YOIV .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tcDW60YOIV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tcDW60YOIV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tcDW60YOIV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tcDW60YOIV .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tcDW60YOIV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tcDW60YOIV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcDW60YOIV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tcDW60YOIV .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-tcDW60YOIV .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tcDW60YOIV .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tcDW60YOIV .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tcDW60YOIV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tcDW60YOIV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tcDW60YOIV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tcDW60YOIV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tcDW60YOIV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tcDW60YOIV button.navbar-toggler:focus {
  outline: none;
}
.cid-tcDW60YOIV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-tcDW60YOIV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcDW60YOIV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcDW60YOIV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcDW60YOIV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcDW60YOIV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcDW60YOIV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcDW60YOIV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcDW60YOIV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcDW60YOIV .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tcDW60YOIV .collapsed .btn {
  display: -webkit-flex;
}
.cid-tcDW60YOIV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tcDW60YOIV .collapsed .navbar-collapse.collapsing,
.cid-tcDW60YOIV .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tcDW60YOIV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tcDW60YOIV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tcDW60YOIV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tcDW60YOIV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tcDW60YOIV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tcDW60YOIV .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tcDW60YOIV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tcDW60YOIV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tcDW60YOIV .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tcDW60YOIV .collapsed button.navbar-toggler {
  display: block;
}
.cid-tcDW60YOIV .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tcDW60YOIV .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tcDW60YOIV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-tcDW60YOIV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tcDW60YOIV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tcDW60YOIV .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tcDW60YOIV .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tcDW60YOIV img {
    height: 3.8rem !important;
  }
  .cid-tcDW60YOIV .btn {
    display: -webkit-flex;
  }
  .cid-tcDW60YOIV button.navbar-toggler {
    display: block;
  }
  .cid-tcDW60YOIV .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tcDW60YOIV .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tcDW60YOIV .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tcDW60YOIV .navbar-collapse.collapsing,
  .cid-tcDW60YOIV .navbar-collapse.show {
    display: block !important;
  }
  .cid-tcDW60YOIV .navbar-collapse.collapsing .navbar-nav,
  .cid-tcDW60YOIV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tcDW60YOIV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tcDW60YOIV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tcDW60YOIV .navbar-collapse.collapsing .navbar-buttons,
  .cid-tcDW60YOIV .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tcDW60YOIV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tcDW60YOIV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tcDW60YOIV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tcDW60YOIV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tcDW60YOIV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tcDW60YOIV .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tcDW60YOIV .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tcDW60YOIV .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tcDW60YOIV .nav-link:hover,
.cid-tcDW60YOIV .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tcBVFQcb6a .main-card {
  background-image: url("../../../assets/images/2344-1125x1358.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
  align-items: center;
  display: flex;
}
.cid-tcBVFQcb6a .mbr-main-subtitle {
  background: #0099ff;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: left;
  color: #ffffff;
}
.cid-tcBVFQcb6a .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #0099ff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tcBVFQcb6a .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tcBVFQcb6a .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 400px;
}
.cid-tcBVFQcb6a .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  z-index: 1;
}
.cid-tcBVFQcb6a .card:hover:before {
  opacity: 0.5;
}
.cid-tcBVFQcb6a .card:hover img {
  transform: scale(1.1);
}
.cid-tcBVFQcb6a .card:hover .card-box {
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 767px) {
  .cid-tcBVFQcb6a .card:before {
    opacity: 0.5;
  }
  .cid-tcBVFQcb6a .card .card-box {
    opacity: 1;
    transform: translateY(0px);
  }
}
.cid-tcBVFQcb6a .card img {
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tcBVFQcb6a .content {
  max-width: 450px;
  margin: auto;
  padding: 4rem 2rem;
}
@media (max-width: 992px) {
  .cid-tcBVFQcb6a .content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tcBVFQcb6a .content {
    padding: 4rem 1rem;
  }
}
.cid-tcBVFQcb6a .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-tcBVFQcb6a .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #0099ff;
  font-size: 1.2rem;
}
.cid-tcBVFQcb6a .card-box {
  opacity: 0;
  transition: all 0.3s;
  padding: 1rem;
  transform: translateY(15px);
}
.cid-tcBVFQcb6a .card-wrapper {
  position: absolute;
  cursor: pointer;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  margin: auto;
  overflow: hidden;
  z-index: 2;
}
.cid-tcBVFQcb6a .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tcBVFQcb6a .card1-text {
  color: #ffffff;
  text-align: center;
}
.cid-tcBVFQcb6a .mbr-section-subtitle,
.cid-tcBVFQcb6a .main-btn {
  color: #efefef;
  text-align: left;
}
.cid-tcBVFQcb6a .soc-link,
.cid-tcBVFQcb6a .soc-wrapper {
  color: #ffffff;
}
.cid-tcBVFQcb6a .mbr-section-title {
  color: #ffffff;
}
.cid-tcTsOa09e1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcqnc2n3Wq {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tcqnc2n3Wq .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tcqnc2n3Wq .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-tcqnc2n3Wq .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tcqnc2n3Wq .img-text {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border: 2px solid #efefef;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-tcqnc2n3Wq .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-tcqnc2n3Wq .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-tcqnc2n3Wq .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-tcqnc2n3Wq .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-tcqnc2n3Wq .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tcqnc2n3Wq .media-block {
    padding-left: 2rem;
  }
}
.cid-tcqnc2n3Wq .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-tcqnc2n3Wq .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-tcqnc2n3Wq .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tcO8Zjwft8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tcO8Zjwft8 .title__block {
  position: relative;
  z-index: 10;
}
.cid-tcO8Zjwft8 .mbr-section-title {
  margin-bottom: 25px;
  color: #2e2e2e;
  text-align: right;
}
.cid-tcO8Zjwft8 .mbr-section-subtitle {
  margin-bottom: 10px;
  padding-right: 150px;
}
.cid-tcO8Zjwft8 .mbr-text {
  margin-bottom: 50px;
  padding-right: 150px;
}
.cid-tcO8Zjwft8 .mbr-section-btn {
  padding-right: 150px;
}
.cid-tcO8Zjwft8 .slider__block .container {
  padding: 0 15px;
}
.cid-tcO8Zjwft8 .carousel {
  padding-bottom: 100px;
}
.cid-tcO8Zjwft8 .carousel-inner {
  overflow: visible;
  transform: translateX(250px);
}
.cid-tcO8Zjwft8 .carousel-item {
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease, transform 0s ease .3s;
}
.cid-tcO8Zjwft8 .carousel-item.active {
  opacity: 1;
}
.cid-tcO8Zjwft8 .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-tcO8Zjwft8 .carousel-item .wrap-img {
  transition: transform 0s;
  position: relative;
  text-align: center;
  margin: auto;
  width: 400px;
  height: 600px;
  transform: scale(0.9) rotate(-7deg);
  z-index: 1;
}
.cid-tcO8Zjwft8 .carousel-item .wrap-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tcO8Zjwft8 .carousel-item .wrap-img {
    width: 100%;
  }
}
.cid-tcO8Zjwft8 .carousel-item .cloneditem-1,
.cid-tcO8Zjwft8 .carousel-item .cloneditem-2 {
  opacity: 0;
}
.cid-tcO8Zjwft8 .carousel-item.active .cloneditem-1 {
  transform: translateX(-170px);
  z-index: 2;
  opacity: 1;
  transition: opacity .5s ease .3s;
}
.cid-tcO8Zjwft8 .carousel-item.active .cloneditem-1 .wrap-img {
  transform: scale(1.1);
}
.cid-tcO8Zjwft8 .carousel-item.active .cloneditem-2 {
  transform: translateX(-270px);
  z-index: 3;
  opacity: 1;
  transition: opacity .5s ease .7s;
}
.cid-tcO8Zjwft8 .carousel-item.active .cloneditem-2 .wrap-img {
  transform: scale(0.9) rotate(7deg);
}
.cid-tcO8Zjwft8 .arrows .carousel-controls {
  top: -150px;
  left: 80px;
}
.cid-tcO8Zjwft8 .carousel-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
  justify-content: center;
}
.cid-tcO8Zjwft8 .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 45px;
  height: 45px;
  color: #003d59;
  transition: all 0.3s ease;
}
.cid-tcO8Zjwft8 .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-tcO8Zjwft8 .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-tcO8Zjwft8 .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 45px;
}
.cid-tcO8Zjwft8 .carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  margin: 2rem 1rem 0;
  text-align: center;
}
.cid-tcO8Zjwft8 .carousel-indicators li {
  max-width: initial;
  width: 190px;
  height: 15px;
  background-color: transparent;
  display: inline-block;
  border: 0;
  border-bottom: 2px solid #003d59;
  max-height: initial;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: all 0s ease .3s;
}
.cid-tcO8Zjwft8 .carousel-indicators li.active {
  border: 0;
  border-bottom: 5px solid #003d59;
  margin: 0;
  opacity: 1;
}
.cid-tcO8Zjwft8 .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
.cid-tcO8Zjwft8 .cloneditem-1,
.cid-tcO8Zjwft8 .cloneditem-2,
.cid-tcO8Zjwft8 .cloneditem-3 {
  display: none;
}
@media (min-width: 992px) {
  .cid-tcO8Zjwft8 .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-tcO8Zjwft8 .carousel-inner {
    padding-bottom: 3px;
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-tcO8Zjwft8 .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-tcO8Zjwft8 .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-tcO8Zjwft8 .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tcO8Zjwft8 .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides2 .cloneditem-1,
  .cid-tcO8Zjwft8 .carousel-inner.slides2 .cloneditem-2,
  .cid-tcO8Zjwft8 .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-tcO8Zjwft8 .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-tcO8Zjwft8 .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-tcO8Zjwft8 .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tcO8Zjwft8 .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tcO8Zjwft8 .carousel-inner.slides3 .cloneditem-1,
  .cid-tcO8Zjwft8 .carousel-inner.slides3 .cloneditem-2,
  .cid-tcO8Zjwft8 .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-tcO8Zjwft8 .title__block {
    text-align: center;
    margin-bottom: 67px;
  }
  .cid-tcO8Zjwft8 .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-tcO8Zjwft8 .mbr-section-subtitle {
    margin-bottom: 7px;
    padding-right: 0;
  }
  .cid-tcO8Zjwft8 .mbr-text {
    margin-bottom: 28px;
    padding-right: 0;
  }
  .cid-tcO8Zjwft8 .mbr-section-btn {
    padding-right: 0;
  }
  .cid-tcO8Zjwft8 .carousel-inner {
    overflow: hidden;
    transform: translateX(0);
  }
  .cid-tcO8Zjwft8 .carousel-item {
    transition: all .3s ease;
    opacity: 1;
  }
  .cid-tcO8Zjwft8 .carousel-item .wrap-img {
    height: auto;
    transition: all .3s 0s;
    transform: scale(1) rotate(0);
    width: 100%;
  }
  .cid-tcO8Zjwft8 .carousel-indicators li {
    transition: all 0s ease 0s;
  }
}
@media (max-width: 767px) {
  .cid-tcO8Zjwft8 .carousel-controls {
    justify-content: center;
    margin-top: 40px;
    display: none;
  }
  .cid-tcO8Zjwft8 .carousel-controls .carousel-control {
    width: 30px;
    height: 30px;
  }
  .cid-tcO8Zjwft8 .carousel-controls .carousel-control .mbr-iconfont {
    font-size: 30px;
  }
  .cid-tcO8Zjwft8 .carousel {
    padding-bottom: 50px;
  }
}
.cid-tcCrRFfELi {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tcCrRFfELi .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-tcCrRFfELi .col-text {
    padding: 0 0 0 0;
  }
}
.cid-tcCrRFfELi .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #f9f7f5;
}
@media (max-width: 767px) {
  .cid-tcCrRFfELi .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-tcCrRFfELi .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #149dcc;
}
@media (max-width: 767px) {
  .cid-tcCrRFfELi .label-text {
    text-align: center !important;
  }
}
.cid-tcCrRFfELi .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tcCrRFfELi .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tcCrRFfELi .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tcCrRFfELi .mbr-text {
    text-align: center !important;
  }
}
.cid-tcCrRFfELi .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tcCrRFfELi .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-tcCrRFfELi .mbr-section-btn .btn {
  padding: 0;
}
.cid-tcCrRFfELi .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-tcCrRFfELi .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-tcCrRFfELi .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-tcCrRFfELi .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-tcCrRFfELi .col-cards {
    padding-left: 5%;
  }
}
.cid-tcCrRFfELi .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-tcCrRFfELi .cards-wrap:hover {
  background-color: #f9f7f5;
}
.cid-tcCrRFfELi .card {
  padding: 30px;
  background-color: #ffffff;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-tcCrRFfELi .card:hover {
  background-color: #f9f7f5;
}
@media (min-width: 768px) {
  .cid-tcCrRFfELi .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-tcCrRFfELi .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tcCrRFfELi .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-tcCrRFfELi .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-tcCrRFfELi .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-tcCrRFfELi .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tcCrRFfELi .img-bg {
  background-color: #F0C48A;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-tcCrRFfELi .card-title {
  color: #149dcc;
  margin-bottom: 8px;
}
.cid-tcCrRFfELi .card-text {
  color: #222222;
  margin-bottom: 0;
}
.cid-tcCSIpaN7s {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f9f9f9;
}
.cid-tcCSIpaN7s .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tcCSIpaN7s .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tcCSIpaN7s .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tcCSIpaN7s .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tcCSIpaN7s .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-tcCSIpaN7s .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tcCSIpaN7s .card .panel-body {
  color: #767676;
}
.cid-tcOanO7RO3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tcOanO7RO3 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tcOanO7RO3 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tcOanO7RO3 .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-tcOanO7RO3 .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-tcOanO7RO3 .card-front img {
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-tcOanO7RO3 .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #232323;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-tcOanO7RO3 .card {
  min-height: 300px;
}
.cid-tcOanO7RO3 .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-tcOanO7RO3 .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-tcOanO7RO3 .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-tcOanO7RO3 .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-tcO1LBBOeR {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcO1LBBOeR .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tcO1LBBOeR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tcO1LBBOeR .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-tcO1LBBOeR .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-tcO1LBBOeR .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-tcO1LBBOeR .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tcO1LBBOeR .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-tcO1LBBOeR .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tcO1LBBOeR .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-tcO1LBBOeR .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tcO1LBBOeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-tcO1LBBOeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tcqnc7ZW2Y {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcqnc7ZW2Y .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tcqnc7ZW2Y .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-tcqnc7ZW2Y .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tcqnc7ZW2Y .img-text {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border: 2px solid #efefef;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-tcqnc7ZW2Y .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-tcqnc7ZW2Y .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-tcqnc7ZW2Y .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-tcqnc7ZW2Y .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-tcqnc7ZW2Y .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tcqnc7ZW2Y .media-block {
    padding-left: 2rem;
  }
}
.cid-tcqnc7ZW2Y .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-tcqnc7ZW2Y .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-tcqnc7ZW2Y .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tcJXt5TsHP {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tcJXt5TsHP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tcJXt5TsHP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tcJXt5TsHP .row {
  justify-content: space-between;
}
.cid-tcJXt5TsHP .mbr-text,
.cid-tcJXt5TsHP .mbr-section-btn {
  color: #232323;
}
.cid-tcEjItrX8D {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tcEjItrX8D .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tcEjItrX8D .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tcEjItrX8D .mbr-gallery {
  border-radius: 20px;
  border: 3px solid #000;
  overflow: hidden;
}
.cid-tcEjItrX8D .mbr-section-head {
  width: fit-content;
  border-radius: 20px;
  background-color: #ffffff;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 80px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-tcEjItrX8D .mbr-section-head .display-7 {
    font-size: 23.8px;
  }
}
.cid-tcEjItrX8D .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tcEjItrX8D .item-wrapper img {
  object-fit: cover;
}
.cid-tcEjItrX8D .item-wrapper img {
  height: 100%;
}
.cid-tcEjItrX8D .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  transition: 0.2s;
}
.cid-tcEjItrX8D .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tcEjItrX8D .carousel-control,
.cid-tcEjItrX8D .close {
  background: #1b1b1b;
}
.cid-tcEjItrX8D .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tcEjItrX8D .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tcEjItrX8D .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
}
.cid-tcEjItrX8D .close::before {
  content: '\e91a';
}
.cid-tcEjItrX8D .close:hover {
  opacity: .7;
}
.cid-tcEjItrX8D .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  opacity: 0.5;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tcEjItrX8D .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcEjItrX8D .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tcEjItrX8D .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tcEjItrX8D .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tcEjItrX8D .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tcEjItrX8D .carousel-indicators li.active,
.cid-tcEjItrX8D .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tcEjItrX8D .carousel-indicators li::after,
.cid-tcEjItrX8D .carousel-indicators li::before {
  content: none;
}
.cid-tcEjItrX8D .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tcEjItrX8D .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tcEjItrX8D .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tcEjItrX8D .carousel-indicators {
    display: none;
  }
}
.cid-tcEjItrX8D .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tcEjItrX8D .carousel-inner > .active {
  display: block;
}
.cid-tcEjItrX8D .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcEjItrX8D .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcEjItrX8D .carousel-control:hover {
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-tcEjItrX8D .carousel-control,
  .cid-tcEjItrX8D .carousel-indicators,
  .cid-tcEjItrX8D .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tcEjItrX8D .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tcEjItrX8D .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tcEjItrX8D .carousel-indicators .active,
.cid-tcEjItrX8D .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tcEjItrX8D .carousel-indicators .active {
  background: #fff;
}
.cid-tcEjItrX8D .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tcEjItrX8D .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tcEjItrX8D .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tcEjItrX8D .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tcEjItrX8D .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tcEjItrX8D .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tcEjItrX8D .carousel {
  width: 100%;
}
.cid-tcEjItrX8D .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tcEjItrX8D .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tcEjItrX8D .modal.fade .modal-dialog,
.cid-tcEjItrX8D .modal.in .modal-dialog {
  transform: none;
}
.cid-tcEjItrX8D .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tcEjItrX8D H6 {
  text-align: center;
}
.cid-tcEjItrX8D H3 {
  text-align: right;
  color: #2e2e2e;
}
.cid-tcqnc8zhNZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tcqnc8zhNZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tcqnc8zhNZ .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tcqnc8zhNZ .mbr-text {
  color: #767676;
}
.cid-tfhv05UmS5 {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfhv05UmS5 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfhv05UmS5 .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfhv05UmS5 .mbr-gallery {
  border-radius: 20px;
  border: 3px solid #000;
  overflow: hidden;
}
.cid-tfhv05UmS5 .mbr-section-head {
  width: fit-content;
  border-radius: 20px;
  background-color: #ffffff;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 80px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-tfhv05UmS5 .mbr-section-head .display-7 {
    font-size: 23.8px;
  }
}
.cid-tfhv05UmS5 .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tfhv05UmS5 .item-wrapper img {
  object-fit: cover;
}
.cid-tfhv05UmS5 .item-wrapper img {
  height: 100%;
}
.cid-tfhv05UmS5 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  transition: 0.2s;
}
.cid-tfhv05UmS5 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfhv05UmS5 .carousel-control,
.cid-tfhv05UmS5 .close {
  background: #1b1b1b;
}
.cid-tfhv05UmS5 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfhv05UmS5 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfhv05UmS5 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
}
.cid-tfhv05UmS5 .close::before {
  content: '\e91a';
}
.cid-tfhv05UmS5 .close:hover {
  opacity: .7;
}
.cid-tfhv05UmS5 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  opacity: 0.5;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tfhv05UmS5 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfhv05UmS5 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfhv05UmS5 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfhv05UmS5 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfhv05UmS5 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tfhv05UmS5 .carousel-indicators li.active,
.cid-tfhv05UmS5 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfhv05UmS5 .carousel-indicators li::after,
.cid-tfhv05UmS5 .carousel-indicators li::before {
  content: none;
}
.cid-tfhv05UmS5 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfhv05UmS5 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfhv05UmS5 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfhv05UmS5 .carousel-indicators {
    display: none;
  }
}
.cid-tfhv05UmS5 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfhv05UmS5 .carousel-inner > .active {
  display: block;
}
.cid-tfhv05UmS5 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfhv05UmS5 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfhv05UmS5 .carousel-control:hover {
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-tfhv05UmS5 .carousel-control,
  .cid-tfhv05UmS5 .carousel-indicators,
  .cid-tfhv05UmS5 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfhv05UmS5 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfhv05UmS5 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfhv05UmS5 .carousel-indicators .active,
.cid-tfhv05UmS5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfhv05UmS5 .carousel-indicators .active {
  background: #fff;
}
.cid-tfhv05UmS5 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfhv05UmS5 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfhv05UmS5 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfhv05UmS5 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfhv05UmS5 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfhv05UmS5 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfhv05UmS5 .carousel {
  width: 100%;
}
.cid-tfhv05UmS5 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfhv05UmS5 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfhv05UmS5 .modal.fade .modal-dialog,
.cid-tfhv05UmS5 .modal.in .modal-dialog {
  transform: none;
}
.cid-tfhv05UmS5 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfhv05UmS5 H6 {
  text-align: center;
}
.cid-tfhv05UmS5 H3 {
  text-align: right;
  color: #2e2e2e;
}
.cid-tBInCYVU0o {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tBInCYVU0o .title {
  margin-bottom: 2rem;
}
.cid-tBInCYVU0o .mbr-section-subtitle {
  color: #767676;
}
.cid-tBInCYVU0o a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tBInCYVU0o a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tBInCYVU0o .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tBInCYVU0o .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-tdWGcrGqBi {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tdWGcrGqBi H2 {
  color: #465052;
}
.cid-tdWGcrGqBi .mbr-section-subtitle {
  color: #212529;
}
.cid-tdWGcsgY7p {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tdWGcsgY7p .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-tdWGcsgY7p .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tdWGcsgY7p .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tdWGcsgY7p .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-tdWGcsgY7p .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-tdWGcsgY7p .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-tdWGcsgY7p .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-tdWGcsgY7p .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-tdWGcsgY7p .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-tdWGctqF24 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tdWGctqF24 h3 {
  text-align: center;
}
.cid-tdWGctqF24 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tdWGctqF24 .mbr-content-text {
  color: #767676;
}
.cid-tdWGctqF24 .panel-item {
  background: #ffffff;
}
.cid-tdWGctqF24 .card {
  word-wrap: break-word;
}
.cid-tdWGctqF24 .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-tdWGcutZAv {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-tdWGcutZAv h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tdWGcutZAv p {
  color: #767676;
  text-align: left;
}
.cid-tdWGcutZAv .card-box {
  padding-top: 2rem;
}
.cid-tdWGcutZAv .card-wrapper {
  height: 100%;
}
.cid-tdWGcvrE1B {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-tdWGcvrE1B h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tdWGcvrE1B p {
  color: #767676;
  text-align: left;
}
.cid-tdWGcvrE1B .card-box {
  padding-top: 2rem;
}
.cid-tdWGcvrE1B .card-wrapper {
  height: 100%;
}
.cid-tdWGcwkQJq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-tdWGcwkQJq h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-tdWGcwkQJq p {
  color: #767676;
  text-align: left;
}
.cid-tdWGcwkQJq .card-box {
  padding-top: 2rem;
}
.cid-tdWGcwkQJq .card-wrapper {
  height: 100%;
}
.cid-tdWGcxdE75 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tdWGcxdE75 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tdWGcxdE75 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tdWGcxdE75 .mbr-text {
  color: #767676;
}
.cid-tdWGcy0VAO {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tdWGcy0VAO .title {
  padding-bottom: 2.5rem;
}
.cid-tdWGcy0VAO .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-tdWGcy0VAO .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
}
.cid-tdWGcy0VAO .iconfont-wrapper .amp-iconfont {
  font-size: 2rem;
}
.cid-tdWGcy0VAO .wrapper {
  display: flex;
  padding: 1rem 0;
}
.cid-tdWGcy0VAO .wrapper .b-info {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tdWGcy0VAO .iconfont-wrapper {
    display: none;
  }
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-sjyxVpqfCl {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sjyxVpqfCl .title {
  margin-bottom: 2rem;
}
.cid-sjyxVpqfCl .mbr-section-subtitle {
  color: #767676;
}
.cid-sjyxVpqfCl a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sjyxVpqfCl a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sjyxVpqfCl .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sjyxVpqfCl .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-teZvoNmjVn {
  background-image: url("../../../assets/images/httt-1-1080x1080.jpeg");
}
.cid-teZvoNmjVn .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-teZvoNmjVn .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-teZvoNmjVn .mbr-figure img {
    width: 100% !important;
  }
}
.cid-teZvoNSs8L {
  padding-top: 7rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-teZvoNSs8L .title__block {
  position: relative;
  z-index: 10;
}
.cid-teZvoNSs8L .mbr-section-title {
  margin-bottom: 25px;
  color: #e4d295;
  text-align: right;
}
.cid-teZvoNSs8L .mbr-section-subtitle {
  margin-bottom: 10px;
  padding-right: 150px;
}
.cid-teZvoNSs8L .mbr-text {
  margin-bottom: 50px;
  padding-right: 150px;
}
.cid-teZvoNSs8L .mbr-section-btn {
  padding-right: 150px;
}
.cid-teZvoNSs8L .slider__block .container {
  padding: 0 15px;
}
.cid-teZvoNSs8L .carousel {
  padding-bottom: 100px;
}
.cid-teZvoNSs8L .carousel-inner {
  overflow: visible;
  transform: translateX(250px);
}
.cid-teZvoNSs8L .carousel-item {
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease, transform 0s ease .3s;
}
.cid-teZvoNSs8L .carousel-item.active {
  opacity: 1;
}
.cid-teZvoNSs8L .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-teZvoNSs8L .carousel-item .wrap-img {
  transition: transform 0s;
  position: relative;
  text-align: center;
  margin: auto;
  width: 400px;
  height: 600px;
  transform: scale(0.9) rotate(-7deg);
  z-index: 1;
}
.cid-teZvoNSs8L .carousel-item .wrap-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-teZvoNSs8L .carousel-item .wrap-img {
    width: 100%;
  }
}
.cid-teZvoNSs8L .carousel-item .cloneditem-1,
.cid-teZvoNSs8L .carousel-item .cloneditem-2 {
  opacity: 0;
}
.cid-teZvoNSs8L .carousel-item.active .cloneditem-1 {
  transform: translateX(-170px);
  z-index: 2;
  opacity: 1;
  transition: opacity .5s ease .3s;
}
.cid-teZvoNSs8L .carousel-item.active .cloneditem-1 .wrap-img {
  transform: scale(1.1);
}
.cid-teZvoNSs8L .carousel-item.active .cloneditem-2 {
  transform: translateX(-270px);
  z-index: 3;
  opacity: 1;
  transition: opacity .5s ease .7s;
}
.cid-teZvoNSs8L .carousel-item.active .cloneditem-2 .wrap-img {
  transform: scale(0.9) rotate(7deg);
}
.cid-teZvoNSs8L .arrows .carousel-controls {
  top: -150px;
  left: 80px;
}
.cid-teZvoNSs8L .carousel-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
  justify-content: center;
}
.cid-teZvoNSs8L .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 45px;
  height: 45px;
  color: #003d59;
  transition: all 0.3s ease;
}
.cid-teZvoNSs8L .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-teZvoNSs8L .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-teZvoNSs8L .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 45px;
}
.cid-teZvoNSs8L .carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  margin: 2rem 1rem 0;
  text-align: center;
}
.cid-teZvoNSs8L .carousel-indicators li {
  max-width: initial;
  width: 190px;
  height: 15px;
  background-color: transparent;
  display: inline-block;
  border: 0;
  border-bottom: 2px solid #003d59;
  max-height: initial;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: all 0s ease .3s;
}
.cid-teZvoNSs8L .carousel-indicators li.active {
  border: 0;
  border-bottom: 5px solid #003d59;
  margin: 0;
  opacity: 1;
}
.cid-teZvoNSs8L .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
.cid-teZvoNSs8L .cloneditem-1,
.cid-teZvoNSs8L .cloneditem-2,
.cid-teZvoNSs8L .cloneditem-3 {
  display: none;
}
@media (min-width: 992px) {
  .cid-teZvoNSs8L .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-teZvoNSs8L .carousel-inner {
    padding-bottom: 3px;
  }
  .cid-teZvoNSs8L .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-teZvoNSs8L .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-teZvoNSs8L .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-teZvoNSs8L .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-teZvoNSs8L .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-teZvoNSs8L .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-teZvoNSs8L .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-teZvoNSs8L .carousel-inner.slides2 .cloneditem-1,
  .cid-teZvoNSs8L .carousel-inner.slides2 .cloneditem-2,
  .cid-teZvoNSs8L .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-teZvoNSs8L .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-teZvoNSs8L .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-teZvoNSs8L .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-teZvoNSs8L .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-teZvoNSs8L .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-teZvoNSs8L .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-teZvoNSs8L .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-teZvoNSs8L .carousel-inner.slides3 .cloneditem-1,
  .cid-teZvoNSs8L .carousel-inner.slides3 .cloneditem-2,
  .cid-teZvoNSs8L .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-teZvoNSs8L .title__block {
    text-align: center;
    margin-bottom: 67px;
  }
  .cid-teZvoNSs8L .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-teZvoNSs8L .mbr-section-subtitle {
    margin-bottom: 7px;
    padding-right: 0;
  }
  .cid-teZvoNSs8L .mbr-text {
    margin-bottom: 28px;
    padding-right: 0;
  }
  .cid-teZvoNSs8L .mbr-section-btn {
    padding-right: 0;
  }
  .cid-teZvoNSs8L .carousel-inner {
    overflow: hidden;
    transform: translateX(0);
  }
  .cid-teZvoNSs8L .carousel-item {
    transition: all .3s ease;
    opacity: 1;
  }
  .cid-teZvoNSs8L .carousel-item .wrap-img {
    height: auto;
    transition: all .3s 0s;
    transform: scale(1) rotate(0);
    width: 100%;
  }
  .cid-teZvoNSs8L .carousel-indicators li {
    transition: all 0s ease 0s;
  }
}
@media (max-width: 767px) {
  .cid-teZvoNSs8L .carousel-controls {
    justify-content: center;
    margin-top: 40px;
    display: none;
  }
  .cid-teZvoNSs8L .carousel-controls .carousel-control {
    width: 30px;
    height: 30px;
  }
  .cid-teZvoNSs8L .carousel-controls .carousel-control .mbr-iconfont {
    font-size: 30px;
  }
  .cid-teZvoNSs8L .carousel {
    padding-bottom: 50px;
  }
}
.cid-teZvoNSs8L .mbr-section-title DIV {
  text-align: left;
}
.cid-uodTIzzdyr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uodTIzzdyr .content {
    max-width: 550px;
    margin: auto 0;
  }
}
@media (min-width: 767px) {
  .cid-uodTIzzdyr .content {
    padding: 0 2rem;
  }
}
.cid-uodTIzzdyr .row {
  -webkit-box-pack: start;
  justify-content: flex-start;
}
.cid-uodTIzzdyr .img-col {
  padding: 0;
}
.cid-uodTIzzdyr .align-wrap {
  width: fit-content;
  display: inline-block;
}
.cid-uodTIzzdyr .mbr-iconfont {
  font-size: 3rem;
  color: #383838 !important;
  padding-bottom: 1.5rem;
  display: block;
}
.cid-uodTIzzdyr .icon-title,
.cid-uodTIzzdyr .icon-wrap {
  color: #ed6436;
}
.cid-uodTIzzdyr .mbr-text,
.cid-uodTIzzdyr .mbr-section-btn,
.cid-uodTIzzdyr .content {
  color: #181818;
}
@media (max-width: 992px) {
  .cid-uodTIzzdyr .content {
    margin: auto;
  }
}
.cid-uodTIzzdyr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uodTIzzdyr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u3683ymFAg {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u3683ymFAg h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u3683ymFAg p {
  color: #767676;
  text-align: left;
}
.cid-u3683ymFAg .card-box {
  padding-top: 2rem;
}
.cid-u3683ymFAg .card-wrapper {
  height: 100%;
}
.cid-u3683ymFAg .card-title {
  text-align: center;
}
.cid-uoe3sqnPU1 {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #eae8e4;
}
.cid-uoe3sqnPU1 .row {
  align-items: center;
  flex-direction: row-reverse;
}
.cid-uoe3sqnPU1 .mbr-section-title {
  margin-bottom: 2rem;
}
.cid-uoe3sqnPU1 .mbr-text {
  margin-bottom: 2rem;
}
.cid-uoe3sqnPU1 .image-wrapper,
.cid-uoe3sqnPU1 img {
  width: 100%;
}
.cid-uoe3sqnPU1 .image-wrapper {
  overflow: hidden;
}
.cid-uoe3sqnPU1 .image-wrapper img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.cid-uoe3sqnPU1 .image-wrapper img:hover {
  transform: scale(1.1);
}
@media (min-width: 992px) {
  .cid-uoe3sqnPU1 .content_box {
    padding-right: 5rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uoe3sqnPU1 .row {
    flex-direction: column-reverse;
  }
  .cid-uoe3sqnPU1 .content_box,
  .cid-uoe3sqnPU1 .mbr-text {
    padding: 0;
  }
  .cid-uoe3sqnPU1 .mbr-section-title {
    margin-bottom: 1rem;
  }
  .cid-uoe3sqnPU1 .mbr-text {
    margin-bottom: 1.25rem;
  }
  .cid-uoe3sqnPU1 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uoe3sqnPU1 .flash:hover {
  opacity: 1;
  -webkit-animation: flash 1s;
  animation: flash 1s;
}
@-webkit-keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}
@keyframes flash {
  0% {
    opacity: .3;
  }
  100% {
    opacity: 1;
  }
}
.cid-tT3T9OviVk {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tT3T9OviVk .mbr-section-subtitle {
  color: #232323;
}
.cid-tT3T9OviVk H2 {
  color: #000000;
}
.cid-teZvoOTR4J {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-teZvoOTR4J .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-teZvoOTR4J .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-teZvoOTR4J .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-teZvoOTR4J .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-teZvoOTR4J .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-teZvoOTR4J .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-teZvoOTR4J .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-teZvoOTR4J .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-teZvoOTR4J .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
  background: linear-gradient(to left, #554346, #45505b) !important;
}
.cid-teZvoPywlF {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-teZvoPywlF .card-wrapper {
  display: inline-flex;
  align-items: center;
}
.cid-teZvoPywlF .icon {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-teZvoPywlF .item-border {
  border-top: 2px solid black;
  margin-bottom: 2rem;
  justify-content: space-between;
}
.cid-teZvoPywlF .item-border:hover .mbr-iconfont2 {
  color: #0099ff;
  transform: translateX(5px);
}
.cid-teZvoPywlF .mbr-iconfont1 {
  font-size: 5rem;
  color: #fa4529;
}
.cid-teZvoPywlF .mbr-iconfont2 {
  font-size: 2rem;
  color: currentColor;
  transition: all 0.3s;
}
.cid-teZvoPywlF .mbr-flex {
  display: flex;
  align-items: center;
}
.cid-teZvoPywlF .card {
  border-radius: 0px;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .cid-teZvoPywlF .card-wrapper,
  .cid-teZvoPywlF .mbr-flex {
    flex-direction: column;
  }
  .cid-teZvoPywlF .mbr-iconfont {
    margin-bottom: 1rem;
    margin-right: 0;
  }
  .cid-teZvoPywlF h4 {
    padding: 0;
  }
  .cid-teZvoPywlF .card {
    padding-top: 3rem;
  }
}
.cid-teZvoPywlF .card-text {
  color: #666666;
}
.cid-teZvoPywlF .mbr-text,
.cid-teZvoPywlF .mbr-section-btn {
  color: #666666;
}
.cid-teZvoPywlF .card-title,
.cid-teZvoPywlF .mbr-iconfont2 {
  color: #000000;
}
.cid-teZvoPywlF .mbr-text {
  color: #ff3366;
}
.cid-uobUHGcyyR {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uobUHGcyyR .quote-column {
  padding-left: 3rem;
}
.cid-uobUHGcyyR .card-wrapper {
  background-color: #e4d295;
  padding: 1.5rem;
}
@media (max-width: 767px) {
  .cid-uobUHGcyyR .card-wrapper {
    padding: 1rem;
  }
}
.cid-uobUHGcyyR .text-wrapper {
  max-width: 32rem;
  margin: auto;
}
.cid-uobUHGcyyR .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uobUHGcyyR .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uobUHGcyyR .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uobUHGcyyR .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uobUHGcyyR .content-wrapper {
    padding: 2.5rem;
  }
  .cid-uobUHGcyyR .content-wrapper .text-wrapper {
    padding: 2.5rem 1.5rem;
  }
}
.cid-uobUHGcyyR .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uobUHGcyyR .card-img {
  margin-bottom: 1.25rem;
  text-align: left;
}
.cid-uobUHGcyyR .card-img span {
  font-size: 40px;
}
.cid-uobUHGcyyR .media-container-row {
  margin-top: 2rem;
}
.cid-uobUHGcyyR .text-post {
  color: #c1bebe;
  text-align: left;
}
.cid-uobUHGcyyR .card-title,
.cid-uobUHGcyyR .mbr-section-btn {
  text-align: left;
}
.cid-uobUHGcyyR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uobUHGcyyR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-teZvoQR2XX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-teZvoRdbnj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-teZvoRdbnj .title {
  margin-bottom: 2rem;
}
.cid-teZvoRdbnj .mbr-section-subtitle {
  color: #767676;
}
.cid-teZvoRdbnj a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-teZvoRdbnj a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-teZvoRdbnj textarea.form-control {
  min-height: 188px;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-t73d3FQ3C9 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1145.jpg");
}
.cid-t73d3FQ3C9 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-t73d3FQ3C9 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-t73d3FQ3C9 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-t73d3FQ3C9 H3 {
  text-align: right;
}
.cid-t7hC9nCh5t {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-t7hC9nCh5t .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-t7hC9nCh5t .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-t7hC9nCh5t .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-t7hC9nCh5t .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-t7hC9nCh5t .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-t7hC9nCh5t .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-t7hC9nCh5t .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-t7hC9nCh5t .media-block {
    padding-left: 2rem;
  }
}
.cid-t7hC9nCh5t .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-t7hC9nCh5t .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
@media (min-width: 768px) {
  .cid-t7hC9nCh5t .count {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .cid-t7hC9nCh5t .panel-item {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .cid-t7hC9nCh5t .card-img {
    padding-bottom: 1rem;
    padding-right: 0 !important;
    margin: auto;
  }
}
.cid-t7hC9nCh5t .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sUTG3zWXqv {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sUTG3zWXqv .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sUTG3zWXqv .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-sUTG3zWXqv .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-sUTG3zWXqv .img-text {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border: 2px solid #efefef;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-sUTG3zWXqv .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-sUTG3zWXqv .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-sUTG3zWXqv .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-sUTG3zWXqv .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-sUTG3zWXqv .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-sUTG3zWXqv .media-block {
    padding-left: 2rem;
  }
}
.cid-sUTG3zWXqv .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-sUTG3zWXqv .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-sUTG3zWXqv .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sUQJnSyf9q {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-sUQJnSyf9q H2 {
  color: #ffffff;
  text-align: left;
}
.cid-sUQJnSyf9q .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-sUQJnSyf9q .mbr-section-subtitle B {
  color: #ffffff;
}
.cid-sUwBBgbAWR {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-sUwBBgbAWR .card-box {
  padding: 0 2rem;
}
.cid-sUwBBgbAWR .mbr-section-btn {
  padding-top: 1rem;
}
.cid-sUwBBgbAWR .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-sUwBBgbAWR h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-sUwBBgbAWR p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-sUwBBgbAWR .mbr-text {
  color: #767676;
}
.cid-sUwBBgbAWR .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-sUwBBgbAWR .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-t7ids39Scc {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-t7ids39Scc H2 {
  color: #ffffff;
  text-align: left;
}
.cid-t7ids39Scc .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t7ids39Scc .mbr-section-subtitle B {
  color: #ffffff;
}
.cid-t7idnOLN3B {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-t7idnOLN3B .counter-container {
  color: #767676;
}
.cid-t7idnOLN3B .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-t7idnOLN3B .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-t7idnOLN3B .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-t7idnOLN3B .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.cid-t73nSr4dyX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #000000;
}
.cid-t73nSr4dyX H2 {
  color: #ffffff;
  text-align: left;
}
.cid-t73nSr4dyX .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-t73nSr4dyX .mbr-section-subtitle B {
  color: #ffffff;
}
.cid-t73nNBADUy {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #efefef;
}
.cid-t73nNBADUy .card-box {
  padding: 0 2rem;
}
.cid-t73nNBADUy .mbr-section-btn {
  padding-top: 1rem;
}
.cid-t73nNBADUy .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-t73nNBADUy h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-t73nNBADUy p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-t73nNBADUy .mbr-text {
  color: #767676;
}
.cid-t73nNBADUy .card-wrapper {
  height: 100%;
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-t73nNBADUy .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-t73nNBADUy .card-title {
  text-align: center;
}
.cid-sjyxVpqfCl {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sjyxVpqfCl .title {
  margin-bottom: 2rem;
}
.cid-sjyxVpqfCl .mbr-section-subtitle {
  color: #767676;
}
.cid-sjyxVpqfCl a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-sjyxVpqfCl a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-sjyxVpqfCl .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-sjyxVpqfCl .input-group-btn {
  display: block;
  text-align: center;
}
.cid-rkseaTeSeF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-rkseaTeSeF .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-rkseaTeSeF .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-rkseaTeSeF .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-rkseaTeSeF .img-text {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border: 2px solid #efefef;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-rkseaTeSeF .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-rkseaTeSeF .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-rkseaTeSeF .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-rkseaTeSeF .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-rkseaTeSeF .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-rkseaTeSeF .media-block {
    padding-left: 2rem;
  }
}
.cid-rkseaTeSeF .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-rkseaTeSeF .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-rkseaTeSeF .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-qSZvuZYqe1 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-qSZvuZYqe1 H2 {
  color: #465052;
}
.cid-qSZvuZYqe1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-qSZcxixgn3 {
  padding-top: 90px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-qSZcxixgn3 .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-qSZcxixgn3 .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-qSZcxixgn3 .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-qSZcxixgn3 .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-qSZcxixgn3 .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #554346;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-qSZcxixgn3 .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-qSZcxixgn3 .mbr-gallery-item > div:hover:before {
  opacity: 0.5 !important;
}
.cid-qSZcxixgn3 .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-qSZcxixgn3 .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #554346 !important;
  background: linear-gradient(to left, #554346, #45505b) !important;
  opacity: 0.5;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-t74r41hDQ3 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t74r41hDQ3 h3 {
  text-align: center;
}
.cid-t74r41hDQ3 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-t74r41hDQ3 .mbr-content-text {
  color: #767676;
}
.cid-t74r41hDQ3 .panel-item {
  background: #ffffff;
}
.cid-t74r41hDQ3 .card {
  word-wrap: break-word;
}
.cid-t74r41hDQ3 .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-qT04AxzCes {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-qT04AxzCes h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-qT04AxzCes p {
  color: #767676;
  text-align: left;
}
.cid-qT04AxzCes .card-box {
  padding-top: 2rem;
}
.cid-qT04AxzCes .card-wrapper {
  height: 100%;
}
.cid-riyeYKQAT5 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-riyeYKQAT5 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-riyeYKQAT5 p {
  color: #767676;
  text-align: left;
}
.cid-riyeYKQAT5 .card-box {
  padding-top: 2rem;
}
.cid-riyeYKQAT5 .card-wrapper {
  height: 100%;
}
.cid-t74oe6HLez {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-t74oe6HLez h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-t74oe6HLez p {
  color: #767676;
  text-align: left;
}
.cid-t74oe6HLez .card-box {
  padding-top: 2rem;
}
.cid-t74oe6HLez .card-wrapper {
  height: 100%;
}
.cid-qT0da4jrt0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-qT0da4jrt0 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-qT0da4jrt0 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-qT0da4jrt0 .mbr-text {
  color: #767676;
}
.cid-sUwTaT0BJi {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-sUwTaT0BJi .title {
  padding-bottom: 2.5rem;
}
.cid-sUwTaT0BJi .mbr-text {
  color: #767676;
  margin: 0;
  padding-top: 0.5rem;
}
.cid-sUwTaT0BJi .iconfont-wrapper {
  display: flex;
  align-items: center;
  width: 2rem;
  height: 2rem;
  margin-right: 2rem;
}
.cid-sUwTaT0BJi .iconfont-wrapper .amp-iconfont {
  font-size: 2rem;
}
.cid-sUwTaT0BJi .wrapper {
  display: flex;
  padding: 1rem 0;
}
.cid-sUwTaT0BJi .wrapper .b-info {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sUwTaT0BJi .iconfont-wrapper {
    display: none;
  }
}
.cid-t73XCK5QUQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1145.jpg");
}
.cid-t73XCK5QUQ .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-t73XCK5QUQ .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-t73XCK5QUQ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-t73XCK5QUQ .mbr-text {
    text-align: center;
  }
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-to9pWjaIAB {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-to9pWjaIAB .image-block {
  margin: auto;
}
.cid-to9pWjaIAB figcaption {
  position: relative;
}
.cid-to9pWjaIAB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-to9pWjaIAB .image-block {
    width: 100% !important;
  }
}
.cid-to9qJib1Pn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-to9qJib1Pn .mbr-section-subtitle {
  color: #232323;
}
.cid-to9qJib1Pn H2 {
  color: #000000;
}
.cid-to9y6onlTd {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-to9y6onlTd .image-block {
  margin: auto;
}
.cid-to9y6onlTd figcaption {
  position: relative;
}
.cid-to9y6onlTd figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-to9y6onlTd .image-block {
    width: 100% !important;
  }
}
.cid-toap45YAMd {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toap45YAMd .image-block {
  margin: auto;
}
.cid-toap45YAMd figcaption {
  position: relative;
}
.cid-toap45YAMd figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toap45YAMd .image-block {
    width: 100% !important;
  }
}
.cid-toaqv4XGRV {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toaqv4XGRV .image-block {
  margin: auto;
}
.cid-toaqv4XGRV figcaption {
  position: relative;
}
.cid-toaqv4XGRV figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toaqv4XGRV .image-block {
    width: 100% !important;
  }
}
.cid-toaqChOWyC {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toaqChOWyC .image-block {
  margin: auto;
}
.cid-toaqChOWyC figcaption {
  position: relative;
}
.cid-toaqChOWyC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toaqChOWyC .image-block {
    width: 100% !important;
  }
}
.cid-toaqIzn30k {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toaqIzn30k .image-block {
  margin: auto;
}
.cid-toaqIzn30k figcaption {
  position: relative;
}
.cid-toaqIzn30k figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toaqIzn30k .image-block {
    width: 100% !important;
  }
}
.cid-toauaripMU {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauaripMU .image-block {
  margin: auto;
}
.cid-toauaripMU figcaption {
  position: relative;
}
.cid-toauaripMU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauaripMU .image-block {
    width: 100% !important;
  }
}
.cid-toauAoOjZ1 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauAoOjZ1 .image-block {
  margin: auto;
}
.cid-toauAoOjZ1 figcaption {
  position: relative;
}
.cid-toauAoOjZ1 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauAoOjZ1 .image-block {
    width: 100% !important;
  }
}
.cid-toauEiRG1H {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauEiRG1H .image-block {
  margin: auto;
}
.cid-toauEiRG1H figcaption {
  position: relative;
}
.cid-toauEiRG1H figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauEiRG1H .image-block {
    width: 100% !important;
  }
}
.cid-toauHIbymw {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauHIbymw .image-block {
  margin: auto;
}
.cid-toauHIbymw figcaption {
  position: relative;
}
.cid-toauHIbymw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauHIbymw .image-block {
    width: 100% !important;
  }
}
.cid-toauKFhvNF {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauKFhvNF .image-block {
  margin: auto;
}
.cid-toauKFhvNF figcaption {
  position: relative;
}
.cid-toauKFhvNF figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauKFhvNF .image-block {
    width: 100% !important;
  }
}
.cid-toauPTSg4h {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauPTSg4h .image-block {
  margin: auto;
}
.cid-toauPTSg4h figcaption {
  position: relative;
}
.cid-toauPTSg4h figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauPTSg4h .image-block {
    width: 100% !important;
  }
}
.cid-toauTOwHJe {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauTOwHJe .image-block {
  margin: auto;
}
.cid-toauTOwHJe figcaption {
  position: relative;
}
.cid-toauTOwHJe figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauTOwHJe .image-block {
    width: 100% !important;
  }
}
.cid-toauXCrted {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toauXCrted .image-block {
  margin: auto;
}
.cid-toauXCrted figcaption {
  position: relative;
}
.cid-toauXCrted figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toauXCrted .image-block {
    width: 100% !important;
  }
}
.cid-toav2xfiYU {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toav2xfiYU .image-block {
  margin: auto;
}
.cid-toav2xfiYU figcaption {
  position: relative;
}
.cid-toav2xfiYU figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toav2xfiYU .image-block {
    width: 100% !important;
  }
}
.cid-toav6jggBE {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toav6jggBE .image-block {
  margin: auto;
}
.cid-toav6jggBE figcaption {
  position: relative;
}
.cid-toav6jggBE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toav6jggBE .image-block {
    width: 100% !important;
  }
}
.cid-toav9oo2e2 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toav9oo2e2 .image-block {
  margin: auto;
}
.cid-toav9oo2e2 figcaption {
  position: relative;
}
.cid-toav9oo2e2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toav9oo2e2 .image-block {
    width: 100% !important;
  }
}
.cid-toavckwFzC {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toavckwFzC .image-block {
  margin: auto;
}
.cid-toavckwFzC figcaption {
  position: relative;
}
.cid-toavckwFzC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toavckwFzC .image-block {
    width: 100% !important;
  }
}
.cid-toavfxkv83 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toavfxkv83 .image-block {
  margin: auto;
}
.cid-toavfxkv83 figcaption {
  position: relative;
}
.cid-toavfxkv83 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toavfxkv83 .image-block {
    width: 100% !important;
  }
}
.cid-toaviMk5u0 {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toaviMk5u0 .image-block {
  margin: auto;
}
.cid-toaviMk5u0 figcaption {
  position: relative;
}
.cid-toaviMk5u0 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toaviMk5u0 .image-block {
    width: 100% !important;
  }
}
.cid-toavm2s5bR {
  background: #ffffff;
  padding-top: 0px;
  padding-bottom: 0px;
}
.cid-toavm2s5bR .image-block {
  margin: auto;
}
.cid-toavm2s5bR figcaption {
  position: relative;
}
.cid-toavm2s5bR figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toavm2s5bR .image-block {
    width: 100% !important;
  }
}
.cid-toavsZrj1O {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-ttZ5NZ7ftw {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-1920x1145.jpg");
}
.cid-ttZ5NZ7ftw .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-ttZ5NZ7ftw .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-ttZ5NZ7ftw .mbr-figure img {
    width: 100% !important;
  }
}
.cid-ttZ5NZ7ftw H3 {
  text-align: right;
}
.cid-ttZ5OE3XrE {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-ttZ5OE3XrE .container {
    max-width: 1400px;
  }
}
.cid-ttZ5OE3XrE .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-ttZ5OE3XrE .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0099ff;
}
.cid-ttZ5OE3XrE .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-ttZ5OE3XrE .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-ttZ5OE3XrE .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-ttZ5OE3XrE .card-wrapper {
  margin-top: 3rem;
}
.cid-ttZ5OE3XrE .row {
  justify-content: center;
}
.cid-ttZ5OE3XrE .mbr-section-title {
  color: #232323;
}
.cid-ttZ5OE3XrE .card-title,
.cid-ttZ5OE3XrE .iconfont-wrapper {
  color: #149dcc;
}
.cid-ttZ5OE3XrE .card-text {
  color: #232323;
}
.cid-tu00S4zYQz {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu00S4zYQz .mbr-section-subtitle {
  color: #149dcc;
}
.cid-tu00S4zYQz H2 {
  color: #000000;
}
.cid-tu6W5RfAT4 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tu6W5RfAT4 .mbr-section-subtitle {
  color: #232323;
}
.cid-tu6W5RfAT4 H2 {
  color: #07290c;
}
.cid-tu5B8FaYiN {
  padding-top: 60px;
  padding-bottom: 15px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 70px;
}
.cid-tu5B8FaYiN .content {
  padding-left: 30px;
}
.cid-tu5B8FaYiN .mbr-section-subtitle {
  color: #ff3366;
}
.cid-tu5B8FaYiN .mbr-section-title {
  color: #0099ff;
}
.cid-tu5B8FaYiN .mbr-text {
  color: #82786e;
}
.cid-tu5B8FaYiN .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #13287d;
}
.cid-tu5B8FaYiN .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-tu5B8FaYiN .p-4 {
  padding: 1rem 0 !important;
}
.cid-tu5B8FaYiN .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-tu5B8FaYiN .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tu5B8FaYiN .mbri-arrow-up:before {
  content: "\e960";
}
.cid-tu5B8FaYiN .card {
  border-radius: 0px;
  border-bottom: 2px solid #efefef !important;
}
.cid-tu5B8FaYiN .card:last-child {
  border-bottom: none !important;
}
.cid-tu5B8FaYiN .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-tu5B8FaYiN .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
  color: #0099ff;
  padding-right: 50px;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 17px;
  transform: translate(-50%, 0) !important;
  display: inline-block;
  margin-left: 0;
  width: 46px;
  height: 46px;
  background-color: #0f7699;
  transition: all .3s ease 0s;
  box-shadow: 0 14px 40px 0 #0f7699;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title .toggle-icon:before,
.cid-tu5B8FaYiN .card .card-header a.panel-title .toggle-icon:after {
  background: #ffffff;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: #ffffff;
  border: 0;
  transform: none;
}
.cid-tu5B8FaYiN .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-tu5B8FaYiN .card .panel-body {
  padding: 14px 20px;
}
.cid-tu5B8FaYiN .card .panel-body p {
  color: #82786e;
}
.cid-tu5B8FaYiN .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tu5B8FaYiN .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-tu5B8FaYiN .collapsed .toggle-icon {
  background-color: transparent !important;
  transform: translate(0, 0);
  right: 7px !important;
  box-shadow: none !important;
}
.cid-tu5B8FaYiN .collapsed .toggle-icon:before,
.cid-tu5B8FaYiN .collapsed .toggle-icon:after {
  background: #13287d !important;
}
.cid-tu5B8FaYiN .collapsed .toggle-icon:before {
  background-color: #13287d !important;
}
.cid-tu5B8FaYiN .img-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tu5B8FaYiN * {
    text-align: left;
  }
}
.cid-tu5B8FaYiN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu5B8FaYiN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu5XPV2GdU {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 70px;
}
.cid-tu5XPV2GdU .content {
  padding-left: 30px;
}
.cid-tu5XPV2GdU .mbr-section-subtitle {
  color: #ff3366;
}
.cid-tu5XPV2GdU .mbr-section-title {
  color: #0099ff;
}
.cid-tu5XPV2GdU .mbr-text {
  color: #82786e;
}
.cid-tu5XPV2GdU .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #13287d;
}
.cid-tu5XPV2GdU .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-tu5XPV2GdU .p-4 {
  padding: 1rem 0 !important;
}
.cid-tu5XPV2GdU .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-tu5XPV2GdU .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tu5XPV2GdU .mbri-arrow-up:before {
  content: "\e960";
}
.cid-tu5XPV2GdU .card {
  border-radius: 0px;
  border-bottom: 2px solid #efefef !important;
}
.cid-tu5XPV2GdU .card:last-child {
  border-bottom: none !important;
}
.cid-tu5XPV2GdU .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-tu5XPV2GdU .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
  color: #0099ff;
  padding-right: 50px;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 17px;
  transform: translate(-50%, 0) !important;
  display: inline-block;
  margin-left: 0;
  width: 46px;
  height: 46px;
  background-color: #0f7699;
  transition: all .3s ease 0s;
  box-shadow: 0 14px 40px 0 #0f7699;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title .toggle-icon:before,
.cid-tu5XPV2GdU .card .card-header a.panel-title .toggle-icon:after {
  background: #ffffff;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: #ffffff;
  border: 0;
  transform: none;
}
.cid-tu5XPV2GdU .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-tu5XPV2GdU .card .panel-body {
  padding: 14px 20px;
}
.cid-tu5XPV2GdU .card .panel-body p {
  color: #82786e;
}
.cid-tu5XPV2GdU .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tu5XPV2GdU .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-tu5XPV2GdU .collapsed .toggle-icon {
  background-color: transparent !important;
  transform: translate(0, 0);
  right: 7px !important;
  box-shadow: none !important;
}
.cid-tu5XPV2GdU .collapsed .toggle-icon:before,
.cid-tu5XPV2GdU .collapsed .toggle-icon:after {
  background: #13287d !important;
}
.cid-tu5XPV2GdU .collapsed .toggle-icon:before {
  background-color: #13287d !important;
}
.cid-tu5XPV2GdU .img-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tu5XPV2GdU * {
    text-align: left;
  }
}
.cid-tu5XPV2GdU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu5XPV2GdU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6CmuXhUu {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 70px;
}
.cid-tu6CmuXhUu .content {
  padding-left: 30px;
}
.cid-tu6CmuXhUu .mbr-section-subtitle {
  color: #ff3366;
}
.cid-tu6CmuXhUu .mbr-section-title {
  color: #0099ff;
}
.cid-tu6CmuXhUu .mbr-text {
  color: #82786e;
}
.cid-tu6CmuXhUu .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #13287d;
}
.cid-tu6CmuXhUu .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-tu6CmuXhUu .p-4 {
  padding: 1rem 0 !important;
}
.cid-tu6CmuXhUu .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-tu6CmuXhUu .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tu6CmuXhUu .mbri-arrow-up:before {
  content: "\e960";
}
.cid-tu6CmuXhUu .card {
  border-radius: 0px;
  border-bottom: 2px solid #efefef !important;
}
.cid-tu6CmuXhUu .card:last-child {
  border-bottom: none !important;
}
.cid-tu6CmuXhUu .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-tu6CmuXhUu .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
  color: #0099ff;
  padding-right: 50px;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 17px;
  transform: translate(-50%, 0) !important;
  display: inline-block;
  margin-left: 0;
  width: 46px;
  height: 46px;
  background-color: #0f7699;
  transition: all .3s ease 0s;
  box-shadow: 0 14px 40px 0 #0f7699;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title .toggle-icon:before,
.cid-tu6CmuXhUu .card .card-header a.panel-title .toggle-icon:after {
  background: #ffffff;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: #ffffff;
  border: 0;
  transform: none;
}
.cid-tu6CmuXhUu .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-tu6CmuXhUu .card .panel-body {
  padding: 14px 20px;
}
.cid-tu6CmuXhUu .card .panel-body p {
  color: #82786e;
}
.cid-tu6CmuXhUu .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tu6CmuXhUu .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-tu6CmuXhUu .collapsed .toggle-icon {
  background-color: transparent !important;
  transform: translate(0, 0);
  right: 7px !important;
  box-shadow: none !important;
}
.cid-tu6CmuXhUu .collapsed .toggle-icon:before,
.cid-tu6CmuXhUu .collapsed .toggle-icon:after {
  background: #13287d !important;
}
.cid-tu6CmuXhUu .collapsed .toggle-icon:before {
  background-color: #13287d !important;
}
.cid-tu6CmuXhUu .img-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tu6CmuXhUu * {
    text-align: left;
  }
}
.cid-tu6CmuXhUu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu6CmuXhUu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu6SSIyBEE {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative;
  background-color: #ffffff;
  margin-bottom: 70px;
}
.cid-tu6SSIyBEE .content {
  padding-left: 30px;
}
.cid-tu6SSIyBEE .mbr-section-subtitle {
  color: #ff3366;
}
.cid-tu6SSIyBEE .mbr-section-title {
  color: #0099ff;
}
.cid-tu6SSIyBEE .mbr-text {
  color: #82786e;
}
.cid-tu6SSIyBEE .mbr-iconfont {
  font-family: "Moririse2" !important;
  display: inline-flex;
  transform-origin: ;
  transform: rotate(45deg);
  transition: all 0.3s;
  padding: 0 !important;
  font-size: 1.4rem !important;
  color: #13287d;
}
.cid-tu6SSIyBEE .mbr-iconfont:before {
  transform: scaleY(0) !important;
  transition: all 0.4s;
}
.cid-tu6SSIyBEE .p-4 {
  padding: 1rem 0 !important;
}
.cid-tu6SSIyBEE .accordion .card .card-header {
  margin-bottom: 0px;
}
.cid-tu6SSIyBEE .mbri-arrow-down:before {
  content: "\e960";
}
.cid-tu6SSIyBEE .mbri-arrow-up:before {
  content: "\e960";
}
.cid-tu6SSIyBEE .card {
  border-radius: 0px;
  border-bottom: 2px solid #efefef !important;
}
.cid-tu6SSIyBEE .card:last-child {
  border-bottom: none !important;
}
.cid-tu6SSIyBEE .card .card-header {
  border-radius: 0px;
  border: 0px;
  background-color: transparent;
  padding: 0;
}
.cid-tu6SSIyBEE .card .card-header h4 {
  justify-content: flex-start;
  width: 100%;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title {
  margin-bottom: 0;
  display: flex;
  width: 100%;
  justify-content: space-between;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title h4 {
  padding: 1.2rem 0rem;
  margin-bottom: 0;
  color: #0099ff;
  padding-right: 50px;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title .toggle-icon {
  right: 20px;
  position: absolute;
  top: 17px;
  transform: translate(-50%, 0) !important;
  display: inline-block;
  margin-left: 0;
  width: 46px;
  height: 46px;
  background-color: #0f7699;
  transition: all .3s ease 0s;
  box-shadow: 0 14px 40px 0 #0f7699;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title .toggle-icon:before,
.cid-tu6SSIyBEE .card .card-header a.panel-title .toggle-icon:after {
  background: #ffffff;
  border: 0;
  box-sizing: border-box;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title .toggle-icon:before {
  height: 12px;
  margin-left: -1px !important;
  width: 2px;
  margin-top: -6px;
  background-color: #ffffff;
  border: 0;
  transform: none;
}
.cid-tu6SSIyBEE .card .card-header a.panel-title .toggle-icon:after {
  height: 2px;
  width: 12px;
  margin-left: -6px;
  margin-top: -1px;
}
.cid-tu6SSIyBEE .card .panel-body {
  padding: 14px 20px;
}
.cid-tu6SSIyBEE .card .panel-body p {
  color: #82786e;
}
.cid-tu6SSIyBEE .collapsed .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-tu6SSIyBEE .collapsed .mbr-iconfont:before {
  transform: scaleY(1) !important;
  transition: all 0.3s;
}
.cid-tu6SSIyBEE .collapsed .toggle-icon {
  background-color: transparent !important;
  transform: translate(0, 0);
  right: 7px !important;
  box-shadow: none !important;
}
.cid-tu6SSIyBEE .collapsed .toggle-icon:before,
.cid-tu6SSIyBEE .collapsed .toggle-icon:after {
  background: #13287d !important;
}
.cid-tu6SSIyBEE .collapsed .toggle-icon:before {
  background-color: #13287d !important;
}
.cid-tu6SSIyBEE .img-wrap img {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tu6SSIyBEE * {
    text-align: left;
  }
}
.cid-tu6SSIyBEE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tu6SSIyBEE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tu71SR1m0u {
  padding-top: 90px;
  padding-bottom: 75px;
  background-color: #efefef;
}
.cid-tu71SR1m0u h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tu71SR1m0u p {
  color: #767676;
  text-align: left;
  margin-bottom: 0;
}
.cid-tu71SR1m0u .card-img {
  text-align: left;
  background-color: #ffffff;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  padding: 3rem 2.5rem 0 2.5rem;
}
.cid-tu71SR1m0u .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-tu71SR1m0u .card-box {
  padding: 0rem 2.5rem 3rem 2.5rem;
  background-color: #ffffff;
}
.cid-tu78SGQ8nc {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tu78SGQ8nc .title {
  margin-bottom: 2rem;
}
.cid-tu78SGQ8nc .mbr-section-subtitle {
  color: #767676;
}
.cid-tu78SGQ8nc a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tu78SGQ8nc a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tu78SGQ8nc textarea.form-control {
  min-height: 188px;
}
.cid-tu7a4SOJPP {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tu7a4SOJPP h3 {
  text-align: center;
}
.cid-tu7a4SOJPP .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tu7a4SOJPP .mbr-content-text {
  color: #767676;
}
.cid-tu7a4SOJPP .panel-item {
  background: #ffffff;
}
.cid-tu7a4SOJPP .card {
  word-wrap: break-word;
}
.cid-tu7a4SOJPP .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-tu9YVIkCEc {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f9f9f9;
}
.cid-tu9YVIkCEc .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-tu9YVIkCEc .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-tu9YVIkCEc .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-tu9YVIkCEc .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-tu9YVIkCEc .card .card-header a.panel-title h4 {
  padding: 1.3rem 2rem;
  border: 1px solid #dfdfdf;
  margin-bottom: 0;
}
.cid-tu9YVIkCEc .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-tu9YVIkCEc .card .panel-body {
  color: #767676;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-tBe73Un04n .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tBe73Un04n .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tBe73Un04n a {
  font-style: normal;
}
.cid-tBe73Un04n .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tBe73Un04n .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tBe73Un04n .nav-item:focus,
.cid-tBe73Un04n .nav-link:focus {
  outline: none;
}
.cid-tBe73Un04n .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tBe73Un04n .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tBe73Un04n .menu-logo {
  margin-right: auto;
}
.cid-tBe73Un04n .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tBe73Un04n .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tBe73Un04n .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tBe73Un04n .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tBe73Un04n .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tBe73Un04n .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tBe73Un04n .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tBe73Un04n .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tBe73Un04n .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tBe73Un04n .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tBe73Un04n .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tBe73Un04n .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tBe73Un04n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tBe73Un04n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tBe73Un04n .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tBe73Un04n .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-tBe73Un04n .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tBe73Un04n .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tBe73Un04n .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tBe73Un04n .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tBe73Un04n .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tBe73Un04n .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tBe73Un04n .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tBe73Un04n button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tBe73Un04n button.navbar-toggler:focus {
  outline: none;
}
.cid-tBe73Un04n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-tBe73Un04n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tBe73Un04n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tBe73Un04n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tBe73Un04n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tBe73Un04n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBe73Un04n nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tBe73Un04n nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tBe73Un04n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tBe73Un04n .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tBe73Un04n .collapsed .btn {
  display: -webkit-flex;
}
.cid-tBe73Un04n .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tBe73Un04n .collapsed .navbar-collapse.collapsing,
.cid-tBe73Un04n .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tBe73Un04n .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tBe73Un04n .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tBe73Un04n .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tBe73Un04n .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tBe73Un04n .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tBe73Un04n .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tBe73Un04n .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tBe73Un04n .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tBe73Un04n .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tBe73Un04n .collapsed button.navbar-toggler {
  display: block;
}
.cid-tBe73Un04n .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tBe73Un04n .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tBe73Un04n .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-tBe73Un04n .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tBe73Un04n .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tBe73Un04n .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tBe73Un04n .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tBe73Un04n img {
    height: 3.8rem !important;
  }
  .cid-tBe73Un04n .btn {
    display: -webkit-flex;
  }
  .cid-tBe73Un04n button.navbar-toggler {
    display: block;
  }
  .cid-tBe73Un04n .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tBe73Un04n .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tBe73Un04n .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tBe73Un04n .navbar-collapse.collapsing,
  .cid-tBe73Un04n .navbar-collapse.show {
    display: block !important;
  }
  .cid-tBe73Un04n .navbar-collapse.collapsing .navbar-nav,
  .cid-tBe73Un04n .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tBe73Un04n .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tBe73Un04n .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tBe73Un04n .navbar-collapse.collapsing .navbar-buttons,
  .cid-tBe73Un04n .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tBe73Un04n .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tBe73Un04n .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tBe73Un04n .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tBe73Un04n .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tBe73Un04n .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tBe73Un04n .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tBe73Un04n .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tBe73Un04n .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tBe73Un04n .nav-link:hover,
.cid-tBe73Un04n .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tBgcFEztVU {
  padding-top: 120px;
  padding-bottom: 90px;
  background-image: url("../../../assets/images/mbr-3.jpg");
}
.cid-tBgcFEztVU .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-tBgcFEztVU .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-tBgcFEztVU .mbr-figure img {
    width: 100% !important;
  }
}
.cid-tBgcFEztVU H3 {
  text-align: center;
  color: #000000;
}
.cid-tBgcFEztVU .mbr-text,
.cid-tBgcFEztVU .mbr-section-btn {
  color: #ffffff;
}
.cid-uImsk5RPva {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uImsk5RPva .mbr-section-subtitle {
  color: #232323;
}
.cid-uImsk5RPva H2 {
  color: #000000;
}
.cid-uIms8fMGbA {
  padding-top: 15px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-uIms8fMGbA .counter-container {
  color: #767676;
}
.cid-uIms8fMGbA .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uIms8fMGbA .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uIms8fMGbA .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-uIms8fMGbA .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #0099ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-uOINdSwjN9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uOINdSwjN9 .mbr-section-subtitle {
  color: #232323;
}
.cid-uOINdSwjN9 H2 {
  color: #000000;
}
.cid-uOISES7G3D {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uOISES7G3D .counter-container {
  color: #767676;
}
.cid-uOISES7G3D .counter-container ol {
  margin-bottom: 0;
  counter-reset: myCounter;
}
.cid-uOISES7G3D .counter-container ol li {
  margin-bottom: 1rem;
}
.cid-uOISES7G3D .counter-container ol li {
  list-style: none;
  padding-left: .5rem;
  position: relative;
}
.cid-uOISES7G3D .counter-container ol li:before {
  position: absolute;
  left: -56px;
  margin-top: -10px;
  counter-increment: myCounter;
  content: counter(myCounter);
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 40px;
  transition: all .2s;
  color: #ffffff;
  background: #0099ff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-uIBq7niswf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uIBq7niswf .mbr-section-subtitle {
  color: #232323;
}
.cid-uIBq7niswf H2 {
  color: #000000;
}
.cid-uIgJqf9SjE {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uIgJqf9SjE .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uIgJqf9SjE .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uIgJqf9SjE .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uIgJqf9SjE .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uIgJqf9SjE .card-wrapper:hover {
  background: #cccccc;
}
.cid-uIgJqf9SjE .card-title,
.cid-uIgJqf9SjE .card-box {
  color: #0099ff;
}
.cid-uIgJqf9SjE .main-title,
.cid-uIgJqf9SjE .title-col {
  text-align: center;
  color: #000000;
}
.cid-uIgJqf9SjE .card-text {
  color: #232323;
}
.cid-uIgJqf9SjE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgJqf9SjE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIhddeVGLu {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-uIhddeVGLu .container {
    max-width: 1400px;
  }
}
.cid-uIhddeVGLu .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uIhddeVGLu .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0099ff;
}
.cid-uIhddeVGLu .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uIhddeVGLu .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uIhddeVGLu .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-uIhddeVGLu .card-wrapper {
  margin-top: 3rem;
}
.cid-uIhddeVGLu .row {
  justify-content: center;
}
.cid-uIhddeVGLu .mbr-section-title {
  color: #232323;
}
.cid-uIhddeVGLu .card-title,
.cid-uIhddeVGLu .iconfont-wrapper {
  color: #0099ff;
}
.cid-uIhddeVGLu .card-text {
  color: #232323;
}
.cid-uIuItGRfhE {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uIuItGRfhE .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uIuItGRfhE .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uIuItGRfhE .container {
    padding: 0 16px;
  }
}
.cid-uIuItGRfhE .row {
  position: relative;
  z-index: 1;
}
.cid-uIuItGRfhE .title-wrapper {
  margin-bottom: 80px;
}
.cid-uIuItGRfhE .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uIuItGRfhE .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIuItGRfhE .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uIuItGRfhE .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uIuItGRfhE .embla__slide .slide-content {
  width: 100%;
}
.cid-uIuItGRfhE .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIuItGRfhE .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uIuItGRfhE .embla__button--next,
.cid-uIuItGRfhE .embla__button--prev {
  display: flex;
}
.cid-uIuItGRfhE .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uIuItGRfhE .embla__button {
    display: none;
  }
}
.cid-uIuItGRfhE .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uIuItGRfhE .embla__button:hover {
  opacity: .7 !important;
}
.cid-uIuItGRfhE .embla__button.embla__button--prev {
  left: 0;
}
.cid-uIuItGRfhE .embla__button.embla__button--next {
  right: 0;
}
.cid-uIuItGRfhE .embla {
  position: relative;
  width: 100%;
}
.cid-uIuItGRfhE .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uIuItGRfhE .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uIuItGRfhE .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uIuItGRfhE .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uIuItGRfhE .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIuItGRfhE .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uIp0v405K6 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uIp0v405K6 .title {
  margin-bottom: 2rem;
}
.cid-uIp0v405K6 .mbr-section-subtitle {
  color: #767676;
}
.cid-uIp0v405K6 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uIp0v405K6 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uIp0v405K6 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uIp0v405K6 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tBe748VICE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tBe748VICE .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tBe748VICE .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tBe748VICE .mbr-text {
  color: #767676;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-tpammY81NG {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-tpammY81NG .image-block {
  margin: auto;
}
.cid-tpammY81NG figcaption {
  position: relative;
}
.cid-tpammY81NG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tpammY81NG .image-block {
    width: 100% !important;
  }
}
.cid-tBquBJmZnp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBquBJmZnp .progress {
  width: 100%;
}
.cid-tBquBJmZnp progress {
  height: 20px;
}
.cid-tBquBJmZnp .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBquBJmZnp p {
  margin-bottom: 0.5rem;
}
.cid-tBquBJmZnp .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBquBJmZnp .mbr-section-subtitle {
  color: #767676;
}
.cid-tBquBJmZnp .progress_value {
  position: relative;
}
.cid-tBquBJmZnp .progress_elements {
  margin: 0 auto;
}
.cid-tBquBJmZnp .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBquBJmZnp .progress1 .progressbar-number:before,
.cid-tBquBJmZnp .progress2 .progressbar-number:before,
.cid-tBquBJmZnp .progress3 .progressbar-number:before,
.cid-tBquBJmZnp .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBquBJmZnp progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBquBJmZnp progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBquBJmZnp progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBquBJmZnp progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBquBJmZnp .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tBquBJmZnp .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBquBJmZnp .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBquBJmZnp .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBquBJmZnp .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBquBJmZnp .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBquBJmZnp .progress_value span {
  padding-left: 33px;
}
.cid-tBquBJmZnp .mbr-section-title,
.cid-tBquBJmZnp .line-wrap {
  text-align: left;
  color: #000000;
}
.cid-tBquBJmZnp .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBquBJmZnp .progressbar-title p,
.cid-tBquBJmZnp .progress_value {
  color: #656565;
  text-align: left;
}
.cid-tBquBJmZnp .progressbar-number {
  word-wrap: normal;
}
.cid-tBqzZ6sC4K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBqzZ6sC4K .progress {
  width: 100%;
}
.cid-tBqzZ6sC4K progress {
  height: 20px;
}
.cid-tBqzZ6sC4K .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBqzZ6sC4K p {
  margin-bottom: 0.5rem;
}
.cid-tBqzZ6sC4K .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBqzZ6sC4K .mbr-section-subtitle {
  color: #767676;
}
.cid-tBqzZ6sC4K .progress_value {
  position: relative;
}
.cid-tBqzZ6sC4K .progress_elements {
  margin: 0 auto;
}
.cid-tBqzZ6sC4K .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBqzZ6sC4K .progress1 .progressbar-number:before,
.cid-tBqzZ6sC4K .progress2 .progressbar-number:before,
.cid-tBqzZ6sC4K .progress3 .progressbar-number:before,
.cid-tBqzZ6sC4K .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBqzZ6sC4K progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBqzZ6sC4K progress::-webkit-progress-value {
  background-color: #55b4d4;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBqzZ6sC4K progress[value]::-moz-progress-bar {
  background-color: #55b4d4;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBqzZ6sC4K progress::-ms-fill {
  background-color: #55b4d4;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBqzZ6sC4K .progress1 .progressbar-number:before {
  content: "51";
}
.cid-tBqzZ6sC4K .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBqzZ6sC4K .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBqzZ6sC4K .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBqzZ6sC4K .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBqzZ6sC4K .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBqzZ6sC4K .progress_value span {
  padding-left: 33px;
}
.cid-tBqzZ6sC4K .mbr-section-title,
.cid-tBqzZ6sC4K .line-wrap {
  text-align: left;
}
.cid-tBqzZ6sC4K .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBqzZ6sC4K .progressbar-title p,
.cid-tBqzZ6sC4K .progress_value {
  color: #656565;
}
.cid-tBqzZ6sC4K .progressbar-number {
  word-wrap: normal;
}
.cid-tBpSL8rLMA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBpSL8rLMA .progress {
  width: 100%;
}
.cid-tBpSL8rLMA progress {
  height: 20px;
}
.cid-tBpSL8rLMA .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBpSL8rLMA p {
  margin-bottom: 0.5rem;
}
.cid-tBpSL8rLMA .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #000000;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBpSL8rLMA .mbr-section-subtitle {
  color: #767676;
}
.cid-tBpSL8rLMA .progress_value {
  position: relative;
}
.cid-tBpSL8rLMA .progress_elements {
  margin: 0 auto;
}
.cid-tBpSL8rLMA .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBpSL8rLMA .progress1 .progressbar-number:before,
.cid-tBpSL8rLMA .progress2 .progressbar-number:before,
.cid-tBpSL8rLMA .progress3 .progressbar-number:before,
.cid-tBpSL8rLMA .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBpSL8rLMA progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBpSL8rLMA progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBpSL8rLMA progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBpSL8rLMA progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBpSL8rLMA .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tBpSL8rLMA .progress2 .progressbar-number:before {
  content: "100";
}
.cid-tBpSL8rLMA .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBpSL8rLMA .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBpSL8rLMA .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBpSL8rLMA .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBpSL8rLMA .progress_value span {
  padding-left: 33px;
}
.cid-tBpSL8rLMA .mbr-section-title,
.cid-tBpSL8rLMA .line-wrap {
  text-align: left;
}
.cid-tBpSL8rLMA .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBpSL8rLMA .progressbar-title p,
.cid-tBpSL8rLMA .progress_value {
  color: #656565;
}
.cid-tBpSL8rLMA .progressbar-number {
  word-wrap: normal;
}
.cid-uW9oKxiwMt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uW9oKxiwMt .progress {
  width: 100%;
}
.cid-uW9oKxiwMt progress {
  height: 20px;
}
.cid-uW9oKxiwMt .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uW9oKxiwMt p {
  margin-bottom: 0.5rem;
}
.cid-uW9oKxiwMt .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #000000;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uW9oKxiwMt .mbr-section-subtitle {
  color: #767676;
}
.cid-uW9oKxiwMt .progress_value {
  position: relative;
}
.cid-uW9oKxiwMt .progress_elements {
  margin: 0 auto;
}
.cid-uW9oKxiwMt .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uW9oKxiwMt .progress1 .progressbar-number:before,
.cid-uW9oKxiwMt .progress2 .progressbar-number:before,
.cid-uW9oKxiwMt .progress3 .progressbar-number:before,
.cid-uW9oKxiwMt .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uW9oKxiwMt progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9oKxiwMt progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oKxiwMt progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oKxiwMt progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oKxiwMt .progress1 .progressbar-number:before {
  content: "100";
}
.cid-uW9oKxiwMt .progress2 .progressbar-number:before {
  content: "100";
}
.cid-uW9oKxiwMt .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uW9oKxiwMt .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uW9oKxiwMt .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uW9oKxiwMt .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9oKxiwMt .progress_value span {
  padding-left: 33px;
}
.cid-uW9oKxiwMt .mbr-section-title,
.cid-uW9oKxiwMt .line-wrap {
  text-align: left;
}
.cid-uW9oKxiwMt .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uW9oKxiwMt .progressbar-title p,
.cid-uW9oKxiwMt .progress_value {
  color: #656565;
}
.cid-uW9oKxiwMt .progressbar-number {
  word-wrap: normal;
}
.cid-tBqgr02qKd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBqgr02qKd .progress {
  width: 100%;
}
.cid-tBqgr02qKd progress {
  height: 20px;
}
.cid-tBqgr02qKd .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBqgr02qKd p {
  margin-bottom: 0.5rem;
}
.cid-tBqgr02qKd .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBqgr02qKd .mbr-section-subtitle {
  color: #767676;
}
.cid-tBqgr02qKd .progress_value {
  position: relative;
}
.cid-tBqgr02qKd .progress_elements {
  margin: 0 auto;
}
.cid-tBqgr02qKd .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBqgr02qKd .progress1 .progressbar-number:before,
.cid-tBqgr02qKd .progress2 .progressbar-number:before,
.cid-tBqgr02qKd .progress3 .progressbar-number:before,
.cid-tBqgr02qKd .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBqgr02qKd progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBqgr02qKd progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBqgr02qKd progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBqgr02qKd progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBqgr02qKd .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tBqgr02qKd .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBqgr02qKd .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBqgr02qKd .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBqgr02qKd .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBqgr02qKd .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBqgr02qKd .progress_value span {
  padding-left: 33px;
}
.cid-tBqgr02qKd .mbr-section-title,
.cid-tBqgr02qKd .line-wrap {
  text-align: left;
}
.cid-tBqgr02qKd .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBqgr02qKd .progressbar-title p,
.cid-tBqgr02qKd .progress_value {
  color: #656565;
}
.cid-tBqgr02qKd .progressbar-number {
  word-wrap: normal;
}
.cid-uW9ouzCumS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uW9ouzCumS .progress {
  width: 100%;
}
.cid-uW9ouzCumS progress {
  height: 20px;
}
.cid-uW9ouzCumS .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uW9ouzCumS p {
  margin-bottom: 0.5rem;
}
.cid-uW9ouzCumS .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uW9ouzCumS .mbr-section-subtitle {
  color: #767676;
}
.cid-uW9ouzCumS .progress_value {
  position: relative;
}
.cid-uW9ouzCumS .progress_elements {
  margin: 0 auto;
}
.cid-uW9ouzCumS .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uW9ouzCumS .progress1 .progressbar-number:before,
.cid-uW9ouzCumS .progress2 .progressbar-number:before,
.cid-uW9ouzCumS .progress3 .progressbar-number:before,
.cid-uW9ouzCumS .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uW9ouzCumS progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9ouzCumS progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9ouzCumS progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9ouzCumS progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9ouzCumS .progress1 .progressbar-number:before {
  content: "100";
}
.cid-uW9ouzCumS .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uW9ouzCumS .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uW9ouzCumS .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uW9ouzCumS .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uW9ouzCumS .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9ouzCumS .progress_value span {
  padding-left: 33px;
}
.cid-uW9ouzCumS .mbr-section-title,
.cid-uW9ouzCumS .line-wrap {
  text-align: left;
}
.cid-uW9ouzCumS .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uW9ouzCumS .progressbar-title p,
.cid-uW9ouzCumS .progress_value {
  color: #656565;
}
.cid-uW9ouzCumS .progressbar-number {
  word-wrap: normal;
}
.cid-uWadWMDid8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uWadWMDid8 .progress {
  width: 100%;
}
.cid-uWadWMDid8 progress {
  height: 20px;
}
.cid-uWadWMDid8 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uWadWMDid8 p {
  margin-bottom: 0.5rem;
}
.cid-uWadWMDid8 .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uWadWMDid8 .mbr-section-subtitle {
  color: #767676;
}
.cid-uWadWMDid8 .progress_value {
  position: relative;
}
.cid-uWadWMDid8 .progress_elements {
  margin: 0 auto;
}
.cid-uWadWMDid8 .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uWadWMDid8 .progress1 .progressbar-number:before,
.cid-uWadWMDid8 .progress2 .progressbar-number:before,
.cid-uWadWMDid8 .progress3 .progressbar-number:before,
.cid-uWadWMDid8 .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uWadWMDid8 progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uWadWMDid8 progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uWadWMDid8 progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uWadWMDid8 progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uWadWMDid8 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-uWadWMDid8 .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uWadWMDid8 .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uWadWMDid8 .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uWadWMDid8 .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uWadWMDid8 .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uWadWMDid8 .progress_value span {
  padding-left: 33px;
}
.cid-uWadWMDid8 .mbr-section-title,
.cid-uWadWMDid8 .line-wrap {
  text-align: left;
}
.cid-uWadWMDid8 .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uWadWMDid8 .progressbar-title p,
.cid-uWadWMDid8 .progress_value {
  color: #656565;
}
.cid-uWadWMDid8 .progressbar-number {
  word-wrap: normal;
}
.cid-uW9oylCxds {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uW9oylCxds .progress {
  width: 100%;
}
.cid-uW9oylCxds progress {
  height: 20px;
}
.cid-uW9oylCxds .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uW9oylCxds p {
  margin-bottom: 0.5rem;
}
.cid-uW9oylCxds .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uW9oylCxds .mbr-section-subtitle {
  color: #767676;
}
.cid-uW9oylCxds .progress_value {
  position: relative;
}
.cid-uW9oylCxds .progress_elements {
  margin: 0 auto;
}
.cid-uW9oylCxds .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uW9oylCxds .progress1 .progressbar-number:before,
.cid-uW9oylCxds .progress2 .progressbar-number:before,
.cid-uW9oylCxds .progress3 .progressbar-number:before,
.cid-uW9oylCxds .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uW9oylCxds progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9oylCxds progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oylCxds progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oylCxds progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oylCxds .progress1 .progressbar-number:before {
  content: "100";
}
.cid-uW9oylCxds .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uW9oylCxds .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uW9oylCxds .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uW9oylCxds .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uW9oylCxds .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9oylCxds .progress_value span {
  padding-left: 33px;
}
.cid-uW9oylCxds .mbr-section-title,
.cid-uW9oylCxds .line-wrap {
  text-align: left;
}
.cid-uW9oylCxds .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uW9oylCxds .progressbar-title p,
.cid-uW9oylCxds .progress_value {
  color: #656565;
}
.cid-uW9oylCxds .progressbar-number {
  word-wrap: normal;
}
.cid-uW9oAO9eFA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uW9oAO9eFA .progress {
  width: 100%;
}
.cid-uW9oAO9eFA progress {
  height: 20px;
}
.cid-uW9oAO9eFA .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uW9oAO9eFA p {
  margin-bottom: 0.5rem;
}
.cid-uW9oAO9eFA .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uW9oAO9eFA .mbr-section-subtitle {
  color: #767676;
}
.cid-uW9oAO9eFA .progress_value {
  position: relative;
}
.cid-uW9oAO9eFA .progress_elements {
  margin: 0 auto;
}
.cid-uW9oAO9eFA .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uW9oAO9eFA .progress1 .progressbar-number:before,
.cid-uW9oAO9eFA .progress2 .progressbar-number:before,
.cid-uW9oAO9eFA .progress3 .progressbar-number:before,
.cid-uW9oAO9eFA .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uW9oAO9eFA progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9oAO9eFA progress::-webkit-progress-value {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oAO9eFA progress[value]::-moz-progress-bar {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oAO9eFA progress::-ms-fill {
  background-color: #4fd13b;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9oAO9eFA .progress1 .progressbar-number:before {
  content: "100";
}
.cid-uW9oAO9eFA .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uW9oAO9eFA .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uW9oAO9eFA .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uW9oAO9eFA .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uW9oAO9eFA .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9oAO9eFA .progress_value span {
  padding-left: 33px;
}
.cid-uW9oAO9eFA .mbr-section-title,
.cid-uW9oAO9eFA .line-wrap {
  text-align: left;
}
.cid-uW9oAO9eFA .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uW9oAO9eFA .progressbar-title p,
.cid-uW9oAO9eFA .progress_value {
  color: #656565;
}
.cid-uW9oAO9eFA .progressbar-number {
  word-wrap: normal;
}
.cid-tBpWMP8N2p {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBpWMP8N2p .progress {
  width: 100%;
}
.cid-tBpWMP8N2p progress {
  height: 20px;
}
.cid-tBpWMP8N2p .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBpWMP8N2p p {
  margin-bottom: 0.5rem;
}
.cid-tBpWMP8N2p .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBpWMP8N2p .mbr-section-subtitle {
  color: #767676;
}
.cid-tBpWMP8N2p .progress_value {
  position: relative;
}
.cid-tBpWMP8N2p .progress_elements {
  margin: 0 auto;
}
.cid-tBpWMP8N2p .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBpWMP8N2p .progress1 .progressbar-number:before,
.cid-tBpWMP8N2p .progress2 .progressbar-number:before,
.cid-tBpWMP8N2p .progress3 .progressbar-number:before,
.cid-tBpWMP8N2p .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBpWMP8N2p progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBpWMP8N2p progress::-webkit-progress-value {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBpWMP8N2p progress[value]::-moz-progress-bar {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBpWMP8N2p progress::-ms-fill {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBpWMP8N2p .progress1 .progressbar-number:before {
  content: "0";
}
.cid-tBpWMP8N2p .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBpWMP8N2p .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBpWMP8N2p .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBpWMP8N2p .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBpWMP8N2p .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBpWMP8N2p .progress_value span {
  padding-left: 33px;
}
.cid-tBpWMP8N2p .mbr-section-title,
.cid-tBpWMP8N2p .line-wrap {
  text-align: left;
}
.cid-tBpWMP8N2p .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBpWMP8N2p .progressbar-title p,
.cid-tBpWMP8N2p .progress_value {
  color: #656565;
}
.cid-tBpWMP8N2p .progressbar-number {
  word-wrap: normal;
}
.cid-uW9nMu0CzI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uW9nMu0CzI .progress {
  width: 100%;
}
.cid-uW9nMu0CzI progress {
  height: 20px;
}
.cid-uW9nMu0CzI .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uW9nMu0CzI p {
  margin-bottom: 0.5rem;
}
.cid-uW9nMu0CzI .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uW9nMu0CzI .mbr-section-subtitle {
  color: #767676;
}
.cid-uW9nMu0CzI .progress_value {
  position: relative;
}
.cid-uW9nMu0CzI .progress_elements {
  margin: 0 auto;
}
.cid-uW9nMu0CzI .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uW9nMu0CzI .progress1 .progressbar-number:before,
.cid-uW9nMu0CzI .progress2 .progressbar-number:before,
.cid-uW9nMu0CzI .progress3 .progressbar-number:before,
.cid-uW9nMu0CzI .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uW9nMu0CzI progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9nMu0CzI progress::-webkit-progress-value {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nMu0CzI progress[value]::-moz-progress-bar {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nMu0CzI progress::-ms-fill {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nMu0CzI .progress1 .progressbar-number:before {
  content: "0";
}
.cid-uW9nMu0CzI .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uW9nMu0CzI .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uW9nMu0CzI .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uW9nMu0CzI .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uW9nMu0CzI .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9nMu0CzI .progress_value span {
  padding-left: 33px;
}
.cid-uW9nMu0CzI .mbr-section-title,
.cid-uW9nMu0CzI .line-wrap {
  text-align: left;
}
.cid-uW9nMu0CzI .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uW9nMu0CzI .progressbar-title p,
.cid-uW9nMu0CzI .progress_value {
  color: #656565;
}
.cid-uW9nMu0CzI .progressbar-number {
  word-wrap: normal;
}
.cid-uW9nVPXXk3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uW9nVPXXk3 .progress {
  width: 100%;
}
.cid-uW9nVPXXk3 progress {
  height: 20px;
}
.cid-uW9nVPXXk3 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uW9nVPXXk3 p {
  margin-bottom: 0.5rem;
}
.cid-uW9nVPXXk3 .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uW9nVPXXk3 .mbr-section-subtitle {
  color: #767676;
}
.cid-uW9nVPXXk3 .progress_value {
  position: relative;
}
.cid-uW9nVPXXk3 .progress_elements {
  margin: 0 auto;
}
.cid-uW9nVPXXk3 .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uW9nVPXXk3 .progress1 .progressbar-number:before,
.cid-uW9nVPXXk3 .progress2 .progressbar-number:before,
.cid-uW9nVPXXk3 .progress3 .progressbar-number:before,
.cid-uW9nVPXXk3 .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uW9nVPXXk3 progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9nVPXXk3 progress::-webkit-progress-value {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nVPXXk3 progress[value]::-moz-progress-bar {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nVPXXk3 progress::-ms-fill {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nVPXXk3 .progress1 .progressbar-number:before {
  content: "0";
}
.cid-uW9nVPXXk3 .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uW9nVPXXk3 .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uW9nVPXXk3 .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uW9nVPXXk3 .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uW9nVPXXk3 .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9nVPXXk3 .progress_value span {
  padding-left: 33px;
}
.cid-uW9nVPXXk3 .mbr-section-title,
.cid-uW9nVPXXk3 .line-wrap {
  text-align: left;
}
.cid-uW9nVPXXk3 .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uW9nVPXXk3 .progressbar-title p,
.cid-uW9nVPXXk3 .progress_value {
  color: #656565;
}
.cid-uW9nVPXXk3 .progressbar-number {
  word-wrap: normal;
}
.cid-uWae4ykM8i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uWae4ykM8i .progress {
  width: 100%;
}
.cid-uWae4ykM8i progress {
  height: 20px;
}
.cid-uWae4ykM8i .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uWae4ykM8i p {
  margin-bottom: 0.5rem;
}
.cid-uWae4ykM8i .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uWae4ykM8i .mbr-section-subtitle {
  color: #767676;
}
.cid-uWae4ykM8i .progress_value {
  position: relative;
}
.cid-uWae4ykM8i .progress_elements {
  margin: 0 auto;
}
.cid-uWae4ykM8i .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uWae4ykM8i .progress1 .progressbar-number:before,
.cid-uWae4ykM8i .progress2 .progressbar-number:before,
.cid-uWae4ykM8i .progress3 .progressbar-number:before,
.cid-uWae4ykM8i .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uWae4ykM8i progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uWae4ykM8i progress::-webkit-progress-value {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uWae4ykM8i progress[value]::-moz-progress-bar {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uWae4ykM8i progress::-ms-fill {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uWae4ykM8i .progress1 .progressbar-number:before {
  content: "0";
}
.cid-uWae4ykM8i .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uWae4ykM8i .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uWae4ykM8i .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uWae4ykM8i .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uWae4ykM8i .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uWae4ykM8i .progress_value span {
  padding-left: 33px;
}
.cid-uWae4ykM8i .mbr-section-title,
.cid-uWae4ykM8i .line-wrap {
  text-align: left;
}
.cid-uWae4ykM8i .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uWae4ykM8i .progressbar-title p,
.cid-uWae4ykM8i .progress_value {
  color: #656565;
}
.cid-uWae4ykM8i .progressbar-number {
  word-wrap: normal;
}
.cid-uW9nYZeqsn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uW9nYZeqsn .progress {
  width: 100%;
}
.cid-uW9nYZeqsn progress {
  height: 20px;
}
.cid-uW9nYZeqsn .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uW9nYZeqsn p {
  margin-bottom: 0.5rem;
}
.cid-uW9nYZeqsn .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #07290c;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uW9nYZeqsn .mbr-section-subtitle {
  color: #767676;
}
.cid-uW9nYZeqsn .progress_value {
  position: relative;
}
.cid-uW9nYZeqsn .progress_elements {
  margin: 0 auto;
}
.cid-uW9nYZeqsn .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-uW9nYZeqsn .progress1 .progressbar-number:before,
.cid-uW9nYZeqsn .progress2 .progressbar-number:before,
.cid-uW9nYZeqsn .progress3 .progressbar-number:before,
.cid-uW9nYZeqsn .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-uW9nYZeqsn progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9nYZeqsn progress::-webkit-progress-value {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nYZeqsn progress[value]::-moz-progress-bar {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nYZeqsn progress::-ms-fill {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-uW9nYZeqsn .progress1 .progressbar-number:before {
  content: "0";
}
.cid-uW9nYZeqsn .progress2 .progressbar-number:before {
  content: "91";
}
.cid-uW9nYZeqsn .progress3 .progressbar-number:before {
  content: "95";
}
.cid-uW9nYZeqsn .progress4 .progressbar-number:before {
  content: "100";
}
.cid-uW9nYZeqsn .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-uW9nYZeqsn .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-uW9nYZeqsn .progress_value span {
  padding-left: 33px;
}
.cid-uW9nYZeqsn .mbr-section-title,
.cid-uW9nYZeqsn .line-wrap {
  text-align: left;
}
.cid-uW9nYZeqsn .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-uW9nYZeqsn .progressbar-title p,
.cid-uW9nYZeqsn .progress_value {
  color: #656565;
}
.cid-uW9nYZeqsn .progressbar-number {
  word-wrap: normal;
}
.cid-tBf5VvDfHA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tBf5VvDfHA h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tBf5VvDfHA .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tBf5VvDfHA .mbr-section-subtitle {
  color: #767676;
}
.cid-tBf5VvDfHA .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-tBf5VvDfHA ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-tBf5VvDfHA path {
  stroke: #0087ab;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tBf5VvDfHA .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-tpamVMU2xE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tpaF71Dsoe {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-tpaF71Dsoe .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-tpaF71Dsoe .wrapper {
  position: relative;
}
.cid-tpaF71Dsoe .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-tpaF71Dsoe .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-tpaF71Dsoe .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-tpaF71Dsoe .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-tpaF71Dsoe .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-tpaF71Dsoe .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-tpaF71Dsoe .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-tpaF71Dsoe .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-tpaF71Dsoe .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-tpaF71Dsoe .img2 {
    width: 400px;
  }
  .cid-tpaF71Dsoe .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-tpaF71Dsoe .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tpaF71Dsoe .img2 {
    width: 400px;
  }
  .cid-tpaF71Dsoe .img1 {
    padding-right: 4rem;
  }
  .cid-tpaF71Dsoe .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tpaF71Dsoe .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-tpaF71Dsoe .img2 {
    width: 200px;
  }
  .cid-tpaF71Dsoe .container-fluid {
    padding: 0 1rem;
  }
  .cid-tpaF71Dsoe .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-toMTuLmQCj {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-toMTuLmQCj .image-block {
  margin: auto;
}
.cid-toMTuLmQCj figcaption {
  position: relative;
}
.cid-toMTuLmQCj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-toMTuLmQCj .image-block {
    width: 100% !important;
  }
}
.cid-tBvTDSFDzC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBvTDSFDzC .progress {
  width: 100%;
}
.cid-tBvTDSFDzC progress {
  height: 20px;
}
.cid-tBvTDSFDzC .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBvTDSFDzC p {
  margin-bottom: 0.5rem;
}
.cid-tBvTDSFDzC .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBvTDSFDzC .mbr-section-subtitle {
  color: #767676;
}
.cid-tBvTDSFDzC .progress_value {
  position: relative;
}
.cid-tBvTDSFDzC .progress_elements {
  margin: 0 auto;
}
.cid-tBvTDSFDzC .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBvTDSFDzC .progress1 .progressbar-number:before,
.cid-tBvTDSFDzC .progress2 .progressbar-number:before,
.cid-tBvTDSFDzC .progress3 .progressbar-number:before,
.cid-tBvTDSFDzC .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBvTDSFDzC progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvTDSFDzC progress::-webkit-progress-value {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvTDSFDzC progress[value]::-moz-progress-bar {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvTDSFDzC progress::-ms-fill {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvTDSFDzC .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tBvTDSFDzC .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBvTDSFDzC .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBvTDSFDzC .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBvTDSFDzC .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBvTDSFDzC .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvTDSFDzC .progress_value span {
  padding-left: 33px;
}
.cid-tBvTDSFDzC .mbr-section-title,
.cid-tBvTDSFDzC .line-wrap {
  text-align: left;
}
.cid-tBvTDSFDzC .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBvTDSFDzC .progressbar-title p,
.cid-tBvTDSFDzC .progress_value {
  color: #656565;
}
.cid-tBvTDSFDzC .progressbar-number {
  word-wrap: normal;
}
.cid-tBvV0zr8O2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBvV0zr8O2 .progress {
  width: 100%;
}
.cid-tBvV0zr8O2 progress {
  height: 20px;
}
.cid-tBvV0zr8O2 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBvV0zr8O2 p {
  margin-bottom: 0.5rem;
}
.cid-tBvV0zr8O2 .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBvV0zr8O2 .mbr-section-subtitle {
  color: #767676;
}
.cid-tBvV0zr8O2 .progress_value {
  position: relative;
}
.cid-tBvV0zr8O2 .progress_elements {
  margin: 0 auto;
}
.cid-tBvV0zr8O2 .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBvV0zr8O2 .progress1 .progressbar-number:before,
.cid-tBvV0zr8O2 .progress2 .progressbar-number:before,
.cid-tBvV0zr8O2 .progress3 .progressbar-number:before,
.cid-tBvV0zr8O2 .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBvV0zr8O2 progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvV0zr8O2 progress::-webkit-progress-value {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvV0zr8O2 progress[value]::-moz-progress-bar {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvV0zr8O2 progress::-ms-fill {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvV0zr8O2 .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tBvV0zr8O2 .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBvV0zr8O2 .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBvV0zr8O2 .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBvV0zr8O2 .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBvV0zr8O2 .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvV0zr8O2 .progress_value span {
  padding-left: 33px;
}
.cid-tBvV0zr8O2 .mbr-section-title,
.cid-tBvV0zr8O2 .line-wrap {
  text-align: left;
}
.cid-tBvV0zr8O2 .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBvV0zr8O2 .progressbar-title p,
.cid-tBvV0zr8O2 .progress_value {
  color: #656565;
}
.cid-tBvV0zr8O2 .progressbar-number {
  word-wrap: normal;
}
.cid-tBvVBia9Jl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBvVBia9Jl .progress {
  width: 100%;
}
.cid-tBvVBia9Jl progress {
  height: 20px;
}
.cid-tBvVBia9Jl .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBvVBia9Jl p {
  margin-bottom: 0.5rem;
}
.cid-tBvVBia9Jl .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBvVBia9Jl .mbr-section-subtitle {
  color: #767676;
}
.cid-tBvVBia9Jl .progress_value {
  position: relative;
}
.cid-tBvVBia9Jl .progress_elements {
  margin: 0 auto;
}
.cid-tBvVBia9Jl .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBvVBia9Jl .progress1 .progressbar-number:before,
.cid-tBvVBia9Jl .progress2 .progressbar-number:before,
.cid-tBvVBia9Jl .progress3 .progressbar-number:before,
.cid-tBvVBia9Jl .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBvVBia9Jl progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvVBia9Jl progress::-webkit-progress-value {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvVBia9Jl progress[value]::-moz-progress-bar {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvVBia9Jl progress::-ms-fill {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvVBia9Jl .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tBvVBia9Jl .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBvVBia9Jl .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBvVBia9Jl .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBvVBia9Jl .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBvVBia9Jl .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvVBia9Jl .progress_value span {
  padding-left: 33px;
}
.cid-tBvVBia9Jl .mbr-section-title,
.cid-tBvVBia9Jl .line-wrap {
  text-align: left;
}
.cid-tBvVBia9Jl .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBvVBia9Jl .progressbar-title p,
.cid-tBvVBia9Jl .progress_value {
  color: #656565;
}
.cid-tBvVBia9Jl .progressbar-number {
  word-wrap: normal;
}
.cid-tBvVZi3rXE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBvVZi3rXE .progress {
  width: 100%;
}
.cid-tBvVZi3rXE progress {
  height: 20px;
}
.cid-tBvVZi3rXE .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBvVZi3rXE p {
  margin-bottom: 0.5rem;
}
.cid-tBvVZi3rXE .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBvVZi3rXE .mbr-section-subtitle {
  color: #767676;
}
.cid-tBvVZi3rXE .progress_value {
  position: relative;
}
.cid-tBvVZi3rXE .progress_elements {
  margin: 0 auto;
}
.cid-tBvVZi3rXE .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBvVZi3rXE .progress1 .progressbar-number:before,
.cid-tBvVZi3rXE .progress2 .progressbar-number:before,
.cid-tBvVZi3rXE .progress3 .progressbar-number:before,
.cid-tBvVZi3rXE .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBvVZi3rXE progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvVZi3rXE progress::-webkit-progress-value {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvVZi3rXE progress[value]::-moz-progress-bar {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvVZi3rXE progress::-ms-fill {
  background-color: #0087ab;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvVZi3rXE .progress1 .progressbar-number:before {
  content: "100";
}
.cid-tBvVZi3rXE .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBvVZi3rXE .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBvVZi3rXE .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBvVZi3rXE .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBvVZi3rXE .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvVZi3rXE .progress_value span {
  padding-left: 33px;
}
.cid-tBvVZi3rXE .mbr-section-title,
.cid-tBvVZi3rXE .line-wrap {
  text-align: left;
}
.cid-tBvVZi3rXE .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBvVZi3rXE .progressbar-title p,
.cid-tBvVZi3rXE .progress_value {
  color: #656565;
}
.cid-tBvVZi3rXE .progressbar-number {
  word-wrap: normal;
}
.cid-tBvWC5CfEC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBvWC5CfEC .progress {
  width: 100%;
}
.cid-tBvWC5CfEC progress {
  height: 20px;
}
.cid-tBvWC5CfEC .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBvWC5CfEC p {
  margin-bottom: 0.5rem;
}
.cid-tBvWC5CfEC .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBvWC5CfEC .mbr-section-subtitle {
  color: #767676;
}
.cid-tBvWC5CfEC .progress_value {
  position: relative;
}
.cid-tBvWC5CfEC .progress_elements {
  margin: 0 auto;
}
.cid-tBvWC5CfEC .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBvWC5CfEC .progress1 .progressbar-number:before,
.cid-tBvWC5CfEC .progress2 .progressbar-number:before,
.cid-tBvWC5CfEC .progress3 .progressbar-number:before,
.cid-tBvWC5CfEC .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBvWC5CfEC progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvWC5CfEC progress::-webkit-progress-value {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvWC5CfEC progress[value]::-moz-progress-bar {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvWC5CfEC progress::-ms-fill {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvWC5CfEC .progress1 .progressbar-number:before {
  content: "1";
}
.cid-tBvWC5CfEC .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBvWC5CfEC .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBvWC5CfEC .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBvWC5CfEC .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBvWC5CfEC .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvWC5CfEC .progress_value span {
  padding-left: 33px;
}
.cid-tBvWC5CfEC .mbr-section-title,
.cid-tBvWC5CfEC .line-wrap {
  text-align: left;
}
.cid-tBvWC5CfEC .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBvWC5CfEC .progressbar-title p,
.cid-tBvWC5CfEC .progress_value {
  color: #656565;
}
.cid-tBvWC5CfEC .progressbar-number {
  word-wrap: normal;
}
.cid-tBvX2AWXsU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tBvX2AWXsU .progress {
  width: 100%;
}
.cid-tBvX2AWXsU progress {
  height: 20px;
}
.cid-tBvX2AWXsU .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-tBvX2AWXsU p {
  margin-bottom: 0.5rem;
}
.cid-tBvX2AWXsU .line {
  display: inline-block;
  width: 8%;
  height: 4px;
  background-color: #ffffff;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-tBvX2AWXsU .mbr-section-subtitle {
  color: #767676;
}
.cid-tBvX2AWXsU .progress_value {
  position: relative;
}
.cid-tBvX2AWXsU .progress_elements {
  margin: 0 auto;
}
.cid-tBvX2AWXsU .title-wrap {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.cid-tBvX2AWXsU .progress1 .progressbar-number:before,
.cid-tBvX2AWXsU .progress2 .progressbar-number:before,
.cid-tBvX2AWXsU .progress3 .progressbar-number:before,
.cid-tBvX2AWXsU .progress4 .progressbar-number:before {
  position: absolute;
  right: 15px;
  top: 0;
}
.cid-tBvX2AWXsU progress[value]::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvX2AWXsU progress::-webkit-progress-value {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvX2AWXsU progress[value]::-moz-progress-bar {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvX2AWXsU progress::-ms-fill {
  background-color: #fe0c0c;
  background-size: 40px 40px;
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
}
.cid-tBvX2AWXsU .progress1 .progressbar-number:before {
  content: "1";
}
.cid-tBvX2AWXsU .progress2 .progressbar-number:before {
  content: "91";
}
.cid-tBvX2AWXsU .progress3 .progressbar-number:before {
  content: "95";
}
.cid-tBvX2AWXsU .progress4 .progressbar-number:before {
  content: "100";
}
.cid-tBvX2AWXsU .progress-primary {
  background: #ebebeb;
  border: none;
  outline: none;
}
.cid-tBvX2AWXsU .progress-primary::-webkit-progress-bar {
  background: #ebebeb;
}
.cid-tBvX2AWXsU .progress_value span {
  padding-left: 33px;
}
.cid-tBvX2AWXsU .mbr-section-title,
.cid-tBvX2AWXsU .line-wrap {
  text-align: left;
}
.cid-tBvX2AWXsU .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-tBvX2AWXsU .progressbar-title p,
.cid-tBvX2AWXsU .progress_value {
  color: #656565;
}
.cid-tBvX2AWXsU .progressbar-number {
  word-wrap: normal;
}
.cid-tBvTEBglqp {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tBvTEBglqp h3 {
  text-align: center;
  font-weight: 300;
}
.cid-tBvTEBglqp .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-tBvTEBglqp .mbr-section-subtitle {
  color: #767676;
}
.cid-tBvTEBglqp .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-tBvTEBglqp ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-tBvTEBglqp path {
  stroke: #fe0c0c;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-tBvTEBglqp .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-tpamSHw2Nw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tpaFcqUPzw {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #f1eeea;
}
.cid-tpaFcqUPzw .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-tpaFcqUPzw .wrapper {
  position: relative;
}
.cid-tpaFcqUPzw .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-tpaFcqUPzw .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-tpaFcqUPzw .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-tpaFcqUPzw .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-tpaFcqUPzw .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-tpaFcqUPzw .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-tpaFcqUPzw .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-tpaFcqUPzw .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-tpaFcqUPzw .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-tpaFcqUPzw .img2 {
    width: 400px;
  }
  .cid-tpaFcqUPzw .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-tpaFcqUPzw .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tpaFcqUPzw .img2 {
    width: 400px;
  }
  .cid-tpaFcqUPzw .img1 {
    padding-right: 4rem;
  }
  .cid-tpaFcqUPzw .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tpaFcqUPzw .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-tpaFcqUPzw .img2 {
    width: 200px;
  }
  .cid-tpaFcqUPzw .container-fluid {
    padding: 0 1rem;
  }
  .cid-tpaFcqUPzw .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-tSUxl9NrD4 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tSUxl9NrD4 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tSUxl9NrD4 a {
  font-style: normal;
}
.cid-tSUxl9NrD4 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tSUxl9NrD4 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tSUxl9NrD4 .nav-item:focus,
.cid-tSUxl9NrD4 .nav-link:focus {
  outline: none;
}
.cid-tSUxl9NrD4 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tSUxl9NrD4 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tSUxl9NrD4 .menu-logo {
  margin-right: auto;
}
.cid-tSUxl9NrD4 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tSUxl9NrD4 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tSUxl9NrD4 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tSUxl9NrD4 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tSUxl9NrD4 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tSUxl9NrD4 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tSUxl9NrD4 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tSUxl9NrD4 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tSUxl9NrD4 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tSUxl9NrD4 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tSUxl9NrD4 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tSUxl9NrD4 .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tSUxl9NrD4 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tSUxl9NrD4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tSUxl9NrD4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tSUxl9NrD4 .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-tSUxl9NrD4 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tSUxl9NrD4 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tSUxl9NrD4 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tSUxl9NrD4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tSUxl9NrD4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tSUxl9NrD4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tSUxl9NrD4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tSUxl9NrD4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tSUxl9NrD4 button.navbar-toggler:focus {
  outline: none;
}
.cid-tSUxl9NrD4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-tSUxl9NrD4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tSUxl9NrD4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tSUxl9NrD4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tSUxl9NrD4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tSUxl9NrD4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tSUxl9NrD4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tSUxl9NrD4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tSUxl9NrD4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tSUxl9NrD4 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tSUxl9NrD4 .collapsed .btn {
  display: -webkit-flex;
}
.cid-tSUxl9NrD4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.collapsing,
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tSUxl9NrD4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tSUxl9NrD4 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tSUxl9NrD4 .collapsed button.navbar-toggler {
  display: block;
}
.cid-tSUxl9NrD4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tSUxl9NrD4 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tSUxl9NrD4 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-tSUxl9NrD4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tSUxl9NrD4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tSUxl9NrD4 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tSUxl9NrD4 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tSUxl9NrD4 img {
    height: 3.8rem !important;
  }
  .cid-tSUxl9NrD4 .btn {
    display: -webkit-flex;
  }
  .cid-tSUxl9NrD4 button.navbar-toggler {
    display: block;
  }
  .cid-tSUxl9NrD4 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tSUxl9NrD4 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tSUxl9NrD4 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tSUxl9NrD4 .navbar-collapse.collapsing,
  .cid-tSUxl9NrD4 .navbar-collapse.show {
    display: block !important;
  }
  .cid-tSUxl9NrD4 .navbar-collapse.collapsing .navbar-nav,
  .cid-tSUxl9NrD4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tSUxl9NrD4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tSUxl9NrD4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tSUxl9NrD4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-tSUxl9NrD4 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tSUxl9NrD4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tSUxl9NrD4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tSUxl9NrD4 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tSUxl9NrD4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tSUxl9NrD4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tSUxl9NrD4 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tSUxl9NrD4 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tSUxl9NrD4 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tSUxl9NrD4 .nav-link:hover,
.cid-tSUxl9NrD4 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uJSzYbJUvB {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uJSzYbJUvB .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uJSzYbJUvB .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uJSzYbJUvB .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uJSzYbJUvB H3 {
  text-align: right;
  color: #ffffff;
}
.cid-uJSzYbJUvB .mbr-text,
.cid-uJSzYbJUvB .mbr-section-btn {
  color: #ffffff;
}
.cid-uHVLsU9MKZ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uHVLsU9MKZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHVLsU9MKZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHVLsU9MKZ a {
  font-weight: bold;
}
.cid-uHVLsU9MKZ .mbr-section-title {
  color: #151515;
  text-align: center;
}
.cid-uHVLsU9MKZ .mbr-text,
.cid-uHVLsU9MKZ .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uHVLsU9MKZ .mbr-section-subtitle {
  text-align: center;
}
.cid-uY0Q7epwRe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY0Q7epwRe .item:focus,
.cid-uY0Q7epwRe span:focus {
  outline: none;
}
.cid-uY0Q7epwRe .item {
  cursor: pointer;
}
.cid-uY0Q7epwRe .grid-container {
  grid-row-gap: 24px;
}
@media (max-width: 767px) {
  .cid-uY0Q7epwRe .grid-container {
    grid-row-gap: 24px;
  }
}
.cid-uY0Q7epwRe .grid-container-1,
.cid-uY0Q7epwRe .grid-container-2 {
  gap: 0 24px;
}
@media (max-width: 767px) {
  .cid-uY0Q7epwRe .grid-container-1,
  .cid-uY0Q7epwRe .grid-container-2 {
    gap: 0 24px;
  }
}
.cid-uY0Q7epwRe .mbr-section-title {
  margin-bottom: 44px;
  color: #000000;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-uY0Q7epwRe .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uY0Q7epwRe .content-head {
  max-width: 800px;
}
.cid-uY0Q7epwRe .container,
.cid-uY0Q7epwRe .container-fluid {
  overflow: hidden;
}
.cid-uY0Q7epwRe .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-uY0Q7epwRe .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-uY0Q7epwRe .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: 0 8px 20px -8px #efefef;
}
@media (max-width: 1200px) {
  .cid-uY0Q7epwRe .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-uY0Q7epwRe .grid-item img {
    min-width: 35vw;
  }
}
@media (max-width: 425px) {
  .cid-uY0Q7epwRe .grid-item img {
    height: 140px;
  }
}
.cid-uY0Q7epwRe .grid-container-1,
.cid-uY0Q7epwRe .grid-container-2 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-uY0Q7epwRe .grid-container-1 {
  align-items: flex-end;
}
.cid-uY0Q7epwRe .grid-container-2 {
  align-items: flex-start;
  padding-bottom: 20px;
}
.cid-uW3nY3jFdT {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uW3nY3jFdT .card-wrapper {
  border-radius: 4px;
  background: #0087ab;
}
@media (min-width: 992px) {
  .cid-uW3nY3jFdT .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uW3nY3jFdT .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uW3nY3jFdT .text-box {
    padding: 2rem;
  }
}
.cid-uW3nY3jFdT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uW3nY3jFdT .lin {
  position: relative;
  display: inline;
  color: #626262;
  text-transform: uppercase;
  margin-top: 1.25rem;
}
.cid-uW3nY3jFdT .line {
  left: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #0099ff;
  opacity: 0;
}
.cid-uW3nY3jFdT .lin:hover .line {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: all 0.3s;
}
.cid-uW3nY3jFdT .small-img {
  width: 40%;
  margin: auto;
}
.cid-uW3nY3jFdT .text-box {
  text-align: center;
}
.cid-uW3nY3jFdT .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uW3nY3jFdT .mbr-text {
  padding-top: 10px;
}
.cid-uW3nY3jFdT .mbr-section-subtitle {
  color: #cccccc;
}
.cid-uW3nY3jFdT .mbr-text,
.cid-uW3nY3jFdT .button-align {
  color: #ffffff;
  text-align: center;
}
.cid-uWm5MDOl6Z {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWm5MDOl6Z .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWm5MDOl6Z .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWm5MDOl6Z a {
  font-weight: bold;
}
.cid-uWm5MDOl6Z .mbr-section-title {
  color: #151515;
  text-align: center;
}
.cid-uWm5MDOl6Z .mbr-text,
.cid-uWm5MDOl6Z .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uWm5MDOl6Z .mbr-section-subtitle {
  text-align: center;
}
.cid-uWm7DlFQf6 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #55b4d4;
}
.cid-uWm7DlFQf6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWm7DlFQf6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWm7DlFQf6 a {
  font-weight: bold;
}
.cid-uWm7DlFQf6 .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uWm7DlFQf6 .mbr-text,
.cid-uWm7DlFQf6 .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uWm7DlFQf6 .mbr-section-subtitle {
  text-align: center;
}
.cid-uWkqHhgJ1V {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uWkqHhgJ1V .container {
    padding: 0 25px;
  }
}
.cid-uWkqHhgJ1V .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uWkqHhgJ1V .title-wrapper .mbr-section-title {
    margin-bottom: 50px;
  }
}
.cid-uWkqHhgJ1V .panel-group {
  border-bottom: 2px solid #e1e1e1;
}
.cid-uWkqHhgJ1V .panel-group .card {
  border-top: 2px solid #e1e1e1;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uWkqHhgJ1V .panel-group .card .card-header {
  padding: 16px 0;
  border: none;
  background-color: transparent;
}
.cid-uWkqHhgJ1V .panel-group .card .card-header .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-uWkqHhgJ1V .panel-group .card .card-header .panel-title:not(.collapsed) .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #149dcc;
}
.cid-uWkqHhgJ1V .panel-group .card .card-header .panel-title:hover .mbr-iconfont {
  color: #f0f0f0;
  box-shadow: inset 52px 0 0 0 #149dcc;
}
.cid-uWkqHhgJ1V .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uWkqHhgJ1V .panel-group .card .card-header .panel-title .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  min-width: 52px;
  height: 52px;
  font-size: 20px;
  color: #149dcc;
  background-color: #f0f0f0;
  margin-left: 10px;
  transition: all 0.3s ease-in-out;
}
.cid-uWkqHhgJ1V .panel-group .card .panel-collapse .panel-body {
  padding-bottom: 25px;
}
.cid-uWkqHhgJ1V .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uWkqHhgJ1V .mbr-section-title {
  color: #151515;
}
.cid-uWkqHhgJ1V .panel-title-edit {
  color: #000000;
}
.cid-uWkqHhgJ1V .panel-text {
  color: #000000;
}
.cid-uW3srp8BuR {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uW3srp8BuR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW3srp8BuR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW3srp8BuR .mbr-section-title {
  color: #232323;
}
.cid-uJX9WiSDPx {
  padding-top: 2rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uJX9WiSDPx .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uJX9WiSDPx .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uJX9WiSDPx .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uJX9WiSDPx .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uJX9WiSDPx .card-wrapper:hover {
  background: #cccccc;
}
.cid-uJX9WiSDPx .card-title,
.cid-uJX9WiSDPx .card-box {
  color: #232323;
  text-align: center;
}
.cid-uJX9WiSDPx .main-title,
.cid-uJX9WiSDPx .title-col {
  text-align: center;
  color: #000000;
}
.cid-uJX9WiSDPx .card-text {
  color: #55b4d4;
}
.cid-uJX9WiSDPx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJX9WiSDPx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSUxlg39Am {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tSUxlg39Am .title {
  margin-bottom: 2rem;
}
.cid-tSUxlg39Am .mbr-section-subtitle {
  color: #151515;
}
.cid-tSUxlg39Am a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tSUxlg39Am a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tSUxlg39Am .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tSUxlg39Am .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uIuxVdUlzV {
  padding-top: 1rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uIuxVdUlzV .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uIuxVdUlzV .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uIuxVdUlzV .container {
    padding: 0 16px;
  }
}
.cid-uIuxVdUlzV .row {
  position: relative;
  z-index: 1;
}
.cid-uIuxVdUlzV .title-wrapper {
  margin-bottom: 80px;
}
.cid-uIuxVdUlzV .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uIuxVdUlzV .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIuxVdUlzV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uIuxVdUlzV .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uIuxVdUlzV .embla__slide .slide-content {
  width: 100%;
}
.cid-uIuxVdUlzV .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIuxVdUlzV .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uIuxVdUlzV .embla__button--next,
.cid-uIuxVdUlzV .embla__button--prev {
  display: flex;
}
.cid-uIuxVdUlzV .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uIuxVdUlzV .embla__button {
    display: none;
  }
}
.cid-uIuxVdUlzV .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uIuxVdUlzV .embla__button:hover {
  opacity: .7 !important;
}
.cid-uIuxVdUlzV .embla__button.embla__button--prev {
  left: 0;
}
.cid-uIuxVdUlzV .embla__button.embla__button--next {
  right: 0;
}
.cid-uIuxVdUlzV .embla {
  position: relative;
  width: 100%;
}
.cid-uIuxVdUlzV .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uIuxVdUlzV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uIuxVdUlzV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uIuxVdUlzV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uIuxVdUlzV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIuxVdUlzV .mbr-desc {
  color: #151515;
  text-align: center;
}
.cid-tSUxlc9KHf {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tSUxlc9KHf h3 {
  text-align: center;
}
.cid-tSUxlc9KHf .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tSUxlc9KHf .mbr-content-text {
  color: #767676;
}
.cid-tSUxlc9KHf .panel-item {
  background: #ffffff;
}
.cid-tSUxlc9KHf .card {
  word-wrap: break-word;
}
.cid-tSUxlc9KHf .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-tSUxlfIOKf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tSUxlfIOKf .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tSUxlfIOKf .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tSUxlfIOKf .mbr-text {
  color: #767676;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-tcZV2SXXkV .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-tcZV2SXXkV .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-tcZV2SXXkV a {
  font-style: normal;
}
.cid-tcZV2SXXkV .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-tcZV2SXXkV .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-tcZV2SXXkV .nav-item:focus,
.cid-tcZV2SXXkV .nav-link:focus {
  outline: none;
}
.cid-tcZV2SXXkV .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tcZV2SXXkV .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tcZV2SXXkV .menu-logo {
  margin-right: auto;
}
.cid-tcZV2SXXkV .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tcZV2SXXkV .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tcZV2SXXkV .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tcZV2SXXkV .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tcZV2SXXkV .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tcZV2SXXkV .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tcZV2SXXkV .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-tcZV2SXXkV .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tcZV2SXXkV .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tcZV2SXXkV .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tcZV2SXXkV .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tcZV2SXXkV .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tcZV2SXXkV .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tcZV2SXXkV .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tcZV2SXXkV .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tcZV2SXXkV .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-tcZV2SXXkV .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tcZV2SXXkV .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tcZV2SXXkV .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tcZV2SXXkV .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tcZV2SXXkV .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tcZV2SXXkV .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tcZV2SXXkV .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tcZV2SXXkV button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tcZV2SXXkV button.navbar-toggler:focus {
  outline: none;
}
.cid-tcZV2SXXkV button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-tcZV2SXXkV button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tcZV2SXXkV button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tcZV2SXXkV button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tcZV2SXXkV button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tcZV2SXXkV nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcZV2SXXkV nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tcZV2SXXkV nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tcZV2SXXkV nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tcZV2SXXkV .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tcZV2SXXkV .collapsed .btn {
  display: -webkit-flex;
}
.cid-tcZV2SXXkV .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tcZV2SXXkV .collapsed .navbar-collapse.collapsing,
.cid-tcZV2SXXkV .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tcZV2SXXkV .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tcZV2SXXkV .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tcZV2SXXkV .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tcZV2SXXkV .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tcZV2SXXkV .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tcZV2SXXkV .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tcZV2SXXkV .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tcZV2SXXkV .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-tcZV2SXXkV .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tcZV2SXXkV .collapsed button.navbar-toggler {
  display: block;
}
.cid-tcZV2SXXkV .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tcZV2SXXkV .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tcZV2SXXkV .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-tcZV2SXXkV .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tcZV2SXXkV .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tcZV2SXXkV .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-tcZV2SXXkV .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tcZV2SXXkV img {
    height: 3.8rem !important;
  }
  .cid-tcZV2SXXkV .btn {
    display: -webkit-flex;
  }
  .cid-tcZV2SXXkV button.navbar-toggler {
    display: block;
  }
  .cid-tcZV2SXXkV .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tcZV2SXXkV .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tcZV2SXXkV .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tcZV2SXXkV .navbar-collapse.collapsing,
  .cid-tcZV2SXXkV .navbar-collapse.show {
    display: block !important;
  }
  .cid-tcZV2SXXkV .navbar-collapse.collapsing .navbar-nav,
  .cid-tcZV2SXXkV .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tcZV2SXXkV .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tcZV2SXXkV .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tcZV2SXXkV .navbar-collapse.collapsing .navbar-buttons,
  .cid-tcZV2SXXkV .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tcZV2SXXkV .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tcZV2SXXkV .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tcZV2SXXkV .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-tcZV2SXXkV .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tcZV2SXXkV .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tcZV2SXXkV .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tcZV2SXXkV .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-tcZV2SXXkV .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-tcZV2SXXkV .nav-link:hover,
.cid-tcZV2SXXkV .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tcZV2TxrNq .main-card {
  background-image: url("../../../assets/images/mbr-1920x1080.jpg");
  background-size: auto 110%;
  position: relative;
  background-position: center;
  align-items: center;
  display: flex;
}
.cid-tcZV2TxrNq .mbr-main-subtitle {
  background: #0099ff;
  width: fit-content;
  padding: 0.4rem 0.8rem;
  position: relative;
  margin-bottom: 2rem;
  text-align: left;
  color: #ffffff;
}
.cid-tcZV2TxrNq .mbr-main-subtitle:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -18px;
  border-left: 24px solid #0099ff;
  border-bottom: 18px solid transparent;
  z-index: 2;
}
@media (max-width: 767px) {
  .cid-tcZV2TxrNq .mbr-main-subtitle {
    margin: auto;
    margin-bottom: 2rem;
  }
}
.cid-tcZV2TxrNq .card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  height: 400px;
}
.cid-tcZV2TxrNq .card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s;
  pointer-events: none;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  z-index: 1;
}
.cid-tcZV2TxrNq .card:hover:before {
  opacity: 0.5;
}
.cid-tcZV2TxrNq .card:hover img {
  transform: scale(1.1);
}
.cid-tcZV2TxrNq .card:hover .card-box {
  opacity: 1;
  transform: translateY(0px);
}
@media (max-width: 767px) {
  .cid-tcZV2TxrNq .card:before {
    opacity: 0.5;
  }
  .cid-tcZV2TxrNq .card .card-box {
    opacity: 1;
    transform: translateY(0px);
  }
}
.cid-tcZV2TxrNq .card img {
  transition: all 0.3s;
  height: 100%;
  object-fit: cover;
}
.cid-tcZV2TxrNq .content {
  max-width: 450px;
  margin: auto;
  padding: 4rem 2rem;
}
@media (max-width: 992px) {
  .cid-tcZV2TxrNq .content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .cid-tcZV2TxrNq .content {
    padding: 4rem 1rem;
  }
}
.cid-tcZV2TxrNq .social {
  display: inline-flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
.cid-tcZV2TxrNq .social .mbr-iconfont {
  padding-right: 0.6rem;
  color: #0099ff;
  font-size: 1.2rem;
}
.cid-tcZV2TxrNq .card-box {
  opacity: 0;
  transition: all 0.3s;
  padding: 1rem;
  transform: translateY(15px);
}
.cid-tcZV2TxrNq .card-wrapper {
  position: absolute;
  cursor: pointer;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  margin: auto;
  overflow: hidden;
  z-index: 2;
}
.cid-tcZV2TxrNq .card-title {
  color: #ffffff;
  text-align: center;
}
.cid-tcZV2TxrNq .card1-text {
  color: #ffffff;
  text-align: center;
}
.cid-tcZV2TxrNq .mbr-section-subtitle,
.cid-tcZV2TxrNq .main-btn {
  color: #efefef;
  text-align: left;
}
.cid-tcZV2TxrNq .soc-link,
.cid-tcZV2TxrNq .soc-wrapper {
  color: #ffffff;
}
.cid-tcZV2TxrNq .mbr-section-title {
  color: #ffffff;
}
.cid-tcZV2U9NCS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tcZV2Ur3IV {
  padding-top: 15px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tcZV2Ur3IV .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tcZV2Ur3IV .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-tcZV2Ur3IV .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tcZV2Ur3IV .img-text {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border: 2px solid #efefef;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-tcZV2Ur3IV .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-tcZV2Ur3IV .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-tcZV2Ur3IV .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-tcZV2Ur3IV .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-tcZV2Ur3IV .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tcZV2Ur3IV .media-block {
    padding-left: 2rem;
  }
}
.cid-tcZV2Ur3IV .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-tcZV2Ur3IV .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-tcZV2Ur3IV .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tcZV2V79uu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tcZV2V79uu .title__block {
  position: relative;
  z-index: 10;
}
.cid-tcZV2V79uu .mbr-section-title {
  margin-bottom: 25px;
  color: #2e2e2e;
  text-align: right;
}
.cid-tcZV2V79uu .mbr-section-subtitle {
  margin-bottom: 10px;
  padding-right: 150px;
}
.cid-tcZV2V79uu .mbr-text {
  margin-bottom: 50px;
  padding-right: 150px;
}
.cid-tcZV2V79uu .mbr-section-btn {
  padding-right: 150px;
}
.cid-tcZV2V79uu .slider__block .container {
  padding: 0 15px;
}
.cid-tcZV2V79uu .carousel {
  padding-bottom: 100px;
}
.cid-tcZV2V79uu .carousel-inner {
  overflow: visible;
  transform: translateX(250px);
}
.cid-tcZV2V79uu .carousel-item {
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease, transform 0s ease .3s;
}
.cid-tcZV2V79uu .carousel-item.active {
  opacity: 1;
}
.cid-tcZV2V79uu .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-tcZV2V79uu .carousel-item .wrap-img {
  transition: transform 0s;
  position: relative;
  text-align: center;
  margin: auto;
  width: 400px;
  height: 600px;
  transform: scale(0.9) rotate(-7deg);
  z-index: 1;
}
.cid-tcZV2V79uu .carousel-item .wrap-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-tcZV2V79uu .carousel-item .wrap-img {
    width: 100%;
  }
}
.cid-tcZV2V79uu .carousel-item .cloneditem-1,
.cid-tcZV2V79uu .carousel-item .cloneditem-2 {
  opacity: 0;
}
.cid-tcZV2V79uu .carousel-item.active .cloneditem-1 {
  transform: translateX(-170px);
  z-index: 2;
  opacity: 1;
  transition: opacity .5s ease .3s;
}
.cid-tcZV2V79uu .carousel-item.active .cloneditem-1 .wrap-img {
  transform: scale(1.1);
}
.cid-tcZV2V79uu .carousel-item.active .cloneditem-2 {
  transform: translateX(-270px);
  z-index: 3;
  opacity: 1;
  transition: opacity .5s ease .7s;
}
.cid-tcZV2V79uu .carousel-item.active .cloneditem-2 .wrap-img {
  transform: scale(0.9) rotate(7deg);
}
.cid-tcZV2V79uu .arrows .carousel-controls {
  top: -150px;
  left: 80px;
}
.cid-tcZV2V79uu .carousel-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
  justify-content: center;
}
.cid-tcZV2V79uu .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 45px;
  height: 45px;
  color: #003d59;
  transition: all 0.3s ease;
}
.cid-tcZV2V79uu .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-tcZV2V79uu .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-tcZV2V79uu .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 45px;
}
.cid-tcZV2V79uu .carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  margin: 2rem 1rem 0;
  text-align: center;
}
.cid-tcZV2V79uu .carousel-indicators li {
  max-width: initial;
  width: 190px;
  height: 15px;
  background-color: transparent;
  display: inline-block;
  border: 0;
  border-bottom: 2px solid #003d59;
  max-height: initial;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: all 0s ease .3s;
}
.cid-tcZV2V79uu .carousel-indicators li.active {
  border: 0;
  border-bottom: 5px solid #003d59;
  margin: 0;
  opacity: 1;
}
.cid-tcZV2V79uu .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
.cid-tcZV2V79uu .cloneditem-1,
.cid-tcZV2V79uu .cloneditem-2,
.cid-tcZV2V79uu .cloneditem-3 {
  display: none;
}
@media (min-width: 992px) {
  .cid-tcZV2V79uu .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-tcZV2V79uu .carousel-inner {
    padding-bottom: 3px;
  }
  .cid-tcZV2V79uu .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-tcZV2V79uu .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-tcZV2V79uu .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-tcZV2V79uu .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-tcZV2V79uu .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-tcZV2V79uu .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tcZV2V79uu .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tcZV2V79uu .carousel-inner.slides2 .cloneditem-1,
  .cid-tcZV2V79uu .carousel-inner.slides2 .cloneditem-2,
  .cid-tcZV2V79uu .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-tcZV2V79uu .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-tcZV2V79uu .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-tcZV2V79uu .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-tcZV2V79uu .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-tcZV2V79uu .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-tcZV2V79uu .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-tcZV2V79uu .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-tcZV2V79uu .carousel-inner.slides3 .cloneditem-1,
  .cid-tcZV2V79uu .carousel-inner.slides3 .cloneditem-2,
  .cid-tcZV2V79uu .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-tcZV2V79uu .title__block {
    text-align: center;
    margin-bottom: 67px;
  }
  .cid-tcZV2V79uu .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-tcZV2V79uu .mbr-section-subtitle {
    margin-bottom: 7px;
    padding-right: 0;
  }
  .cid-tcZV2V79uu .mbr-text {
    margin-bottom: 28px;
    padding-right: 0;
  }
  .cid-tcZV2V79uu .mbr-section-btn {
    padding-right: 0;
  }
  .cid-tcZV2V79uu .carousel-inner {
    overflow: hidden;
    transform: translateX(0);
  }
  .cid-tcZV2V79uu .carousel-item {
    transition: all .3s ease;
    opacity: 1;
  }
  .cid-tcZV2V79uu .carousel-item .wrap-img {
    height: auto;
    transition: all .3s 0s;
    transform: scale(1) rotate(0);
    width: 100%;
  }
  .cid-tcZV2V79uu .carousel-indicators li {
    transition: all 0s ease 0s;
  }
}
@media (max-width: 767px) {
  .cid-tcZV2V79uu .carousel-controls {
    justify-content: center;
    margin-top: 40px;
    display: none;
  }
  .cid-tcZV2V79uu .carousel-controls .carousel-control {
    width: 30px;
    height: 30px;
  }
  .cid-tcZV2V79uu .carousel-controls .carousel-control .mbr-iconfont {
    font-size: 30px;
  }
  .cid-tcZV2V79uu .carousel {
    padding-bottom: 50px;
  }
}
.cid-tcZV2WdPdX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-tcZV2WdPdX .row {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-tcZV2WdPdX .col-text {
    padding: 0 0 0 0;
  }
}
.cid-tcZV2WdPdX .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 30px;
  height: 100%;
  background-color: #f9f7f5;
}
@media (max-width: 767px) {
  .cid-tcZV2WdPdX .text-wrapper {
    text-align: center !important;
    padding-bottom: 54px;
  }
}
.cid-tcZV2WdPdX .label-text {
  width: 100%;
  margin-bottom: 16px;
  color: #149dcc;
}
@media (max-width: 767px) {
  .cid-tcZV2WdPdX .label-text {
    text-align: center !important;
  }
}
.cid-tcZV2WdPdX .mbr-section-title {
  width: 100%;
  color: #000000;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tcZV2WdPdX .mbr-section-title {
    text-align: center !important;
  }
}
.cid-tcZV2WdPdX .mbr-text {
  letter-spacing: inherit;
  color: #000000;
  width: 100%;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .cid-tcZV2WdPdX .mbr-text {
    text-align: center !important;
  }
}
.cid-tcZV2WdPdX .item {
  display: flex;
  align-items: center;
  margin: 12px 0;
}
.cid-tcZV2WdPdX .btn-container {
  width: 100%;
  margin-top: auto;
}
.cid-tcZV2WdPdX .mbr-section-btn .btn {
  padding: 0;
}
.cid-tcZV2WdPdX .mbr-section-btn .btn span {
  margin-right: 8px;
  transition: 0.2s all;
}
.cid-tcZV2WdPdX .mbr-section-btn .btn:hover span {
  margin-left: 16px;
  margin-right: 0;
}
.cid-tcZV2WdPdX .col-cards {
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .cid-tcZV2WdPdX .col-cards {
    padding: 0;
    padding-left: 1.8%;
  }
}
@media (min-width: 992px) {
  .cid-tcZV2WdPdX .col-cards {
    padding-left: 5%;
  }
}
.cid-tcZV2WdPdX .cards-wrap {
  display: flex;
  flex-wrap: wrap;
  padding: 30px;
  width: 100%;
}
.cid-tcZV2WdPdX .cards-wrap:hover {
  background-color: #f9f7f5;
}
.cid-tcZV2WdPdX .card {
  padding: 30px;
  background-color: #ffffff;
  transition: 0.4s all;
  border-radius: 0;
}
.cid-tcZV2WdPdX .card:hover {
  background-color: #f9f7f5;
}
@media (min-width: 768px) {
  .cid-tcZV2WdPdX .card:hover {
    transform: translate(0px, -10px);
  }
}
.cid-tcZV2WdPdX .card-wrap {
  display: flex;
  flex-direction: column;
}
.cid-tcZV2WdPdX .img-container {
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .cid-tcZV2WdPdX .img-container {
    display: flex;
    justify-content: center;
  }
}
.cid-tcZV2WdPdX .img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 93px;
  height: 93px;
  position: relative;
}
.cid-tcZV2WdPdX .img-wrap img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tcZV2WdPdX .img-bg {
  background-color: #F0C48A;
  min-width: 75%;
  height: 75%;
  border-radius: 50%;
  position: absolute;
}
.cid-tcZV2WdPdX .card-title {
  color: #149dcc;
  margin-bottom: 8px;
}
.cid-tcZV2WdPdX .card-text {
  color: #222222;
  margin-bottom: 0;
}
.cid-tcZV2YhqeS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tcZV2YhqeS .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tcZV2YhqeS .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-tcZV2YhqeS .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-tcZV2YhqeS .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-tcZV2YhqeS .card-front img {
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-tcZV2YhqeS .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #232323;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-tcZV2YhqeS .card {
  min-height: 300px;
}
.cid-tcZV2YhqeS .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-tcZV2YhqeS .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-tcZV2YhqeS .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-tcZV2YhqeS .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-tcZV2YUV4d {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tcZV2YUV4d .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-tcZV2YUV4d .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-tcZV2YUV4d .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-tcZV2YUV4d .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-tcZV2YUV4d .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-tcZV2YUV4d .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-tcZV2YUV4d .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-tcZV2YUV4d .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-tcZV2YUV4d .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-tcZV2YUV4d .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-tcZV2YUV4d .mbr-fallback-image.disabled {
  display: none;
}
.cid-tcZV2YUV4d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tcZV2ZnVqU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tcZV2ZnVqU .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-tcZV2ZnVqU .mbr-content-text {
  color: #767676;
  margin-bottom: 0;
}
.cid-tcZV2ZnVqU .card {
  word-wrap: break-word;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-tcZV2ZnVqU .img-text {
  width: 64px;
  height: 64px;
  font-size: 32px;
  border: 2px solid #efefef;
  border-radius: 50%;
}
@media (max-width: 991px) {
  .cid-tcZV2ZnVqU .img-text {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
}
@media (min-width: 992px) {
  .cid-tcZV2ZnVqU .cards-block {
    border-top: 2px solid #efefef;
  }
}
.cid-tcZV2ZnVqU .cards-block .card {
  border-bottom: 2px solid #efefef;
  border-radius: 0;
}
.cid-tcZV2ZnVqU .cards-container {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  word-break: break-word;
}
.cid-tcZV2ZnVqU .media-block {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
@media (min-width: 992px) {
  .cid-tcZV2ZnVqU .media-block {
    padding-left: 2rem;
  }
}
.cid-tcZV2ZnVqU .cards-block {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
@media (max-width: 991px) {
  .cid-tcZV2ZnVqU .media-block {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
    padding-left: 0;
    padding-bottom: 2rem;
  }
}
.cid-tcZV2ZnVqU .media-container-row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-tcZV304byp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tcZV304byp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tcZV304byp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tcZV304byp .row {
  justify-content: space-between;
}
.cid-tcZV304byp .mbr-text,
.cid-tcZV304byp .mbr-section-btn {
  color: #232323;
}
.cid-tcZV30yvgc {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tcZV30yvgc .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tcZV30yvgc .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tcZV30yvgc .mbr-gallery {
  border-radius: 20px;
  border: 3px solid #000;
  overflow: hidden;
}
.cid-tcZV30yvgc .mbr-section-head {
  width: fit-content;
  border-radius: 20px;
  background-color: #ffffff;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 80px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-tcZV30yvgc .mbr-section-head .display-7 {
    font-size: 23.8px;
  }
}
.cid-tcZV30yvgc .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tcZV30yvgc .item-wrapper img {
  object-fit: cover;
}
.cid-tcZV30yvgc .item-wrapper img {
  height: 100%;
}
.cid-tcZV30yvgc .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  transition: 0.2s;
}
.cid-tcZV30yvgc .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tcZV30yvgc .carousel-control,
.cid-tcZV30yvgc .close {
  background: #1b1b1b;
}
.cid-tcZV30yvgc .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tcZV30yvgc .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tcZV30yvgc .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
}
.cid-tcZV30yvgc .close::before {
  content: '\e91a';
}
.cid-tcZV30yvgc .close:hover {
  opacity: .7;
}
.cid-tcZV30yvgc .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  opacity: 0.5;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tcZV30yvgc .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcZV30yvgc .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tcZV30yvgc .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tcZV30yvgc .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tcZV30yvgc .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tcZV30yvgc .carousel-indicators li.active,
.cid-tcZV30yvgc .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tcZV30yvgc .carousel-indicators li::after,
.cid-tcZV30yvgc .carousel-indicators li::before {
  content: none;
}
.cid-tcZV30yvgc .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tcZV30yvgc .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tcZV30yvgc .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tcZV30yvgc .carousel-indicators {
    display: none;
  }
}
.cid-tcZV30yvgc .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tcZV30yvgc .carousel-inner > .active {
  display: block;
}
.cid-tcZV30yvgc .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tcZV30yvgc .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tcZV30yvgc .carousel-control:hover {
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-tcZV30yvgc .carousel-control,
  .cid-tcZV30yvgc .carousel-indicators,
  .cid-tcZV30yvgc .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tcZV30yvgc .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tcZV30yvgc .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tcZV30yvgc .carousel-indicators .active,
.cid-tcZV30yvgc .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tcZV30yvgc .carousel-indicators .active {
  background: #fff;
}
.cid-tcZV30yvgc .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tcZV30yvgc .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tcZV30yvgc .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tcZV30yvgc .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tcZV30yvgc .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tcZV30yvgc .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tcZV30yvgc .carousel {
  width: 100%;
}
.cid-tcZV30yvgc .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tcZV30yvgc .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tcZV30yvgc .modal.fade .modal-dialog,
.cid-tcZV30yvgc .modal.in .modal-dialog {
  transform: none;
}
.cid-tcZV30yvgc .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tcZV30yvgc H6 {
  text-align: center;
}
.cid-tcZV30yvgc H3 {
  text-align: right;
  color: #2e2e2e;
}
.cid-tcZV32UEbM {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tcZV32UEbM .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tcZV32UEbM .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tcZV32UEbM .mbr-text {
  color: #767676;
}
.cid-tfhOxBd2Ve {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-tfhOxBd2Ve .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tfhOxBd2Ve .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tfhOxBd2Ve .mbr-gallery {
  border-radius: 20px;
  border: 3px solid #000;
  overflow: hidden;
}
.cid-tfhOxBd2Ve .mbr-section-head {
  width: fit-content;
  border-radius: 20px;
  background-color: #ffffff;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 80px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-tfhOxBd2Ve .mbr-section-head .display-7 {
    font-size: 23.8px;
  }
}
.cid-tfhOxBd2Ve .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-tfhOxBd2Ve .item-wrapper img {
  object-fit: cover;
}
.cid-tfhOxBd2Ve .item-wrapper img {
  height: 100%;
}
.cid-tfhOxBd2Ve .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  transition: 0.2s;
}
.cid-tfhOxBd2Ve .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tfhOxBd2Ve .carousel-control,
.cid-tfhOxBd2Ve .close {
  background: #1b1b1b;
}
.cid-tfhOxBd2Ve .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tfhOxBd2Ve .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tfhOxBd2Ve .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
}
.cid-tfhOxBd2Ve .close::before {
  content: '\e91a';
}
.cid-tfhOxBd2Ve .close:hover {
  opacity: .7;
}
.cid-tfhOxBd2Ve .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  opacity: 0.5;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tfhOxBd2Ve .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfhOxBd2Ve .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tfhOxBd2Ve .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tfhOxBd2Ve .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tfhOxBd2Ve .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tfhOxBd2Ve .carousel-indicators li.active,
.cid-tfhOxBd2Ve .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tfhOxBd2Ve .carousel-indicators li::after,
.cid-tfhOxBd2Ve .carousel-indicators li::before {
  content: none;
}
.cid-tfhOxBd2Ve .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tfhOxBd2Ve .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tfhOxBd2Ve .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tfhOxBd2Ve .carousel-indicators {
    display: none;
  }
}
.cid-tfhOxBd2Ve .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tfhOxBd2Ve .carousel-inner > .active {
  display: block;
}
.cid-tfhOxBd2Ve .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tfhOxBd2Ve .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tfhOxBd2Ve .carousel-control:hover {
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-tfhOxBd2Ve .carousel-control,
  .cid-tfhOxBd2Ve .carousel-indicators,
  .cid-tfhOxBd2Ve .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tfhOxBd2Ve .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tfhOxBd2Ve .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tfhOxBd2Ve .carousel-indicators .active,
.cid-tfhOxBd2Ve .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tfhOxBd2Ve .carousel-indicators .active {
  background: #fff;
}
.cid-tfhOxBd2Ve .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tfhOxBd2Ve .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tfhOxBd2Ve .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tfhOxBd2Ve .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tfhOxBd2Ve .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tfhOxBd2Ve .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tfhOxBd2Ve .carousel {
  width: 100%;
}
.cid-tfhOxBd2Ve .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tfhOxBd2Ve .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tfhOxBd2Ve .modal.fade .modal-dialog,
.cid-tfhOxBd2Ve .modal.in .modal-dialog {
  transform: none;
}
.cid-tfhOxBd2Ve .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tfhOxBd2Ve H6 {
  text-align: center;
}
.cid-tfhOxBd2Ve H3 {
  text-align: right;
  color: #2e2e2e;
}
.cid-tBInFVtXAf {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tBInFVtXAf .title {
  margin-bottom: 2rem;
}
.cid-tBInFVtXAf .mbr-section-subtitle {
  color: #767676;
}
.cid-tBInFVtXAf a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tBInFVtXAf a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tBInFVtXAf .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tBInFVtXAf .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-teGnqfinAz .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-teGnqfinAz .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-teGnqfinAz a {
  font-style: normal;
}
.cid-teGnqfinAz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-teGnqfinAz .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-teGnqfinAz .nav-item:focus,
.cid-teGnqfinAz .nav-link:focus {
  outline: none;
}
.cid-teGnqfinAz .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-teGnqfinAz .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-teGnqfinAz .menu-logo {
  margin-right: auto;
}
.cid-teGnqfinAz .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-teGnqfinAz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-teGnqfinAz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-teGnqfinAz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-teGnqfinAz .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-teGnqfinAz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-teGnqfinAz .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-teGnqfinAz .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-teGnqfinAz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-teGnqfinAz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-teGnqfinAz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-teGnqfinAz .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-teGnqfinAz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-teGnqfinAz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-teGnqfinAz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-teGnqfinAz .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-teGnqfinAz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-teGnqfinAz .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-teGnqfinAz .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-teGnqfinAz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-teGnqfinAz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-teGnqfinAz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-teGnqfinAz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-teGnqfinAz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-teGnqfinAz button.navbar-toggler:focus {
  outline: none;
}
.cid-teGnqfinAz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-teGnqfinAz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-teGnqfinAz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-teGnqfinAz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-teGnqfinAz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-teGnqfinAz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teGnqfinAz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-teGnqfinAz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-teGnqfinAz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-teGnqfinAz .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-teGnqfinAz .collapsed .btn {
  display: -webkit-flex;
}
.cid-teGnqfinAz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-teGnqfinAz .collapsed .navbar-collapse.collapsing,
.cid-teGnqfinAz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-teGnqfinAz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-teGnqfinAz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-teGnqfinAz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-teGnqfinAz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-teGnqfinAz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-teGnqfinAz .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-teGnqfinAz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-teGnqfinAz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-teGnqfinAz .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-teGnqfinAz .collapsed button.navbar-toggler {
  display: block;
}
.cid-teGnqfinAz .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-teGnqfinAz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-teGnqfinAz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-teGnqfinAz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-teGnqfinAz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-teGnqfinAz .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-teGnqfinAz .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-teGnqfinAz img {
    height: 3.8rem !important;
  }
  .cid-teGnqfinAz .btn {
    display: -webkit-flex;
  }
  .cid-teGnqfinAz button.navbar-toggler {
    display: block;
  }
  .cid-teGnqfinAz .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-teGnqfinAz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-teGnqfinAz .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-teGnqfinAz .navbar-collapse.collapsing,
  .cid-teGnqfinAz .navbar-collapse.show {
    display: block !important;
  }
  .cid-teGnqfinAz .navbar-collapse.collapsing .navbar-nav,
  .cid-teGnqfinAz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-teGnqfinAz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-teGnqfinAz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-teGnqfinAz .navbar-collapse.collapsing .navbar-buttons,
  .cid-teGnqfinAz .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-teGnqfinAz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-teGnqfinAz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-teGnqfinAz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-teGnqfinAz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-teGnqfinAz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-teGnqfinAz .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-teGnqfinAz .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-teGnqfinAz .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-teGnqfinAz .nav-link:hover,
.cid-teGnqfinAz .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uHJmZsnOfY {
  background-image: url("../../../assets/images/mbr-1920x1076.jpg");
}
.cid-uHJmZsnOfY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHJmZsnOfY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHJmZsnOfY .mbr-section-title {
  color: #ffffff;
}
.cid-uHJmZsnOfY .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHJsgkWYtX {
  padding-top: 5rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uHJsgkWYtX .title__block {
  position: relative;
  z-index: 10;
}
.cid-uHJsgkWYtX .mbr-section-title {
  margin-bottom: 25px;
  color: #ff3366;
  text-align: left;
}
.cid-uHJsgkWYtX .mbr-section-subtitle {
  margin-bottom: 10px;
  padding-right: 150px;
}
.cid-uHJsgkWYtX .mbr-text {
  margin-bottom: 50px;
  padding-right: 150px;
}
.cid-uHJsgkWYtX .mbr-section-btn {
  padding-right: 150px;
}
.cid-uHJsgkWYtX .slider__block .container {
  padding: 0 15px;
}
.cid-uHJsgkWYtX .carousel {
  padding-bottom: 100px;
  padding-bottom: 160px;
}
.cid-uHJsgkWYtX .carousel-inner {
  overflow: visible;
  transform: translateX(250px);
}
.cid-uHJsgkWYtX .carousel-item {
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease, transform 0s ease .3s;
}
.cid-uHJsgkWYtX .carousel-item.active {
  opacity: 1;
}
.cid-uHJsgkWYtX .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-uHJsgkWYtX .carousel-item .wrap-img {
  transition: transform 0s;
  position: relative;
  text-align: center;
  margin: auto;
  width: 400px;
  height: 600px;
  transform: scale(0.9) rotate(-7deg);
  z-index: 1;
}
.cid-uHJsgkWYtX .carousel-item .wrap-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uHJsgkWYtX .carousel-item .wrap-img {
    width: 100%;
  }
}
.cid-uHJsgkWYtX .carousel-item .cloneditem-1,
.cid-uHJsgkWYtX .carousel-item .cloneditem-2 {
  opacity: 0;
}
.cid-uHJsgkWYtX .carousel-item.active .cloneditem-1 {
  transform: translateX(-170px);
  z-index: 2;
  opacity: 1;
  transition: opacity .5s ease .3s;
}
.cid-uHJsgkWYtX .carousel-item.active .cloneditem-1 .wrap-img {
  transform: scale(1.1);
}
.cid-uHJsgkWYtX .carousel-item.active .cloneditem-2 {
  transform: translateX(-270px);
  z-index: 3;
  opacity: 1;
  transition: opacity .5s ease .7s;
}
.cid-uHJsgkWYtX .carousel-item.active .cloneditem-2 .wrap-img {
  transform: scale(0.9) rotate(7deg);
}
.cid-uHJsgkWYtX .arrows .carousel-controls {
  top: -150px;
  left: 80px;
}
.cid-uHJsgkWYtX .carousel-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
  justify-content: center;
}
.cid-uHJsgkWYtX .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 45px;
  height: 45px;
  color: #003d59;
  transition: all 0.3s ease;
}
.cid-uHJsgkWYtX .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-uHJsgkWYtX .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-uHJsgkWYtX .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 45px;
}
.cid-uHJsgkWYtX .carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  margin: 2rem 1rem 0;
  text-align: center;
}
.cid-uHJsgkWYtX .carousel-indicators li {
  max-width: initial;
  width: 190px;
  height: 15px;
  background-color: transparent;
  display: inline-block;
  border: 0;
  border-bottom: 2px solid #003d59;
  max-height: initial;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: all 0s ease .3s;
}
.cid-uHJsgkWYtX .carousel-indicators li.active {
  border: 0;
  border-bottom: 5px solid #003d59;
  margin: 0;
  opacity: 1;
}
.cid-uHJsgkWYtX .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
.cid-uHJsgkWYtX .cloneditem-1,
.cid-uHJsgkWYtX .cloneditem-2,
.cid-uHJsgkWYtX .cloneditem-3 {
  display: none;
}
@media (min-width: 992px) {
  .cid-uHJsgkWYtX .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-uHJsgkWYtX .carousel-inner {
    padding-bottom: 3px;
  }
  .cid-uHJsgkWYtX .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-uHJsgkWYtX .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-uHJsgkWYtX .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-uHJsgkWYtX .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-uHJsgkWYtX .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-uHJsgkWYtX .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uHJsgkWYtX .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-uHJsgkWYtX .carousel-inner.slides2 .cloneditem-1,
  .cid-uHJsgkWYtX .carousel-inner.slides2 .cloneditem-2,
  .cid-uHJsgkWYtX .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-uHJsgkWYtX .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-uHJsgkWYtX .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-uHJsgkWYtX .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-uHJsgkWYtX .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-uHJsgkWYtX .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-uHJsgkWYtX .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uHJsgkWYtX .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-uHJsgkWYtX .carousel-inner.slides3 .cloneditem-1,
  .cid-uHJsgkWYtX .carousel-inner.slides3 .cloneditem-2,
  .cid-uHJsgkWYtX .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-uHJsgkWYtX .title__block {
    text-align: center;
    margin-bottom: 67px;
  }
  .cid-uHJsgkWYtX .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-uHJsgkWYtX .mbr-section-subtitle {
    margin-bottom: 7px;
    padding-right: 0;
  }
  .cid-uHJsgkWYtX .mbr-text {
    margin-bottom: 28px;
    padding-right: 0;
  }
  .cid-uHJsgkWYtX .mbr-section-btn {
    padding-right: 0;
  }
  .cid-uHJsgkWYtX .carousel-inner {
    overflow: hidden;
    transform: translateX(0);
  }
  .cid-uHJsgkWYtX .carousel-item {
    transition: all .3s ease;
    opacity: 1;
  }
  .cid-uHJsgkWYtX .carousel-item .wrap-img {
    height: auto;
    transition: all .3s 0s;
    transform: scale(1) rotate(0);
    width: 100%;
  }
  .cid-uHJsgkWYtX .carousel-indicators li {
    transition: all 0s ease 0s;
  }
}
@media (max-width: 767px) {
  .cid-uHJsgkWYtX .carousel-controls {
    justify-content: center;
    margin-top: 40px;
    display: none;
  }
  .cid-uHJsgkWYtX .carousel-controls .carousel-control {
    width: 30px;
    height: 30px;
  }
  .cid-uHJsgkWYtX .carousel-controls .carousel-control .mbr-iconfont {
    font-size: 30px;
  }
  .cid-uHJsgkWYtX .carousel {
    padding-bottom: 50px;
  }
}
.cid-uHJsgkWYtX .mbr-section-title DIV {
  text-align: left;
}
.cid-tTJmvOlWT7 {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tTJmvOlWT7 .media-content .btn-bgr {
  z-index: 0;
}
.cid-tTJmvOlWT7 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-tTJmvOlWT7 h3 {
  color: #000000;
  font-weight: 300;
}
.cid-tTJmvOlWT7 p {
  color: #464646;
}
.cid-tTJmvOlWT7 h2 {
  color: #000000;
}
.cid-tTJmvOlWT7 .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-tTJmvOlWT7 .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-tTJmvOlWT7 .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-tTJmvOlWT7 .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-tTJmvOlWT7 .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tTJmvOlWT7 .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-tTJmvOlWT7 .mbr-text {
    text-align: center;
  }
}
.cid-tTJmvOlWT7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tTJmvOlWT7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHJuxdeJJw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uHJuxdeJJw h6 {
  line-height: 1.2;
}
.cid-uHJuxdeJJw img,
.cid-uHJuxdeJJw .item-img {
  width: 100%;
}
.cid-uHJuxdeJJw .item:focus,
.cid-uHJuxdeJJw span:focus {
  outline: none;
}
.cid-uHJuxdeJJw .item {
  cursor: pointer;
}
.cid-uHJuxdeJJw .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHJuxdeJJw .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-uHJuxdeJJw .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uHJuxdeJJw .mbr-text,
.cid-uHJuxdeJJw .mbr-section-btn {
  color: #000000;
}
.cid-uHJuxdeJJw .item-title {
  color: #000000;
  text-align: center;
}
.cid-uHJuxdeJJw .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uHJuxdeJJw .item-text {
  color: #000000;
  text-align: center;
}
.cid-uHJuxdeJJw .content-head {
  max-width: 800px;
}
.cid-tTKiRIbaoA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tTKiRIbaoA h2 {
  text-align: left;
}
.cid-tTKiRIbaoA h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tTKiRIbaoA p {
  color: #767676;
  text-align: left;
}
.cid-tTKiRIbaoA .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-tTKiRIbaoA .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-tTKiRIbaoA .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-tTKiRIbaoA .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-tTKiRIbaoA .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-tTKiRIbaoA .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-tTKiRIbaoA .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tTKiRIbaoA .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-tTKiRIbaoA .card-img span {
    font-size: 40px !important;
  }
}
.cid-tBInVhCNik {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tBInVhCNik .title {
  margin-bottom: 2rem;
}
.cid-tBInVhCNik .mbr-section-subtitle {
  color: #767676;
}
.cid-tBInVhCNik a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tBInVhCNik a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tBInVhCNik .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tBInVhCNik .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-taJH7VBwRm .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-taJH7VBwRm .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-taJH7VBwRm a {
  font-style: normal;
}
.cid-taJH7VBwRm .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-taJH7VBwRm .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-taJH7VBwRm .nav-item:focus,
.cid-taJH7VBwRm .nav-link:focus {
  outline: none;
}
.cid-taJH7VBwRm .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-taJH7VBwRm .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-taJH7VBwRm .menu-logo {
  margin-right: auto;
}
.cid-taJH7VBwRm .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-taJH7VBwRm .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-taJH7VBwRm .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-taJH7VBwRm .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-taJH7VBwRm .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-taJH7VBwRm .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-taJH7VBwRm .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-taJH7VBwRm .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-taJH7VBwRm .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-taJH7VBwRm .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-taJH7VBwRm .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-taJH7VBwRm .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-taJH7VBwRm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-taJH7VBwRm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-taJH7VBwRm .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-taJH7VBwRm .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-taJH7VBwRm .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-taJH7VBwRm .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-taJH7VBwRm .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-taJH7VBwRm .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-taJH7VBwRm .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-taJH7VBwRm .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-taJH7VBwRm .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-taJH7VBwRm button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-taJH7VBwRm button.navbar-toggler:focus {
  outline: none;
}
.cid-taJH7VBwRm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-taJH7VBwRm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-taJH7VBwRm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-taJH7VBwRm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-taJH7VBwRm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-taJH7VBwRm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-taJH7VBwRm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-taJH7VBwRm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-taJH7VBwRm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-taJH7VBwRm .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-taJH7VBwRm .collapsed .btn {
  display: -webkit-flex;
}
.cid-taJH7VBwRm .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-taJH7VBwRm .collapsed .navbar-collapse.collapsing,
.cid-taJH7VBwRm .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-taJH7VBwRm .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-taJH7VBwRm .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-taJH7VBwRm .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-taJH7VBwRm .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-taJH7VBwRm .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-taJH7VBwRm .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-taJH7VBwRm .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-taJH7VBwRm .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-taJH7VBwRm .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-taJH7VBwRm .collapsed button.navbar-toggler {
  display: block;
}
.cid-taJH7VBwRm .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-taJH7VBwRm .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-taJH7VBwRm .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-taJH7VBwRm .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-taJH7VBwRm .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-taJH7VBwRm .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-taJH7VBwRm .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-taJH7VBwRm img {
    height: 3.8rem !important;
  }
  .cid-taJH7VBwRm .btn {
    display: -webkit-flex;
  }
  .cid-taJH7VBwRm button.navbar-toggler {
    display: block;
  }
  .cid-taJH7VBwRm .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-taJH7VBwRm .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-taJH7VBwRm .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-taJH7VBwRm .navbar-collapse.collapsing,
  .cid-taJH7VBwRm .navbar-collapse.show {
    display: block !important;
  }
  .cid-taJH7VBwRm .navbar-collapse.collapsing .navbar-nav,
  .cid-taJH7VBwRm .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-taJH7VBwRm .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-taJH7VBwRm .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-taJH7VBwRm .navbar-collapse.collapsing .navbar-buttons,
  .cid-taJH7VBwRm .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-taJH7VBwRm .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-taJH7VBwRm .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-taJH7VBwRm .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-taJH7VBwRm .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-taJH7VBwRm .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-taJH7VBwRm .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-taJH7VBwRm .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-taJH7VBwRm .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-taJH7VBwRm .nav-link:hover,
.cid-taJH7VBwRm .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-tTUtgrPqca {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-tTUtgrPqca .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-tTUtgrPqca .wrapper {
  position: relative;
}
.cid-tTUtgrPqca .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-tTUtgrPqca .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-tTUtgrPqca .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-tTUtgrPqca .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-tTUtgrPqca .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-tTUtgrPqca .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-tTUtgrPqca .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-tTUtgrPqca .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-tTUtgrPqca .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-tTUtgrPqca .img2 {
    width: 400px;
  }
  .cid-tTUtgrPqca .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-tTUtgrPqca .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-tTUtgrPqca .img2 {
    width: 400px;
  }
  .cid-tTUtgrPqca .img1 {
    padding-right: 4rem;
  }
  .cid-tTUtgrPqca .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tTUtgrPqca .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-tTUtgrPqca .img2 {
    width: 200px;
  }
  .cid-tTUtgrPqca .container-fluid {
    padding: 0 1rem;
  }
  .cid-tTUtgrPqca .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-tb6Ofjz8xP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tb6Ofjz8xP .mbr-section-subtitle {
  color: #000000;
}
.cid-tb6Ofjz8xP H2 {
  color: #000000;
}
.cid-u365tTpra1 {
  padding-top: 105px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-u365tTpra1 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u365tTpra1 p {
  color: #767676;
  text-align: left;
}
.cid-u365tTpra1 .card-box {
  padding-top: 2rem;
}
.cid-u365tTpra1 .card-wrapper {
  height: 100%;
}
.cid-u365Mnv4jQ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-u365Mnv4jQ h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-u365Mnv4jQ p {
  color: #767676;
  text-align: left;
}
.cid-u365Mnv4jQ .card-box {
  padding-top: 2rem;
}
.cid-u365Mnv4jQ .card-wrapper {
  height: 100%;
}
.cid-tUi5ebnqVT {
  background-color: #ffffff;
}
.cid-tUi5ebnqVT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUi5ebnqVT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUi5ebnqVT .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-tUi5ebnqVT .container-fluid {
    padding: 0 25px;
  }
}
@media (max-width: 992px) {
  .cid-tUi5ebnqVT .container {
    padding: 0 25px;
  }
}
.cid-tUi5ebnqVT .row {
  justify-content: center;
}
.cid-tUi5ebnqVT .item .item-wrapper {
  margin-bottom: 32px;
}
.cid-tUi5ebnqVT .item .item-wrapper a {
  display: block;
}
.cid-tUi5ebnqVT .item .item-wrapper a:hover .item-img img {
  transform: scale(1.06) translateX(6px);
}
.cid-tUi5ebnqVT .item .item-wrapper a .item-img {
  overflow: hidden;
}
.cid-tUi5ebnqVT .item .item-wrapper a .item-img img {
  height: 345px;
  object-fit: cover;
  margin-bottom: 15px;
  transform: scale(1.06) translateX(0);
  transition: all 0.3s ease-in-out;
}
.cid-taWyu0oyQh {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-taWyu0oyQh .title {
  margin-bottom: 2rem;
}
.cid-taWyu0oyQh .mbr-section-subtitle {
  color: #767676;
}
.cid-taWyu0oyQh a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-taWyu0oyQh a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-taWyu0oyQh textarea.form-control {
  min-height: 188px;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uHJBtoNfqr .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uHJBtoNfqr .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uHJBtoNfqr a {
  font-style: normal;
}
.cid-uHJBtoNfqr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uHJBtoNfqr .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uHJBtoNfqr .nav-item:focus,
.cid-uHJBtoNfqr .nav-link:focus {
  outline: none;
}
.cid-uHJBtoNfqr .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uHJBtoNfqr .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uHJBtoNfqr .menu-logo {
  margin-right: auto;
}
.cid-uHJBtoNfqr .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uHJBtoNfqr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uHJBtoNfqr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uHJBtoNfqr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uHJBtoNfqr .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uHJBtoNfqr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uHJBtoNfqr .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uHJBtoNfqr .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uHJBtoNfqr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uHJBtoNfqr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uHJBtoNfqr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uHJBtoNfqr .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uHJBtoNfqr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uHJBtoNfqr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uHJBtoNfqr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uHJBtoNfqr .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uHJBtoNfqr .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uHJBtoNfqr .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uHJBtoNfqr .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uHJBtoNfqr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uHJBtoNfqr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uHJBtoNfqr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uHJBtoNfqr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uHJBtoNfqr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uHJBtoNfqr button.navbar-toggler:focus {
  outline: none;
}
.cid-uHJBtoNfqr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uHJBtoNfqr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uHJBtoNfqr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uHJBtoNfqr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uHJBtoNfqr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uHJBtoNfqr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHJBtoNfqr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uHJBtoNfqr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uHJBtoNfqr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uHJBtoNfqr .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uHJBtoNfqr .collapsed .btn {
  display: -webkit-flex;
}
.cid-uHJBtoNfqr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uHJBtoNfqr .collapsed .navbar-collapse.collapsing,
.cid-uHJBtoNfqr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uHJBtoNfqr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uHJBtoNfqr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uHJBtoNfqr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uHJBtoNfqr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uHJBtoNfqr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uHJBtoNfqr .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uHJBtoNfqr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uHJBtoNfqr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uHJBtoNfqr .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uHJBtoNfqr .collapsed button.navbar-toggler {
  display: block;
}
.cid-uHJBtoNfqr .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uHJBtoNfqr .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uHJBtoNfqr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uHJBtoNfqr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uHJBtoNfqr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uHJBtoNfqr .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uHJBtoNfqr .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uHJBtoNfqr img {
    height: 3.8rem !important;
  }
  .cid-uHJBtoNfqr .btn {
    display: -webkit-flex;
  }
  .cid-uHJBtoNfqr button.navbar-toggler {
    display: block;
  }
  .cid-uHJBtoNfqr .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uHJBtoNfqr .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uHJBtoNfqr .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uHJBtoNfqr .navbar-collapse.collapsing,
  .cid-uHJBtoNfqr .navbar-collapse.show {
    display: block !important;
  }
  .cid-uHJBtoNfqr .navbar-collapse.collapsing .navbar-nav,
  .cid-uHJBtoNfqr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uHJBtoNfqr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uHJBtoNfqr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uHJBtoNfqr .navbar-collapse.collapsing .navbar-buttons,
  .cid-uHJBtoNfqr .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uHJBtoNfqr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uHJBtoNfqr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uHJBtoNfqr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uHJBtoNfqr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uHJBtoNfqr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uHJBtoNfqr .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uHJBtoNfqr .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uHJBtoNfqr .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uHJBtoNfqr .nav-link:hover,
.cid-uHJBtoNfqr .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uHJBtp4FZf {
  background-image: url("../../../assets/images/mbr-1920x1076.jpg");
}
.cid-uHJBtp4FZf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHJBtp4FZf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHJBtp4FZf .mbr-section-title {
  color: #ffffff;
}
.cid-uHJBtp4FZf .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uHJBtpfZ3G {
  padding-top: 5rem;
  padding-bottom: 1rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uHJBtpfZ3G .title__block {
  position: relative;
  z-index: 10;
}
.cid-uHJBtpfZ3G .mbr-section-title {
  margin-bottom: 25px;
  color: #ff3366;
  text-align: left;
}
.cid-uHJBtpfZ3G .mbr-section-subtitle {
  margin-bottom: 10px;
  padding-right: 150px;
}
.cid-uHJBtpfZ3G .mbr-text {
  margin-bottom: 50px;
  padding-right: 150px;
}
.cid-uHJBtpfZ3G .mbr-section-btn {
  padding-right: 150px;
}
.cid-uHJBtpfZ3G .slider__block .container {
  padding: 0 15px;
}
.cid-uHJBtpfZ3G .carousel {
  padding-bottom: 100px;
  padding-bottom: 160px;
}
.cid-uHJBtpfZ3G .carousel-inner {
  overflow: visible;
  transform: translateX(250px);
}
.cid-uHJBtpfZ3G .carousel-item {
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease, transform 0s ease .3s;
}
.cid-uHJBtpfZ3G .carousel-item.active {
  opacity: 1;
}
.cid-uHJBtpfZ3G .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-uHJBtpfZ3G .carousel-item .wrap-img {
  transition: transform 0s;
  position: relative;
  text-align: center;
  margin: auto;
  width: 400px;
  height: 600px;
  transform: scale(0.9) rotate(-7deg);
  z-index: 1;
}
.cid-uHJBtpfZ3G .carousel-item .wrap-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uHJBtpfZ3G .carousel-item .wrap-img {
    width: 100%;
  }
}
.cid-uHJBtpfZ3G .carousel-item .cloneditem-1,
.cid-uHJBtpfZ3G .carousel-item .cloneditem-2 {
  opacity: 0;
}
.cid-uHJBtpfZ3G .carousel-item.active .cloneditem-1 {
  transform: translateX(-170px);
  z-index: 2;
  opacity: 1;
  transition: opacity .5s ease .3s;
}
.cid-uHJBtpfZ3G .carousel-item.active .cloneditem-1 .wrap-img {
  transform: scale(1.1);
}
.cid-uHJBtpfZ3G .carousel-item.active .cloneditem-2 {
  transform: translateX(-270px);
  z-index: 3;
  opacity: 1;
  transition: opacity .5s ease .7s;
}
.cid-uHJBtpfZ3G .carousel-item.active .cloneditem-2 .wrap-img {
  transform: scale(0.9) rotate(7deg);
}
.cid-uHJBtpfZ3G .arrows .carousel-controls {
  top: -150px;
  left: 80px;
}
.cid-uHJBtpfZ3G .carousel-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
  justify-content: center;
}
.cid-uHJBtpfZ3G .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 45px;
  height: 45px;
  color: #003d59;
  transition: all 0.3s ease;
}
.cid-uHJBtpfZ3G .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-uHJBtpfZ3G .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-uHJBtpfZ3G .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 45px;
}
.cid-uHJBtpfZ3G .carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  margin: 2rem 1rem 0;
  text-align: center;
}
.cid-uHJBtpfZ3G .carousel-indicators li {
  max-width: initial;
  width: 190px;
  height: 15px;
  background-color: transparent;
  display: inline-block;
  border: 0;
  border-bottom: 2px solid #003d59;
  max-height: initial;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: all 0s ease .3s;
}
.cid-uHJBtpfZ3G .carousel-indicators li.active {
  border: 0;
  border-bottom: 5px solid #003d59;
  margin: 0;
  opacity: 1;
}
.cid-uHJBtpfZ3G .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
.cid-uHJBtpfZ3G .cloneditem-1,
.cid-uHJBtpfZ3G .cloneditem-2,
.cid-uHJBtpfZ3G .cloneditem-3 {
  display: none;
}
@media (min-width: 992px) {
  .cid-uHJBtpfZ3G .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-uHJBtpfZ3G .carousel-inner {
    padding-bottom: 3px;
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-uHJBtpfZ3G .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-uHJBtpfZ3G .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-uHJBtpfZ3G .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uHJBtpfZ3G .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides2 .cloneditem-1,
  .cid-uHJBtpfZ3G .carousel-inner.slides2 .cloneditem-2,
  .cid-uHJBtpfZ3G .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-uHJBtpfZ3G .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-uHJBtpfZ3G .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-uHJBtpfZ3G .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uHJBtpfZ3G .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-uHJBtpfZ3G .carousel-inner.slides3 .cloneditem-1,
  .cid-uHJBtpfZ3G .carousel-inner.slides3 .cloneditem-2,
  .cid-uHJBtpfZ3G .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-uHJBtpfZ3G .title__block {
    text-align: center;
    margin-bottom: 67px;
  }
  .cid-uHJBtpfZ3G .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-uHJBtpfZ3G .mbr-section-subtitle {
    margin-bottom: 7px;
    padding-right: 0;
  }
  .cid-uHJBtpfZ3G .mbr-text {
    margin-bottom: 28px;
    padding-right: 0;
  }
  .cid-uHJBtpfZ3G .mbr-section-btn {
    padding-right: 0;
  }
  .cid-uHJBtpfZ3G .carousel-inner {
    overflow: hidden;
    transform: translateX(0);
  }
  .cid-uHJBtpfZ3G .carousel-item {
    transition: all .3s ease;
    opacity: 1;
  }
  .cid-uHJBtpfZ3G .carousel-item .wrap-img {
    height: auto;
    transition: all .3s 0s;
    transform: scale(1) rotate(0);
    width: 100%;
  }
  .cid-uHJBtpfZ3G .carousel-indicators li {
    transition: all 0s ease 0s;
  }
}
@media (max-width: 767px) {
  .cid-uHJBtpfZ3G .carousel-controls {
    justify-content: center;
    margin-top: 40px;
    display: none;
  }
  .cid-uHJBtpfZ3G .carousel-controls .carousel-control {
    width: 30px;
    height: 30px;
  }
  .cid-uHJBtpfZ3G .carousel-controls .carousel-control .mbr-iconfont {
    font-size: 30px;
  }
  .cid-uHJBtpfZ3G .carousel {
    padding-bottom: 50px;
  }
}
.cid-uHJBtpfZ3G .mbr-section-title DIV {
  text-align: left;
}
.cid-uHJBtpzm3o {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uHJBtpzm3o .media-content .btn-bgr {
  z-index: 0;
}
.cid-uHJBtpzm3o .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uHJBtpzm3o h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uHJBtpzm3o p {
  color: #464646;
}
.cid-uHJBtpzm3o h2 {
  color: #000000;
}
.cid-uHJBtpzm3o .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uHJBtpzm3o .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uHJBtpzm3o .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uHJBtpzm3o .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uHJBtpzm3o .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uHJBtpzm3o .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uHJBtpzm3o .mbr-text {
    text-align: center;
  }
}
.cid-uHJBtpzm3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHJBtpzm3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHJBtpJ7sw {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fafafa;
}
.cid-uHJBtpJ7sw h6 {
  line-height: 1.2;
}
.cid-uHJBtpJ7sw img,
.cid-uHJBtpJ7sw .item-img {
  width: 100%;
}
.cid-uHJBtpJ7sw .item:focus,
.cid-uHJBtpJ7sw span:focus {
  outline: none;
}
.cid-uHJBtpJ7sw .item {
  cursor: pointer;
}
.cid-uHJBtpJ7sw .item-wrapper {
  position: relative;
  border-radius: 4px;
  display: flex;
  flex-flow: column nowrap;
}
.cid-uHJBtpJ7sw .mbr-section-btn {
  margin-top: auto !important;
  text-align: center;
}
.cid-uHJBtpJ7sw .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uHJBtpJ7sw .mbr-text,
.cid-uHJBtpJ7sw .mbr-section-btn {
  color: #000000;
}
.cid-uHJBtpJ7sw .item-title {
  color: #000000;
  text-align: center;
}
.cid-uHJBtpJ7sw .item-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uHJBtpJ7sw .item-text {
  color: #000000;
  text-align: center;
}
.cid-uHJBtpJ7sw .content-head {
  max-width: 800px;
}
.cid-uHJBtqrfho {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uHJBtqrfho h2 {
  text-align: left;
}
.cid-uHJBtqrfho h4 {
  text-align: left;
  font-weight: 500;
}
.cid-uHJBtqrfho p {
  color: #767676;
  text-align: left;
}
.cid-uHJBtqrfho .aside-content {
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-uHJBtqrfho .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  word-break: break-word;
}
.cid-uHJBtqrfho .media {
  margin: initial;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uHJBtqrfho .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-uHJBtqrfho .card-img {
  padding-right: 2rem;
  width: auto;
}
.cid-uHJBtqrfho .card-img span {
  font-size: 72px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-uHJBtqrfho .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uHJBtqrfho .mbr-figure {
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 300px) {
  .cid-uHJBtqrfho .card-img span {
    font-size: 40px !important;
  }
}
.cid-uHJBtqDNIe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uHJBtqDNIe .title {
  margin-bottom: 2rem;
}
.cid-uHJBtqDNIe .mbr-section-subtitle {
  color: #767676;
}
.cid-uHJBtqDNIe a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uHJBtqDNIe a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uHJBtqDNIe .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uHJBtqDNIe .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uHJBtqU78h {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uHJBtqU78h .mbr-fallback-image.disabled {
  display: none;
}
.cid-uHJBtqU78h .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uHJBtqU78h .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uHJBtqU78h .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uHJBtqU78h .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uHJBtqU78h .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uHJBtqU78h .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uHJBtqU78h .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uHJBtqU78h .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uHJBtqU78h .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uHJBtqU78h .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uHJBtqU78h .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uHJBtqU78h .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uHJBtqU78h .list-box {
  width: 100%;
}
.cid-uHJBtqU78h .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uHJBtqU78h .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uHJBtqU78h .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uHJBtqU78h .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uHJBtqU78h .list a:hover:before {
  background-position: left !important;
}
.cid-uHJBtqU78h .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uHJBtqU78h .news-item {
  width: 100%;
}
.cid-uHJBtqU78h .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uHJBtqU78h .news-title {
  color: #303030;
}
.cid-uHJBtqU78h .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uIfQnTLhi7 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uIfQnTLhi7 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uIfQnTLhi7 a {
  font-style: normal;
}
.cid-uIfQnTLhi7 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uIfQnTLhi7 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uIfQnTLhi7 .nav-item:focus,
.cid-uIfQnTLhi7 .nav-link:focus {
  outline: none;
}
.cid-uIfQnTLhi7 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uIfQnTLhi7 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uIfQnTLhi7 .menu-logo {
  margin-right: auto;
}
.cid-uIfQnTLhi7 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uIfQnTLhi7 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uIfQnTLhi7 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uIfQnTLhi7 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uIfQnTLhi7 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uIfQnTLhi7 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uIfQnTLhi7 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uIfQnTLhi7 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uIfQnTLhi7 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uIfQnTLhi7 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIfQnTLhi7 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uIfQnTLhi7 .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uIfQnTLhi7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uIfQnTLhi7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIfQnTLhi7 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uIfQnTLhi7 .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uIfQnTLhi7 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uIfQnTLhi7 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uIfQnTLhi7 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uIfQnTLhi7 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uIfQnTLhi7 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uIfQnTLhi7 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uIfQnTLhi7 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uIfQnTLhi7 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uIfQnTLhi7 button.navbar-toggler:focus {
  outline: none;
}
.cid-uIfQnTLhi7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uIfQnTLhi7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIfQnTLhi7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIfQnTLhi7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIfQnTLhi7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIfQnTLhi7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIfQnTLhi7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIfQnTLhi7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIfQnTLhi7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIfQnTLhi7 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIfQnTLhi7 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uIfQnTLhi7 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.collapsing,
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uIfQnTLhi7 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uIfQnTLhi7 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uIfQnTLhi7 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uIfQnTLhi7 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uIfQnTLhi7 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIfQnTLhi7 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uIfQnTLhi7 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uIfQnTLhi7 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uIfQnTLhi7 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uIfQnTLhi7 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIfQnTLhi7 img {
    height: 3.8rem !important;
  }
  .cid-uIfQnTLhi7 .btn {
    display: -webkit-flex;
  }
  .cid-uIfQnTLhi7 button.navbar-toggler {
    display: block;
  }
  .cid-uIfQnTLhi7 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uIfQnTLhi7 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIfQnTLhi7 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uIfQnTLhi7 .navbar-collapse.collapsing,
  .cid-uIfQnTLhi7 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uIfQnTLhi7 .navbar-collapse.collapsing .navbar-nav,
  .cid-uIfQnTLhi7 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uIfQnTLhi7 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uIfQnTLhi7 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uIfQnTLhi7 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uIfQnTLhi7 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uIfQnTLhi7 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uIfQnTLhi7 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uIfQnTLhi7 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uIfQnTLhi7 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uIfQnTLhi7 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uIfQnTLhi7 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uIfQnTLhi7 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uIfQnTLhi7 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uIfQnTLhi7 .nav-link:hover,
.cid-uIfQnTLhi7 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uIfQnU9HzF {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-uIfQnU9HzF .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uIfQnU9HzF .wrapper {
  position: relative;
}
.cid-uIfQnU9HzF .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uIfQnU9HzF .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uIfQnU9HzF .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uIfQnU9HzF .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uIfQnU9HzF .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uIfQnU9HzF .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uIfQnU9HzF .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uIfQnU9HzF .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uIfQnU9HzF .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uIfQnU9HzF .img2 {
    width: 400px;
  }
  .cid-uIfQnU9HzF .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uIfQnU9HzF .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uIfQnU9HzF .img2 {
    width: 400px;
  }
  .cid-uIfQnU9HzF .img1 {
    padding-right: 4rem;
  }
  .cid-uIfQnU9HzF .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uIfQnU9HzF .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uIfQnU9HzF .img2 {
    width: 200px;
  }
  .cid-uIfQnU9HzF .container-fluid {
    padding: 0 1rem;
  }
  .cid-uIfQnU9HzF .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uIfQnU9HzF H1 {
  color: #0099ff;
  text-align: left;
}
.cid-uIfQnUr0us {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uIfQnUr0us .mbr-section-subtitle {
  color: #000000;
}
.cid-uIfQnUr0us H2 {
  color: #000000;
}
.cid-uIfQnUBMTR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnUBMTR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnUBMTR .col-12 {
  padding: 0;
}
.cid-uIfQnUBMTR .row {
  margin: 0;
}
.cid-uIfQnUBMTR .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnUBMTR .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnUBMTR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnUBMTR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnUBMTR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnUBMTR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnUBMTR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnUBMTR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnUBMTR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnUBMTR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnUBMTR .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnUBMTR .mbr-text,
.cid-uIfQnUBMTR .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnUPvNh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnUPvNh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnUPvNh .col-12 {
  padding: 0;
}
.cid-uIfQnUPvNh .row {
  margin: 0;
}
.cid-uIfQnUPvNh .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnUPvNh .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnUPvNh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnUPvNh .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnUPvNh .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnUPvNh .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnUPvNh .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnUPvNh .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnUPvNh .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnUPvNh .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnUPvNh .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnUPvNh .mbr-text,
.cid-uIfQnUPvNh .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnV1mNH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnV1mNH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnV1mNH .col-12 {
  padding: 0;
}
.cid-uIfQnV1mNH .row {
  margin: 0;
}
.cid-uIfQnV1mNH .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnV1mNH .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnV1mNH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnV1mNH .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnV1mNH .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnV1mNH .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnV1mNH .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnV1mNH .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnV1mNH .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnV1mNH .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnV1mNH .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnV1mNH .mbr-text,
.cid-uIfQnV1mNH .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnVfaVG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnVfaVG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnVfaVG .col-12 {
  padding: 0;
}
.cid-uIfQnVfaVG .row {
  margin: 0;
}
.cid-uIfQnVfaVG .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnVfaVG .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVfaVG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnVfaVG .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnVfaVG .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnVfaVG .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnVfaVG .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnVfaVG .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnVfaVG .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnVfaVG .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVfaVG .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnVfaVG .mbr-text,
.cid-uIfQnVfaVG .mbr-section-btn {
  color: #221b35;
}
.cid-uJZNs68Ami {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uJZNs68Ami .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJZNs68Ami .col-12 {
  padding: 0;
}
.cid-uJZNs68Ami .row {
  margin: 0;
}
.cid-uJZNs68Ami .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uJZNs68Ami .card-wrapper {
    padding: 1rem;
  }
}
.cid-uJZNs68Ami .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJZNs68Ami .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uJZNs68Ami .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uJZNs68Ami .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uJZNs68Ami .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uJZNs68Ami .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uJZNs68Ami .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uJZNs68Ami .image-wrapper {
    padding: 1rem;
  }
}
.cid-uJZNs68Ami .mbr-section-title {
  color: #221b35;
}
.cid-uJZNs68Ami .mbr-text,
.cid-uJZNs68Ami .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnVv7eA {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnVv7eA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnVv7eA .col-12 {
  padding: 0;
}
.cid-uIfQnVv7eA .row {
  margin: 0;
}
.cid-uIfQnVv7eA .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnVv7eA .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVv7eA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnVv7eA .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnVv7eA .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnVv7eA .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnVv7eA .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnVv7eA .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnVv7eA .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnVv7eA .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVv7eA .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnVv7eA .mbr-text,
.cid-uIfQnVv7eA .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnVIg7m {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnVIg7m .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnVIg7m .col-12 {
  padding: 0;
}
.cid-uIfQnVIg7m .row {
  margin: 0;
}
.cid-uIfQnVIg7m .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnVIg7m .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVIg7m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnVIg7m .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnVIg7m .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnVIg7m .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnVIg7m .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnVIg7m .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnVIg7m .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnVIg7m .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVIg7m .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnVIg7m .mbr-text,
.cid-uIfQnVIg7m .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnVXGI4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnVXGI4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnVXGI4 .col-12 {
  padding: 0;
}
.cid-uIfQnVXGI4 .row {
  margin: 0;
}
.cid-uIfQnVXGI4 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnVXGI4 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVXGI4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnVXGI4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnVXGI4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnVXGI4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnVXGI4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnVXGI4 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnVXGI4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnVXGI4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnVXGI4 .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnVXGI4 .mbr-text,
.cid-uIfQnVXGI4 .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnWbFzB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnWbFzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnWbFzB .col-12 {
  padding: 0;
}
.cid-uIfQnWbFzB .row {
  margin: 0;
}
.cid-uIfQnWbFzB .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnWbFzB .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWbFzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnWbFzB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnWbFzB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnWbFzB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnWbFzB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnWbFzB .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnWbFzB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnWbFzB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWbFzB .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnWbFzB .mbr-text,
.cid-uIfQnWbFzB .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnWqpSS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnWqpSS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnWqpSS .col-12 {
  padding: 0;
}
.cid-uIfQnWqpSS .row {
  margin: 0;
}
.cid-uIfQnWqpSS .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnWqpSS .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWqpSS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnWqpSS .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnWqpSS .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnWqpSS .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnWqpSS .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnWqpSS .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnWqpSS .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnWqpSS .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWqpSS .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnWqpSS .mbr-text,
.cid-uIfQnWqpSS .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnWJDKw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnWJDKw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnWJDKw .col-12 {
  padding: 0;
}
.cid-uIfQnWJDKw .row {
  margin: 0;
}
.cid-uIfQnWJDKw .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnWJDKw .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWJDKw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnWJDKw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnWJDKw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnWJDKw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnWJDKw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnWJDKw .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnWJDKw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnWJDKw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWJDKw .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnWJDKw .mbr-text,
.cid-uIfQnWJDKw .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnWV31A {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnWV31A .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnWV31A .col-12 {
  padding: 0;
}
.cid-uIfQnWV31A .row {
  margin: 0;
}
.cid-uIfQnWV31A .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnWV31A .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWV31A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnWV31A .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnWV31A .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnWV31A .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnWV31A .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnWV31A .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnWV31A .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnWV31A .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnWV31A .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnWV31A .mbr-text,
.cid-uIfQnWV31A .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnX6bzp {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnX6bzp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnX6bzp .col-12 {
  padding: 0;
}
.cid-uIfQnX6bzp .row {
  margin: 0;
}
.cid-uIfQnX6bzp .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnX6bzp .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnX6bzp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnX6bzp .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnX6bzp .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnX6bzp .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnX6bzp .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnX6bzp .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnX6bzp .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnX6bzp .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnX6bzp .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnX6bzp .mbr-text,
.cid-uIfQnX6bzp .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnXhWTB {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uIfQnXhWTB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnXhWTB .col-12 {
  padding: 0;
}
.cid-uIfQnXhWTB .row {
  margin: 0;
}
.cid-uIfQnXhWTB .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIfQnXhWTB .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnXhWTB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnXhWTB .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIfQnXhWTB .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIfQnXhWTB .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIfQnXhWTB .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIfQnXhWTB .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIfQnXhWTB .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIfQnXhWTB .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIfQnXhWTB .mbr-section-title {
  color: #221b35;
}
.cid-uIfQnXhWTB .mbr-text,
.cid-uIfQnXhWTB .mbr-section-btn {
  color: #221b35;
}
.cid-uIfQnXMdJB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIfQnXMdJB .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uIfQnXMdJB .row {
    text-align: center!important;
  }
}
.cid-uIfQnXMdJB .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uIfQnXMdJB .mbr-section-title {
    text-align: center;
  }
}
.cid-uIfQnXMdJB .mbr-section-subtitle {
  color: #0099ff;
}
.cid-uIfQnXMdJB .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uIfQnXMdJB .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uIfQnXMdJB .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uIfQnXMdJB .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uIfQnXMdJB .btn-primary-outline,
.cid-uIfQnXMdJB .btn-secondary-outline,
.cid-uIfQnXMdJB .btn-success-outline,
.cid-uIfQnXMdJB .btn-info-outline,
.cid-uIfQnXMdJB .btn-warning-outline,
.cid-uIfQnXMdJB .btn-danger-outline,
.cid-uIfQnXMdJB .btn-white-outline,
.cid-uIfQnXMdJB .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uIfQnXMdJB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnXMdJB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnXMdJB .mbr-section-title,
.cid-uIfQnXMdJB .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uIfQnXYYTE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-uIfQnXYYTE .mbr-section-subtitle {
  color: #232323;
}
.cid-uIfQnXYYTE H2 {
  color: #0099ff;
}
.cid-uInsE66Svq {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #cccccc;
}
.cid-uInsE66Svq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uInsE66Svq .form-control,
.cid-uInsE66Svq .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uInsE66Svq .form-control::-webkit-input-placeholder,
.cid-uInsE66Svq .field-input::-webkit-input-placeholder,
.cid-uInsE66Svq .form-control::-webkit-input-placeholder,
.cid-uInsE66Svq .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uInsE66Svq .form-control:-moz-placeholder,
.cid-uInsE66Svq .field-input:-moz-placeholder,
.cid-uInsE66Svq .form-control:-moz-placeholder,
.cid-uInsE66Svq .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uInsE66Svq .form-control:hover,
.cid-uInsE66Svq .field-input:hover,
.cid-uInsE66Svq .form-control:focus,
.cid-uInsE66Svq .field-input:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uInsE66Svq .form-control:hover::-webkit-input-placeholder,
.cid-uInsE66Svq .field-input:hover::-webkit-input-placeholder,
.cid-uInsE66Svq .form-control:focus::-webkit-input-placeholder,
.cid-uInsE66Svq .field-input:focus::-webkit-input-placeholder,
.cid-uInsE66Svq .form-control:hover::-webkit-input-placeholder,
.cid-uInsE66Svq .field-input:hover::-webkit-input-placeholder,
.cid-uInsE66Svq .form-control:focus::-webkit-input-placeholder,
.cid-uInsE66Svq .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uInsE66Svq .form-control:hover:-moz-placeholder,
.cid-uInsE66Svq .field-input:hover:-moz-placeholder,
.cid-uInsE66Svq .form-control:focus:-moz-placeholder,
.cid-uInsE66Svq .field-input:focus:-moz-placeholder,
.cid-uInsE66Svq .form-control:hover:-moz-placeholder,
.cid-uInsE66Svq .field-input:hover:-moz-placeholder,
.cid-uInsE66Svq .form-control:focus:-moz-placeholder,
.cid-uInsE66Svq .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uInsE66Svq .jq-number__spin:hover,
.cid-uInsE66Svq .jq-number__spin:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uInsE66Svq .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uInsE66Svq .jq-selectbox li,
.cid-uInsE66Svq .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uInsE66Svq .jq-selectbox li:hover,
.cid-uInsE66Svq .jq-selectbox li.selected {
  background-color: #0099ff;
  color: #000000;
}
.cid-uInsE66Svq .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uInsE66Svq .jq-number__spin.minus:hover:after,
.cid-uInsE66Svq .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uInsE66Svq .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uInsE66Svq .jq-number__spin.minus:after,
.cid-uInsE66Svq .jq-number__spin.plus:after {
  border-top-color: #0099ff;
  border-bottom-color: #0099ff;
}
.cid-uInsE66Svq input::-webkit-clear-button {
  display: none;
}
.cid-uInsE66Svq input::-webkit-inner-spin-button {
  display: none;
}
.cid-uInsE66Svq input::-webkit-outer-spin-button {
  display: none;
}
.cid-uInsE66Svq input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uInsE66Svq H4 {
  text-align: left;
}
.cid-uIfQnXtnpD {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-uIfQnXtnpD .container {
    max-width: 1400px;
  }
}
.cid-uIfQnXtnpD .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uIfQnXtnpD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0099ff;
}
.cid-uIfQnXtnpD .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uIfQnXtnpD .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uIfQnXtnpD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-uIfQnXtnpD .card-wrapper {
  margin-top: 3rem;
}
.cid-uIfQnXtnpD .row {
  justify-content: center;
}
.cid-uIfQnXtnpD .mbr-section-title {
  color: #232323;
}
.cid-uIfQnXtnpD .card-title,
.cid-uIfQnXtnpD .iconfont-wrapper {
  color: #0099ff;
}
.cid-uIfQnXtnpD .card-text {
  color: #232323;
}
.cid-uIuIBwl9PP {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uIuIBwl9PP .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uIuIBwl9PP .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uIuIBwl9PP .container {
    padding: 0 16px;
  }
}
.cid-uIuIBwl9PP .row {
  position: relative;
  z-index: 1;
}
.cid-uIuIBwl9PP .title-wrapper {
  margin-bottom: 80px;
}
.cid-uIuIBwl9PP .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uIuIBwl9PP .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIuIBwl9PP .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uIuIBwl9PP .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uIuIBwl9PP .embla__slide .slide-content {
  width: 100%;
}
.cid-uIuIBwl9PP .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIuIBwl9PP .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uIuIBwl9PP .embla__button--next,
.cid-uIuIBwl9PP .embla__button--prev {
  display: flex;
}
.cid-uIuIBwl9PP .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uIuIBwl9PP .embla__button {
    display: none;
  }
}
.cid-uIuIBwl9PP .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uIuIBwl9PP .embla__button:hover {
  opacity: .7 !important;
}
.cid-uIuIBwl9PP .embla__button.embla__button--prev {
  left: 0;
}
.cid-uIuIBwl9PP .embla__button.embla__button--next {
  right: 0;
}
.cid-uIuIBwl9PP .embla {
  position: relative;
  width: 100%;
}
.cid-uIuIBwl9PP .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uIuIBwl9PP .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uIuIBwl9PP .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uIuIBwl9PP .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uIuIBwl9PP .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIuIBwl9PP .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uIfQnYp2fg {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uIfQnYp2fg .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uIfQnYp2fg .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uIfQnYp2fg .mbr-text {
  color: #767676;
}
.cid-uIfQnYys7N {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIfQnYys7N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIfQnYys7N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIfQnYys7N .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uIfQnYys7N .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uIfQnYys7N .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uIfQnYys7N .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uIfQnYys7N .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uIfQnYys7N .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uIfQnYys7N .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uIfQnYys7N .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uIfQnYys7N .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uIfQnYys7N .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uIfQnYys7N .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uIfQnYys7N .list-box {
  width: 100%;
}
.cid-uIfQnYys7N .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uIfQnYys7N .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uIfQnYys7N .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uIfQnYys7N .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uIfQnYys7N .list a:hover:before {
  background-position: left !important;
}
.cid-uIfQnYys7N .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uIfQnYys7N .news-item {
  width: 100%;
}
.cid-uIfQnYys7N .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uIfQnYys7N .news-title {
  color: #303030;
}
.cid-uIfQnYys7N .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uIgsoFh1Mn .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uIgsoFh1Mn .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uIgsoFh1Mn a {
  font-style: normal;
}
.cid-uIgsoFh1Mn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uIgsoFh1Mn .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uIgsoFh1Mn .nav-item:focus,
.cid-uIgsoFh1Mn .nav-link:focus {
  outline: none;
}
.cid-uIgsoFh1Mn .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uIgsoFh1Mn .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uIgsoFh1Mn .menu-logo {
  margin-right: auto;
}
.cid-uIgsoFh1Mn .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uIgsoFh1Mn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uIgsoFh1Mn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uIgsoFh1Mn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uIgsoFh1Mn .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uIgsoFh1Mn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uIgsoFh1Mn .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uIgsoFh1Mn .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uIgsoFh1Mn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uIgsoFh1Mn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIgsoFh1Mn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uIgsoFh1Mn .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uIgsoFh1Mn .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uIgsoFh1Mn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIgsoFh1Mn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uIgsoFh1Mn .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uIgsoFh1Mn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uIgsoFh1Mn .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uIgsoFh1Mn .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uIgsoFh1Mn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uIgsoFh1Mn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uIgsoFh1Mn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uIgsoFh1Mn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uIgsoFh1Mn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uIgsoFh1Mn button.navbar-toggler:focus {
  outline: none;
}
.cid-uIgsoFh1Mn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uIgsoFh1Mn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIgsoFh1Mn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIgsoFh1Mn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIgsoFh1Mn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIgsoFh1Mn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIgsoFh1Mn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIgsoFh1Mn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIgsoFh1Mn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIgsoFh1Mn .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIgsoFh1Mn .collapsed .btn {
  display: -webkit-flex;
}
.cid-uIgsoFh1Mn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.collapsing,
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uIgsoFh1Mn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uIgsoFh1Mn .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uIgsoFh1Mn .collapsed button.navbar-toggler {
  display: block;
}
.cid-uIgsoFh1Mn .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uIgsoFh1Mn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIgsoFh1Mn .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uIgsoFh1Mn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uIgsoFh1Mn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uIgsoFh1Mn .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uIgsoFh1Mn .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIgsoFh1Mn img {
    height: 3.8rem !important;
  }
  .cid-uIgsoFh1Mn .btn {
    display: -webkit-flex;
  }
  .cid-uIgsoFh1Mn button.navbar-toggler {
    display: block;
  }
  .cid-uIgsoFh1Mn .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uIgsoFh1Mn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIgsoFh1Mn .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uIgsoFh1Mn .navbar-collapse.collapsing,
  .cid-uIgsoFh1Mn .navbar-collapse.show {
    display: block !important;
  }
  .cid-uIgsoFh1Mn .navbar-collapse.collapsing .navbar-nav,
  .cid-uIgsoFh1Mn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uIgsoFh1Mn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uIgsoFh1Mn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uIgsoFh1Mn .navbar-collapse.collapsing .navbar-buttons,
  .cid-uIgsoFh1Mn .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uIgsoFh1Mn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uIgsoFh1Mn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uIgsoFh1Mn .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uIgsoFh1Mn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uIgsoFh1Mn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uIgsoFh1Mn .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uIgsoFh1Mn .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uIgsoFh1Mn .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uIgsoFh1Mn .nav-link:hover,
.cid-uIgsoFh1Mn .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uIgsoFzl4k {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-uIgsoFzl4k .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uIgsoFzl4k .wrapper {
  position: relative;
}
.cid-uIgsoFzl4k .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uIgsoFzl4k .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uIgsoFzl4k .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uIgsoFzl4k .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uIgsoFzl4k .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uIgsoFzl4k .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uIgsoFzl4k .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uIgsoFzl4k .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uIgsoFzl4k .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uIgsoFzl4k .img2 {
    width: 400px;
  }
  .cid-uIgsoFzl4k .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uIgsoFzl4k .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uIgsoFzl4k .img2 {
    width: 400px;
  }
  .cid-uIgsoFzl4k .img1 {
    padding-right: 4rem;
  }
  .cid-uIgsoFzl4k .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uIgsoFzl4k .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uIgsoFzl4k .img2 {
    width: 200px;
  }
  .cid-uIgsoFzl4k .container-fluid {
    padding: 0 1rem;
  }
  .cid-uIgsoFzl4k .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uIgsoFzl4k H1 {
  color: #0099ff;
  text-align: left;
}
.cid-uIgsoFKNaE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uIgsoFKNaE .mbr-section-subtitle {
  color: #000000;
}
.cid-uIgsoFKNaE H2 {
  color: #000000;
}
.cid-uIgsoFSFQL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoFSFQL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoFSFQL .col-12 {
  padding: 0;
}
.cid-uIgsoFSFQL .row {
  margin: 0;
}
.cid-uIgsoFSFQL .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoFSFQL .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoFSFQL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoFSFQL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoFSFQL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoFSFQL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoFSFQL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoFSFQL .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoFSFQL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoFSFQL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoFSFQL .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoFSFQL .mbr-text,
.cid-uIgsoFSFQL .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoG1lb4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoG1lb4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoG1lb4 .col-12 {
  padding: 0;
}
.cid-uIgsoG1lb4 .row {
  margin: 0;
}
.cid-uIgsoG1lb4 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoG1lb4 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoG1lb4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoG1lb4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoG1lb4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoG1lb4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoG1lb4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoG1lb4 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoG1lb4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoG1lb4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoG1lb4 .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoG1lb4 .mbr-text,
.cid-uIgsoG1lb4 .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoGaS82 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoGaS82 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoGaS82 .col-12 {
  padding: 0;
}
.cid-uIgsoGaS82 .row {
  margin: 0;
}
.cid-uIgsoGaS82 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoGaS82 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGaS82 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoGaS82 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoGaS82 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoGaS82 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoGaS82 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoGaS82 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoGaS82 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoGaS82 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGaS82 .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoGaS82 .mbr-text,
.cid-uIgsoGaS82 .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoGjDuw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoGjDuw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoGjDuw .col-12 {
  padding: 0;
}
.cid-uIgsoGjDuw .row {
  margin: 0;
}
.cid-uIgsoGjDuw .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoGjDuw .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGjDuw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoGjDuw .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoGjDuw .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoGjDuw .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoGjDuw .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoGjDuw .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoGjDuw .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoGjDuw .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGjDuw .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoGjDuw .mbr-text,
.cid-uIgsoGjDuw .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoGxJK4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoGxJK4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoGxJK4 .col-12 {
  padding: 0;
}
.cid-uIgsoGxJK4 .row {
  margin: 0;
}
.cid-uIgsoGxJK4 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoGxJK4 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGxJK4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoGxJK4 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoGxJK4 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoGxJK4 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoGxJK4 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoGxJK4 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoGxJK4 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoGxJK4 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGxJK4 .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoGxJK4 .mbr-text,
.cid-uIgsoGxJK4 .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoGGAOo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoGGAOo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoGGAOo .col-12 {
  padding: 0;
}
.cid-uIgsoGGAOo .row {
  margin: 0;
}
.cid-uIgsoGGAOo .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoGGAOo .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGGAOo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoGGAOo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoGGAOo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoGGAOo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoGGAOo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoGGAOo .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoGGAOo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoGGAOo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGGAOo .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoGGAOo .mbr-text,
.cid-uIgsoGGAOo .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoGPbGR {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoGPbGR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoGPbGR .col-12 {
  padding: 0;
}
.cid-uIgsoGPbGR .row {
  margin: 0;
}
.cid-uIgsoGPbGR .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoGPbGR .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGPbGR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoGPbGR .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoGPbGR .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoGPbGR .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoGPbGR .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoGPbGR .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoGPbGR .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoGPbGR .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoGPbGR .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoGPbGR .mbr-text,
.cid-uIgsoGPbGR .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoH0EuD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoH0EuD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoH0EuD .col-12 {
  padding: 0;
}
.cid-uIgsoH0EuD .row {
  margin: 0;
}
.cid-uIgsoH0EuD .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoH0EuD .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoH0EuD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoH0EuD .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoH0EuD .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoH0EuD .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoH0EuD .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoH0EuD .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoH0EuD .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoH0EuD .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoH0EuD .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoH0EuD .mbr-text,
.cid-uIgsoH0EuD .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoHbXfn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoHbXfn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoHbXfn .col-12 {
  padding: 0;
}
.cid-uIgsoHbXfn .row {
  margin: 0;
}
.cid-uIgsoHbXfn .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoHbXfn .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHbXfn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoHbXfn .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoHbXfn .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoHbXfn .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoHbXfn .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoHbXfn .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoHbXfn .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoHbXfn .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHbXfn .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoHbXfn .mbr-text,
.cid-uIgsoHbXfn .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoHoPGb {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoHoPGb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoHoPGb .col-12 {
  padding: 0;
}
.cid-uIgsoHoPGb .row {
  margin: 0;
}
.cid-uIgsoHoPGb .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoHoPGb .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHoPGb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoHoPGb .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoHoPGb .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoHoPGb .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoHoPGb .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoHoPGb .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoHoPGb .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoHoPGb .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHoPGb .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoHoPGb .mbr-text,
.cid-uIgsoHoPGb .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoHybzN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoHybzN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoHybzN .col-12 {
  padding: 0;
}
.cid-uIgsoHybzN .row {
  margin: 0;
}
.cid-uIgsoHybzN .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoHybzN .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHybzN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoHybzN .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoHybzN .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoHybzN .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoHybzN .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoHybzN .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoHybzN .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoHybzN .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHybzN .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoHybzN .mbr-text,
.cid-uIgsoHybzN .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoHJxX1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoHJxX1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoHJxX1 .col-12 {
  padding: 0;
}
.cid-uIgsoHJxX1 .row {
  margin: 0;
}
.cid-uIgsoHJxX1 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoHJxX1 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHJxX1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoHJxX1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoHJxX1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoHJxX1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoHJxX1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoHJxX1 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoHJxX1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoHJxX1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHJxX1 .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoHJxX1 .mbr-text,
.cid-uIgsoHJxX1 .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoHT4Zo {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uIgsoHT4Zo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoHT4Zo .col-12 {
  padding: 0;
}
.cid-uIgsoHT4Zo .row {
  margin: 0;
}
.cid-uIgsoHT4Zo .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgsoHT4Zo .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHT4Zo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoHT4Zo .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgsoHT4Zo .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgsoHT4Zo .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgsoHT4Zo .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgsoHT4Zo .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgsoHT4Zo .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgsoHT4Zo .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgsoHT4Zo .mbr-section-title {
  color: #221b35;
}
.cid-uIgsoHT4Zo .mbr-text,
.cid-uIgsoHT4Zo .mbr-section-btn {
  color: #221b35;
}
.cid-uIgsoIkFzB {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIgsoIkFzB .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uIgsoIkFzB .row {
    text-align: center!important;
  }
}
.cid-uIgsoIkFzB .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uIgsoIkFzB .mbr-section-title {
    text-align: center;
  }
}
.cid-uIgsoIkFzB .mbr-section-subtitle {
  color: #0099ff;
}
.cid-uIgsoIkFzB .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uIgsoIkFzB .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uIgsoIkFzB .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uIgsoIkFzB .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uIgsoIkFzB .btn-primary-outline,
.cid-uIgsoIkFzB .btn-secondary-outline,
.cid-uIgsoIkFzB .btn-success-outline,
.cid-uIgsoIkFzB .btn-info-outline,
.cid-uIgsoIkFzB .btn-warning-outline,
.cid-uIgsoIkFzB .btn-danger-outline,
.cid-uIgsoIkFzB .btn-white-outline,
.cid-uIgsoIkFzB .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uIgsoIkFzB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoIkFzB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoIkFzB .mbr-section-title,
.cid-uIgsoIkFzB .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uIgsoIvmjb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-uIgsoIvmjb .mbr-section-subtitle {
  color: #232323;
}
.cid-uIgsoIvmjb H2 {
  color: #0099ff;
}
.cid-uInszZMD0L {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #cccccc;
}
.cid-uInszZMD0L .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uInszZMD0L .form-control,
.cid-uInszZMD0L .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uInszZMD0L .form-control::-webkit-input-placeholder,
.cid-uInszZMD0L .field-input::-webkit-input-placeholder,
.cid-uInszZMD0L .form-control::-webkit-input-placeholder,
.cid-uInszZMD0L .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uInszZMD0L .form-control:-moz-placeholder,
.cid-uInszZMD0L .field-input:-moz-placeholder,
.cid-uInszZMD0L .form-control:-moz-placeholder,
.cid-uInszZMD0L .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uInszZMD0L .form-control:hover,
.cid-uInszZMD0L .field-input:hover,
.cid-uInszZMD0L .form-control:focus,
.cid-uInszZMD0L .field-input:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uInszZMD0L .form-control:hover::-webkit-input-placeholder,
.cid-uInszZMD0L .field-input:hover::-webkit-input-placeholder,
.cid-uInszZMD0L .form-control:focus::-webkit-input-placeholder,
.cid-uInszZMD0L .field-input:focus::-webkit-input-placeholder,
.cid-uInszZMD0L .form-control:hover::-webkit-input-placeholder,
.cid-uInszZMD0L .field-input:hover::-webkit-input-placeholder,
.cid-uInszZMD0L .form-control:focus::-webkit-input-placeholder,
.cid-uInszZMD0L .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uInszZMD0L .form-control:hover:-moz-placeholder,
.cid-uInszZMD0L .field-input:hover:-moz-placeholder,
.cid-uInszZMD0L .form-control:focus:-moz-placeholder,
.cid-uInszZMD0L .field-input:focus:-moz-placeholder,
.cid-uInszZMD0L .form-control:hover:-moz-placeholder,
.cid-uInszZMD0L .field-input:hover:-moz-placeholder,
.cid-uInszZMD0L .form-control:focus:-moz-placeholder,
.cid-uInszZMD0L .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uInszZMD0L .jq-number__spin:hover,
.cid-uInszZMD0L .jq-number__spin:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uInszZMD0L .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uInszZMD0L .jq-selectbox li,
.cid-uInszZMD0L .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uInszZMD0L .jq-selectbox li:hover,
.cid-uInszZMD0L .jq-selectbox li.selected {
  background-color: #0099ff;
  color: #000000;
}
.cid-uInszZMD0L .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uInszZMD0L .jq-number__spin.minus:hover:after,
.cid-uInszZMD0L .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uInszZMD0L .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uInszZMD0L .jq-number__spin.minus:after,
.cid-uInszZMD0L .jq-number__spin.plus:after {
  border-top-color: #0099ff;
  border-bottom-color: #0099ff;
}
.cid-uInszZMD0L input::-webkit-clear-button {
  display: none;
}
.cid-uInszZMD0L input::-webkit-inner-spin-button {
  display: none;
}
.cid-uInszZMD0L input::-webkit-outer-spin-button {
  display: none;
}
.cid-uInszZMD0L input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uInszZMD0L H4 {
  text-align: left;
}
.cid-uIgsoI34PD {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-uIgsoI34PD .container {
    max-width: 1400px;
  }
}
.cid-uIgsoI34PD .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uIgsoI34PD .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0099ff;
}
.cid-uIgsoI34PD .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uIgsoI34PD .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uIgsoI34PD .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-uIgsoI34PD .card-wrapper {
  margin-top: 3rem;
}
.cid-uIgsoI34PD .row {
  justify-content: center;
}
.cid-uIgsoI34PD .mbr-section-title {
  color: #232323;
}
.cid-uIgsoI34PD .card-title,
.cid-uIgsoI34PD .iconfont-wrapper {
  color: #0099ff;
}
.cid-uIgsoI34PD .card-text {
  color: #232323;
}
.cid-uIuIFqhWfa {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uIuIFqhWfa .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uIuIFqhWfa .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uIuIFqhWfa .container {
    padding: 0 16px;
  }
}
.cid-uIuIFqhWfa .row {
  position: relative;
  z-index: 1;
}
.cid-uIuIFqhWfa .title-wrapper {
  margin-bottom: 80px;
}
.cid-uIuIFqhWfa .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uIuIFqhWfa .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIuIFqhWfa .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uIuIFqhWfa .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uIuIFqhWfa .embla__slide .slide-content {
  width: 100%;
}
.cid-uIuIFqhWfa .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIuIFqhWfa .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uIuIFqhWfa .embla__button--next,
.cid-uIuIFqhWfa .embla__button--prev {
  display: flex;
}
.cid-uIuIFqhWfa .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uIuIFqhWfa .embla__button {
    display: none;
  }
}
.cid-uIuIFqhWfa .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uIuIFqhWfa .embla__button:hover {
  opacity: .7 !important;
}
.cid-uIuIFqhWfa .embla__button.embla__button--prev {
  left: 0;
}
.cid-uIuIFqhWfa .embla__button.embla__button--next {
  right: 0;
}
.cid-uIuIFqhWfa .embla {
  position: relative;
  width: 100%;
}
.cid-uIuIFqhWfa .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uIuIFqhWfa .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uIuIFqhWfa .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uIuIFqhWfa .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uIuIFqhWfa .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIuIFqhWfa .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uIgsoJ0CD2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uIgsoJ0CD2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uIgsoJ0CD2 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uIgsoJ0CD2 .mbr-text {
  color: #767676;
}
.cid-uIgsoJaDya {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgsoJaDya .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgsoJaDya .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgsoJaDya .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uIgsoJaDya .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uIgsoJaDya .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uIgsoJaDya .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uIgsoJaDya .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uIgsoJaDya .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uIgsoJaDya .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uIgsoJaDya .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uIgsoJaDya .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uIgsoJaDya .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uIgsoJaDya .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uIgsoJaDya .list-box {
  width: 100%;
}
.cid-uIgsoJaDya .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uIgsoJaDya .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uIgsoJaDya .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uIgsoJaDya .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uIgsoJaDya .list a:hover:before {
  background-position: left !important;
}
.cid-uIgsoJaDya .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uIgsoJaDya .news-item {
  width: 100%;
}
.cid-uIgsoJaDya .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uIgsoJaDya .news-title {
  color: #303030;
}
.cid-uIgsoJaDya .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uIgDfCQRSg .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uIgDfCQRSg .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uIgDfCQRSg a {
  font-style: normal;
}
.cid-uIgDfCQRSg .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uIgDfCQRSg .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uIgDfCQRSg .nav-item:focus,
.cid-uIgDfCQRSg .nav-link:focus {
  outline: none;
}
.cid-uIgDfCQRSg .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uIgDfCQRSg .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uIgDfCQRSg .menu-logo {
  margin-right: auto;
}
.cid-uIgDfCQRSg .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uIgDfCQRSg .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uIgDfCQRSg .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uIgDfCQRSg .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uIgDfCQRSg .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uIgDfCQRSg .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uIgDfCQRSg .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uIgDfCQRSg .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uIgDfCQRSg .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uIgDfCQRSg .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIgDfCQRSg .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uIgDfCQRSg .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uIgDfCQRSg .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uIgDfCQRSg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIgDfCQRSg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uIgDfCQRSg .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uIgDfCQRSg .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uIgDfCQRSg .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uIgDfCQRSg .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uIgDfCQRSg .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uIgDfCQRSg .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uIgDfCQRSg .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uIgDfCQRSg .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uIgDfCQRSg button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uIgDfCQRSg button.navbar-toggler:focus {
  outline: none;
}
.cid-uIgDfCQRSg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uIgDfCQRSg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIgDfCQRSg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIgDfCQRSg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIgDfCQRSg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIgDfCQRSg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIgDfCQRSg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIgDfCQRSg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIgDfCQRSg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIgDfCQRSg .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIgDfCQRSg .collapsed .btn {
  display: -webkit-flex;
}
.cid-uIgDfCQRSg .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uIgDfCQRSg .collapsed .navbar-collapse.collapsing,
.cid-uIgDfCQRSg .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uIgDfCQRSg .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uIgDfCQRSg .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uIgDfCQRSg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uIgDfCQRSg .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uIgDfCQRSg .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uIgDfCQRSg .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uIgDfCQRSg .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uIgDfCQRSg .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uIgDfCQRSg .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uIgDfCQRSg .collapsed button.navbar-toggler {
  display: block;
}
.cid-uIgDfCQRSg .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uIgDfCQRSg .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIgDfCQRSg .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uIgDfCQRSg .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uIgDfCQRSg .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uIgDfCQRSg .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uIgDfCQRSg .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIgDfCQRSg img {
    height: 3.8rem !important;
  }
  .cid-uIgDfCQRSg .btn {
    display: -webkit-flex;
  }
  .cid-uIgDfCQRSg button.navbar-toggler {
    display: block;
  }
  .cid-uIgDfCQRSg .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uIgDfCQRSg .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIgDfCQRSg .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uIgDfCQRSg .navbar-collapse.collapsing,
  .cid-uIgDfCQRSg .navbar-collapse.show {
    display: block !important;
  }
  .cid-uIgDfCQRSg .navbar-collapse.collapsing .navbar-nav,
  .cid-uIgDfCQRSg .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uIgDfCQRSg .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uIgDfCQRSg .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uIgDfCQRSg .navbar-collapse.collapsing .navbar-buttons,
  .cid-uIgDfCQRSg .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uIgDfCQRSg .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uIgDfCQRSg .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uIgDfCQRSg .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uIgDfCQRSg .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uIgDfCQRSg .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uIgDfCQRSg .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uIgDfCQRSg .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uIgDfCQRSg .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uIgDfCQRSg .nav-link:hover,
.cid-uIgDfCQRSg .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uIgDfD6XF1 {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-uIgDfD6XF1 .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uIgDfD6XF1 .wrapper {
  position: relative;
}
.cid-uIgDfD6XF1 .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uIgDfD6XF1 .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uIgDfD6XF1 .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uIgDfD6XF1 .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uIgDfD6XF1 .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uIgDfD6XF1 .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uIgDfD6XF1 .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uIgDfD6XF1 .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uIgDfD6XF1 .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uIgDfD6XF1 .img2 {
    width: 400px;
  }
  .cid-uIgDfD6XF1 .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uIgDfD6XF1 .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uIgDfD6XF1 .img2 {
    width: 400px;
  }
  .cid-uIgDfD6XF1 .img1 {
    padding-right: 4rem;
  }
  .cid-uIgDfD6XF1 .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uIgDfD6XF1 .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uIgDfD6XF1 .img2 {
    width: 200px;
  }
  .cid-uIgDfD6XF1 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uIgDfD6XF1 .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uIgDfD6XF1 H1 {
  color: #0099ff;
  text-align: left;
}
.cid-uIgDfDjZHR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uIgDfDjZHR .mbr-section-subtitle {
  color: #000000;
}
.cid-uIgDfDjZHR H2 {
  color: #000000;
}
.cid-uOFEHk4fsd {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uOFEHk4fsd .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uOFEHk4fsd .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-uOFEHk4fsd .text-wrapper {
    padding: 0 5.5rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 768px) {
  .cid-uOFEHk4fsd .text-wrapper {
    margin-bottom: 0;
  }
}
.cid-uOFEHk4fsd .item-btn {
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  position: absolute;
  top: -4.5rem;
  right: 2.5rem;
}
@media (max-width: 992px) {
  .cid-uOFEHk4fsd .item-btn {
    width: 6rem;
    height: 6rem;
    top: -3.5rem;
    right: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOFEHk4fsd .item-btn {
    width: 4rem;
    height: 4rem;
    top: -2.5rem;
    right: 1.5rem;
  }
}
.cid-uOFEHk4fsd .icon-wrap span {
  margin: 0;
}
@media (max-width: 768px) {
  .cid-uOFEHk4fsd .icon-wrap span {
    transform: scale(0.6);
  }
}
@media (max-width: 600px) {
  .cid-uOFEHk4fsd .mbr-section-title {
    letter-spacing: -1px;
  }
}
.cid-uOFEHk4fsd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOFEHk4fsd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOFDifATXk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uOFDifATXk .title__block {
  position: relative;
  z-index: 10;
}
.cid-uOFDifATXk .mbr-section-title {
  margin-bottom: 25px;
  color: #2e2e2e;
  text-align: right;
}
.cid-uOFDifATXk .mbr-section-subtitle {
  margin-bottom: 10px;
  padding-right: 150px;
}
.cid-uOFDifATXk .mbr-text {
  margin-bottom: 50px;
  padding-right: 150px;
}
.cid-uOFDifATXk .mbr-section-btn {
  padding-right: 150px;
}
.cid-uOFDifATXk .slider__block .container {
  padding: 0 15px;
}
.cid-uOFDifATXk .carousel {
  padding-bottom: 100px;
}
.cid-uOFDifATXk .carousel-inner {
  overflow: visible;
  transform: translateX(250px);
}
.cid-uOFDifATXk .carousel-item {
  justify-content: center;
  opacity: 0;
  transition: opacity 2s ease, transform 0s ease .3s;
}
.cid-uOFDifATXk .carousel-item.active {
  opacity: 1;
}
.cid-uOFDifATXk .carousel-item .media-container-row {
  flex-grow: 1;
}
.cid-uOFDifATXk .carousel-item .wrap-img {
  transition: transform 0s;
  position: relative;
  text-align: center;
  margin: auto;
  width: 400px;
  height: 600px;
  transform: scale(0.9) rotate(-7deg);
  z-index: 1;
}
.cid-uOFDifATXk .carousel-item .wrap-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 991px) {
  .cid-uOFDifATXk .carousel-item .wrap-img {
    width: 100%;
  }
}
.cid-uOFDifATXk .carousel-item .cloneditem-1,
.cid-uOFDifATXk .carousel-item .cloneditem-2 {
  opacity: 0;
}
.cid-uOFDifATXk .carousel-item.active .cloneditem-1 {
  transform: translateX(-170px);
  z-index: 2;
  opacity: 1;
  transition: opacity .5s ease .3s;
}
.cid-uOFDifATXk .carousel-item.active .cloneditem-1 .wrap-img {
  transform: scale(1.1);
}
.cid-uOFDifATXk .carousel-item.active .cloneditem-2 {
  transform: translateX(-270px);
  z-index: 3;
  opacity: 1;
  transition: opacity .5s ease .7s;
}
.cid-uOFDifATXk .carousel-item.active .cloneditem-2 .wrap-img {
  transform: scale(0.9) rotate(7deg);
}
.cid-uOFDifATXk .arrows .carousel-controls {
  top: -150px;
  left: 80px;
}
.cid-uOFDifATXk .carousel-controls {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-top: 80px;
  justify-content: center;
}
.cid-uOFDifATXk .carousel-controls .carousel-control {
  z-index: 2;
  background: transparent;
  position: static;
  width: 45px;
  height: 45px;
  color: #003d59;
  transition: all 0.3s ease;
}
.cid-uOFDifATXk .carousel-controls .carousel-control.carousel-control-prev {
  left: auto;
  margin-right: 20px;
  margin-left: 0;
}
.cid-uOFDifATXk .carousel-controls .carousel-control.carousel-control-next {
  right: auto;
  margin-right: 0;
}
.cid-uOFDifATXk .carousel-controls .carousel-control .mbr-iconfont {
  font-size: 45px;
}
.cid-uOFDifATXk .carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  margin: 2rem 1rem 0;
  text-align: center;
}
.cid-uOFDifATXk .carousel-indicators li {
  max-width: initial;
  width: 190px;
  height: 15px;
  background-color: transparent;
  display: inline-block;
  border: 0;
  border-bottom: 2px solid #003d59;
  max-height: initial;
  border-radius: 0;
  opacity: 1;
  margin: 0;
  transition: all 0s ease .3s;
}
.cid-uOFDifATXk .carousel-indicators li.active {
  border: 0;
  border-bottom: 5px solid #003d59;
  margin: 0;
  opacity: 1;
}
.cid-uOFDifATXk .col-lg-15 {
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
.cid-uOFDifATXk .cloneditem-1,
.cid-uOFDifATXk .cloneditem-2,
.cid-uOFDifATXk .cloneditem-3 {
  display: none;
}
@media (min-width: 992px) {
  .cid-uOFDifATXk .col-lg-15 {
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-uOFDifATXk .carousel-inner {
    padding-bottom: 3px;
  }
  .cid-uOFDifATXk .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-uOFDifATXk .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(50%, 0, 0);
  }
  .cid-uOFDifATXk .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-uOFDifATXk .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-50%, 0, 0);
  }
  .cid-uOFDifATXk .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-uOFDifATXk .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uOFDifATXk .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-uOFDifATXk .carousel-inner.slides2 .cloneditem-1,
  .cid-uOFDifATXk .carousel-inner.slides2 .cloneditem-2,
  .cid-uOFDifATXk .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-uOFDifATXk .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-uOFDifATXk .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-uOFDifATXk .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-uOFDifATXk .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-uOFDifATXk .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-uOFDifATXk .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-uOFDifATXk .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    transform: translate3d(0, 0, 0);
  }
  .cid-uOFDifATXk .carousel-inner.slides3 .cloneditem-1,
  .cid-uOFDifATXk .carousel-inner.slides3 .cloneditem-2,
  .cid-uOFDifATXk .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
}
@media (max-width: 991px) {
  .cid-uOFDifATXk .title__block {
    text-align: center;
    margin-bottom: 67px;
  }
  .cid-uOFDifATXk .mbr-section-title {
    margin-bottom: 18px;
  }
  .cid-uOFDifATXk .mbr-section-subtitle {
    margin-bottom: 7px;
    padding-right: 0;
  }
  .cid-uOFDifATXk .mbr-text {
    margin-bottom: 28px;
    padding-right: 0;
  }
  .cid-uOFDifATXk .mbr-section-btn {
    padding-right: 0;
  }
  .cid-uOFDifATXk .carousel-inner {
    overflow: hidden;
    transform: translateX(0);
  }
  .cid-uOFDifATXk .carousel-item {
    transition: all .3s ease;
    opacity: 1;
  }
  .cid-uOFDifATXk .carousel-item .wrap-img {
    height: auto;
    transition: all .3s 0s;
    transform: scale(1) rotate(0);
    width: 100%;
  }
  .cid-uOFDifATXk .carousel-indicators li {
    transition: all 0s ease 0s;
  }
}
@media (max-width: 767px) {
  .cid-uOFDifATXk .carousel-controls {
    justify-content: center;
    margin-top: 40px;
    display: none;
  }
  .cid-uOFDifATXk .carousel-controls .carousel-control {
    width: 30px;
    height: 30px;
  }
  .cid-uOFDifATXk .carousel-controls .carousel-control .mbr-iconfont {
    font-size: 30px;
  }
  .cid-uOFDifATXk .carousel {
    padding-bottom: 50px;
  }
}
.cid-uOFDqd9S2k {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uOFDqd9S2k .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uOFDqd9S2k .row {
    text-align: center!important;
  }
}
.cid-uOFDqd9S2k .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uOFDqd9S2k .mbr-section-title {
    text-align: center;
  }
}
.cid-uOFDqd9S2k .mbr-section-subtitle {
  color: #0099ff;
}
.cid-uOFDqd9S2k .mbr-text {
  color: #000000;
  margin-top: 28px;
  text-align: center;
}
.cid-uOFDqd9S2k .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uOFDqd9S2k .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uOFDqd9S2k .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uOFDqd9S2k .btn-primary-outline,
.cid-uOFDqd9S2k .btn-secondary-outline,
.cid-uOFDqd9S2k .btn-success-outline,
.cid-uOFDqd9S2k .btn-info-outline,
.cid-uOFDqd9S2k .btn-warning-outline,
.cid-uOFDqd9S2k .btn-danger-outline,
.cid-uOFDqd9S2k .btn-white-outline,
.cid-uOFDqd9S2k .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uOFDqd9S2k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOFDqd9S2k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOFDqd9S2k .mbr-section-title,
.cid-uOFDqd9S2k .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uIgDfDsFyO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfDsFyO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfDsFyO .col-12 {
  padding: 0;
}
.cid-uIgDfDsFyO .row {
  margin: 0;
}
.cid-uIgDfDsFyO .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfDsFyO .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDsFyO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfDsFyO .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfDsFyO .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfDsFyO .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfDsFyO .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfDsFyO .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfDsFyO .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfDsFyO .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDsFyO .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfDsFyO .mbr-text,
.cid-uIgDfDsFyO .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfDDaF8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfDDaF8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfDDaF8 .col-12 {
  padding: 0;
}
.cid-uIgDfDDaF8 .row {
  margin: 0;
}
.cid-uIgDfDDaF8 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfDDaF8 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDDaF8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfDDaF8 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfDDaF8 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfDDaF8 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfDDaF8 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfDDaF8 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfDDaF8 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfDDaF8 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDDaF8 .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfDDaF8 .mbr-text,
.cid-uIgDfDDaF8 .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfDNvNT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfDNvNT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfDNvNT .col-12 {
  padding: 0;
}
.cid-uIgDfDNvNT .row {
  margin: 0;
}
.cid-uIgDfDNvNT .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfDNvNT .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDNvNT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfDNvNT .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfDNvNT .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfDNvNT .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfDNvNT .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfDNvNT .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfDNvNT .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfDNvNT .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDNvNT .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfDNvNT .mbr-text,
.cid-uIgDfDNvNT .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfDXg4E {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfDXg4E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfDXg4E .col-12 {
  padding: 0;
}
.cid-uIgDfDXg4E .row {
  margin: 0;
}
.cid-uIgDfDXg4E .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfDXg4E .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDXg4E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfDXg4E .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfDXg4E .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfDXg4E .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfDXg4E .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfDXg4E .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfDXg4E .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfDXg4E .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfDXg4E .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfDXg4E .mbr-text,
.cid-uIgDfDXg4E .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfE8tBE {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfE8tBE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfE8tBE .col-12 {
  padding: 0;
}
.cid-uIgDfE8tBE .row {
  margin: 0;
}
.cid-uIgDfE8tBE .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfE8tBE .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfE8tBE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfE8tBE .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfE8tBE .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfE8tBE .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfE8tBE .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfE8tBE .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfE8tBE .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfE8tBE .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfE8tBE .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfE8tBE .mbr-text,
.cid-uIgDfE8tBE .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfEhEuX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfEhEuX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfEhEuX .col-12 {
  padding: 0;
}
.cid-uIgDfEhEuX .row {
  margin: 0;
}
.cid-uIgDfEhEuX .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfEhEuX .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfEhEuX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfEhEuX .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfEhEuX .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfEhEuX .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfEhEuX .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfEhEuX .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfEhEuX .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfEhEuX .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfEhEuX .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfEhEuX .mbr-text,
.cid-uIgDfEhEuX .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfErjYj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfErjYj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfErjYj .col-12 {
  padding: 0;
}
.cid-uIgDfErjYj .row {
  margin: 0;
}
.cid-uIgDfErjYj .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfErjYj .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfErjYj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfErjYj .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfErjYj .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfErjYj .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfErjYj .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfErjYj .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfErjYj .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfErjYj .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfErjYj .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfErjYj .mbr-text,
.cid-uIgDfErjYj .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfEB6jL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfEB6jL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfEB6jL .col-12 {
  padding: 0;
}
.cid-uIgDfEB6jL .row {
  margin: 0;
}
.cid-uIgDfEB6jL .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfEB6jL .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfEB6jL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfEB6jL .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfEB6jL .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfEB6jL .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfEB6jL .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfEB6jL .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfEB6jL .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfEB6jL .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfEB6jL .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfEB6jL .mbr-text,
.cid-uIgDfEB6jL .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfELjn3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfELjn3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfELjn3 .col-12 {
  padding: 0;
}
.cid-uIgDfELjn3 .row {
  margin: 0;
}
.cid-uIgDfELjn3 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfELjn3 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfELjn3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfELjn3 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfELjn3 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfELjn3 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfELjn3 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfELjn3 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfELjn3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfELjn3 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfELjn3 .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfELjn3 .mbr-text,
.cid-uIgDfELjn3 .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfEWSRP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfEWSRP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfEWSRP .col-12 {
  padding: 0;
}
.cid-uIgDfEWSRP .row {
  margin: 0;
}
.cid-uIgDfEWSRP .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfEWSRP .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfEWSRP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfEWSRP .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfEWSRP .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfEWSRP .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfEWSRP .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfEWSRP .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfEWSRP .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfEWSRP .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfEWSRP .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfEWSRP .mbr-text,
.cid-uIgDfEWSRP .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfF6fZ1 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfF6fZ1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfF6fZ1 .col-12 {
  padding: 0;
}
.cid-uIgDfF6fZ1 .row {
  margin: 0;
}
.cid-uIgDfF6fZ1 .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfF6fZ1 .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfF6fZ1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfF6fZ1 .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfF6fZ1 .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfF6fZ1 .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfF6fZ1 .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfF6fZ1 .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfF6fZ1 .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfF6fZ1 .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfF6fZ1 .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfF6fZ1 .mbr-text,
.cid-uIgDfF6fZ1 .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfFiLzv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfFiLzv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfFiLzv .col-12 {
  padding: 0;
}
.cid-uIgDfFiLzv .row {
  margin: 0;
}
.cid-uIgDfFiLzv .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfFiLzv .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfFiLzv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfFiLzv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfFiLzv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfFiLzv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfFiLzv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfFiLzv .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfFiLzv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfFiLzv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfFiLzv .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfFiLzv .mbr-text,
.cid-uIgDfFiLzv .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfFu42R {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-uIgDfFu42R .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfFu42R .col-12 {
  padding: 0;
}
.cid-uIgDfFu42R .row {
  margin: 0;
}
.cid-uIgDfFu42R .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIgDfFu42R .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfFu42R .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfFu42R .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIgDfFu42R .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIgDfFu42R .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIgDfFu42R .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIgDfFu42R .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIgDfFu42R .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIgDfFu42R .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIgDfFu42R .mbr-section-title {
  color: #221b35;
}
.cid-uIgDfFu42R .mbr-text,
.cid-uIgDfFu42R .mbr-section-btn {
  color: #221b35;
}
.cid-uIgDfFVZqv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIgDfFVZqv .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uIgDfFVZqv .row {
    text-align: center!important;
  }
}
.cid-uIgDfFVZqv .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uIgDfFVZqv .mbr-section-title {
    text-align: center;
  }
}
.cid-uIgDfFVZqv .mbr-section-subtitle {
  color: #0099ff;
}
.cid-uIgDfFVZqv .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uIgDfFVZqv .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uIgDfFVZqv .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uIgDfFVZqv .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uIgDfFVZqv .btn-primary-outline,
.cid-uIgDfFVZqv .btn-secondary-outline,
.cid-uIgDfFVZqv .btn-success-outline,
.cid-uIgDfFVZqv .btn-info-outline,
.cid-uIgDfFVZqv .btn-warning-outline,
.cid-uIgDfFVZqv .btn-danger-outline,
.cid-uIgDfFVZqv .btn-white-outline,
.cid-uIgDfFVZqv .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uIgDfFVZqv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfFVZqv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfFVZqv .mbr-section-title,
.cid-uIgDfFVZqv .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uOFDWzgTys {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uOFDWzgTys .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-uOFDWzgTys .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
  align-items: stretch;
  -webkit-align-items: stretch;
}
.cid-uOFDWzgTys .card_cont {
  -o-transition: all .5s;
  -ms-transition: all .5s;
  -moz-transition: all .5s;
  -webkit-transition: all .5s;
  transition: all .5s;
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  top: 0px;
  left: 0px;
  text-align: center;
  background-color: #eee;
}
.cid-uOFDWzgTys .card-front {
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.cid-uOFDWzgTys .card-front img {
  height: 100%;
  min-width: 100%;
  width: auto;
}
.cid-uOFDWzgTys .card_back {
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  color: #ffffff;
  background-color: #232323;
  z-index: 1;
  margin: 0;
  text-align: center;
  overflow: hidden;
  -o-transform: rotateY(-180deg);
  -ms-transform: rotateY(-180deg);
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}
.cid-uOFDWzgTys .card {
  min-height: 300px;
}
.cid-uOFDWzgTys .card:hover .card-front {
  z-index: 1;
  -o-transform: rotateY(180deg);
  -ms-transform: rotateY(180deg);
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}
.cid-uOFDWzgTys .card:hover .card_back {
  z-index: 2;
  -o-transform: rotateY(0deg);
  -ms-transform: rotateY(0deg);
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
}
.cid-uOFDWzgTys .builderCard .card_back {
  border-bottom-left-radius: 100px;
}
.cid-uOFDWzgTys .builderCard .card_cont {
  -o-backface-visibility: hidden;
  -ms-backface-visibility: hidd;
  -moz-backface-visibility: visible;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}
.cid-uOFE4W4uHU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uOFE4W4uHU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOFE4W4uHU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOFE4W4uHU .row {
  justify-content: space-between;
}
.cid-uOFE4W4uHU .mbr-text,
.cid-uOFE4W4uHU .mbr-section-btn {
  color: #232323;
}
.cid-uOFE4lYWmp {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOFE4lYWmp .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOFE4lYWmp .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOFE4lYWmp .mbr-gallery {
  border-radius: 20px;
  border: 3px solid #000;
  overflow: hidden;
}
.cid-uOFE4lYWmp .mbr-section-head {
  width: fit-content;
  border-radius: 20px;
  background-color: #ffffff;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 80px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-uOFE4lYWmp .mbr-section-head .display-7 {
    font-size: 23.8px;
  }
}
.cid-uOFE4lYWmp .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uOFE4lYWmp .item-wrapper img {
  object-fit: cover;
}
.cid-uOFE4lYWmp .item-wrapper img {
  height: 100%;
}
.cid-uOFE4lYWmp .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  transition: 0.2s;
}
.cid-uOFE4lYWmp .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOFE4lYWmp .carousel-control,
.cid-uOFE4lYWmp .close {
  background: #1b1b1b;
}
.cid-uOFE4lYWmp .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOFE4lYWmp .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOFE4lYWmp .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
}
.cid-uOFE4lYWmp .close::before {
  content: '\e91a';
}
.cid-uOFE4lYWmp .close:hover {
  opacity: .7;
}
.cid-uOFE4lYWmp .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  opacity: 0.5;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOFE4lYWmp .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOFE4lYWmp .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOFE4lYWmp .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOFE4lYWmp .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOFE4lYWmp .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOFE4lYWmp .carousel-indicators li.active,
.cid-uOFE4lYWmp .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOFE4lYWmp .carousel-indicators li::after,
.cid-uOFE4lYWmp .carousel-indicators li::before {
  content: none;
}
.cid-uOFE4lYWmp .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOFE4lYWmp .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOFE4lYWmp .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOFE4lYWmp .carousel-indicators {
    display: none;
  }
}
.cid-uOFE4lYWmp .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOFE4lYWmp .carousel-inner > .active {
  display: block;
}
.cid-uOFE4lYWmp .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOFE4lYWmp .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOFE4lYWmp .carousel-control:hover {
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uOFE4lYWmp .carousel-control,
  .cid-uOFE4lYWmp .carousel-indicators,
  .cid-uOFE4lYWmp .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOFE4lYWmp .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOFE4lYWmp .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOFE4lYWmp .carousel-indicators .active,
.cid-uOFE4lYWmp .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOFE4lYWmp .carousel-indicators .active {
  background: #fff;
}
.cid-uOFE4lYWmp .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOFE4lYWmp .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOFE4lYWmp .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOFE4lYWmp .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOFE4lYWmp .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOFE4lYWmp .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOFE4lYWmp .carousel {
  width: 100%;
}
.cid-uOFE4lYWmp .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOFE4lYWmp .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOFE4lYWmp .modal.fade .modal-dialog,
.cid-uOFE4lYWmp .modal.in .modal-dialog {
  transform: none;
}
.cid-uOFE4lYWmp .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOFE4lYWmp H6 {
  text-align: center;
}
.cid-uOFE4lYWmp H3 {
  text-align: right;
  color: #2e2e2e;
}
.cid-uOFEdMktFB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOFEdMktFB .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uOFEdMktFB .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uOFEdMktFB .mbr-text {
  color: #767676;
}
.cid-uOFE5AScYz {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uOFE5AScYz .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-uOFE5AScYz .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-uOFE5AScYz .mbr-gallery {
  border-radius: 20px;
  border: 3px solid #000;
  overflow: hidden;
}
.cid-uOFE5AScYz .mbr-section-head {
  width: fit-content;
  border-radius: 20px;
  background-color: #ffffff;
  color: #fff;
  padding: 0.2em 30px 0.2em;
  margin-bottom: 80px;
  font-family: "Josefin Sans";
}
@media (min-width: 92px) {
  .cid-uOFE5AScYz .mbr-section-head .display-7 {
    font-size: 23.8px;
  }
}
.cid-uOFE5AScYz .item-wrapper {
  height: 300px;
  position: relative;
}
.cid-uOFE5AScYz .item-wrapper img {
  object-fit: cover;
}
.cid-uOFE5AScYz .item-wrapper img {
  height: 100%;
}
.cid-uOFE5AScYz .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  transition: 0.2s;
}
.cid-uOFE5AScYz .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uOFE5AScYz .carousel-control,
.cid-uOFE5AScYz .close {
  background: #1b1b1b;
}
.cid-uOFE5AScYz .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uOFE5AScYz .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uOFE5AScYz .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  top: 2.5rem;
  right: 2.5rem;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
}
.cid-uOFE5AScYz .close::before {
  content: '\e91a';
}
.cid-uOFE5AScYz .close:hover {
  opacity: .7;
}
.cid-uOFE5AScYz .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  opacity: 0.5;
  color: #000;
  background-color: #FEF1E5;
  border: 3px solid #000;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uOFE5AScYz .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOFE5AScYz .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uOFE5AScYz .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uOFE5AScYz .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uOFE5AScYz .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uOFE5AScYz .carousel-indicators li.active,
.cid-uOFE5AScYz .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uOFE5AScYz .carousel-indicators li::after,
.cid-uOFE5AScYz .carousel-indicators li::before {
  content: none;
}
.cid-uOFE5AScYz .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uOFE5AScYz .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uOFE5AScYz .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uOFE5AScYz .carousel-indicators {
    display: none;
  }
}
.cid-uOFE5AScYz .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uOFE5AScYz .carousel-inner > .active {
  display: block;
}
.cid-uOFE5AScYz .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uOFE5AScYz .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uOFE5AScYz .carousel-control:hover {
  opacity: .7;
}
@media (max-width: 768px) {
  .cid-uOFE5AScYz .carousel-control,
  .cid-uOFE5AScYz .carousel-indicators,
  .cid-uOFE5AScYz .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uOFE5AScYz .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uOFE5AScYz .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uOFE5AScYz .carousel-indicators .active,
.cid-uOFE5AScYz .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uOFE5AScYz .carousel-indicators .active {
  background: #fff;
}
.cid-uOFE5AScYz .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uOFE5AScYz .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uOFE5AScYz .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uOFE5AScYz .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uOFE5AScYz .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uOFE5AScYz .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uOFE5AScYz .carousel {
  width: 100%;
}
.cid-uOFE5AScYz .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uOFE5AScYz .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uOFE5AScYz .modal.fade .modal-dialog,
.cid-uOFE5AScYz .modal.in .modal-dialog {
  transform: none;
}
.cid-uOFE5AScYz .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uOFE5AScYz H6 {
  text-align: center;
}
.cid-uOFE5AScYz H3 {
  text-align: right;
  color: #2e2e2e;
}
.cid-uIgDfG53Di {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-uIgDfG53Di .mbr-section-subtitle {
  color: #232323;
}
.cid-uIgDfG53Di H2 {
  color: #0099ff;
}
.cid-uInmyuCkX5 {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #cccccc;
}
.cid-uInmyuCkX5 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uInmyuCkX5 .form-control,
.cid-uInmyuCkX5 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uInmyuCkX5 .form-control::-webkit-input-placeholder,
.cid-uInmyuCkX5 .field-input::-webkit-input-placeholder,
.cid-uInmyuCkX5 .form-control::-webkit-input-placeholder,
.cid-uInmyuCkX5 .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uInmyuCkX5 .form-control:-moz-placeholder,
.cid-uInmyuCkX5 .field-input:-moz-placeholder,
.cid-uInmyuCkX5 .form-control:-moz-placeholder,
.cid-uInmyuCkX5 .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uInmyuCkX5 .form-control:hover,
.cid-uInmyuCkX5 .field-input:hover,
.cid-uInmyuCkX5 .form-control:focus,
.cid-uInmyuCkX5 .field-input:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uInmyuCkX5 .form-control:hover::-webkit-input-placeholder,
.cid-uInmyuCkX5 .field-input:hover::-webkit-input-placeholder,
.cid-uInmyuCkX5 .form-control:focus::-webkit-input-placeholder,
.cid-uInmyuCkX5 .field-input:focus::-webkit-input-placeholder,
.cid-uInmyuCkX5 .form-control:hover::-webkit-input-placeholder,
.cid-uInmyuCkX5 .field-input:hover::-webkit-input-placeholder,
.cid-uInmyuCkX5 .form-control:focus::-webkit-input-placeholder,
.cid-uInmyuCkX5 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uInmyuCkX5 .form-control:hover:-moz-placeholder,
.cid-uInmyuCkX5 .field-input:hover:-moz-placeholder,
.cid-uInmyuCkX5 .form-control:focus:-moz-placeholder,
.cid-uInmyuCkX5 .field-input:focus:-moz-placeholder,
.cid-uInmyuCkX5 .form-control:hover:-moz-placeholder,
.cid-uInmyuCkX5 .field-input:hover:-moz-placeholder,
.cid-uInmyuCkX5 .form-control:focus:-moz-placeholder,
.cid-uInmyuCkX5 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uInmyuCkX5 .jq-number__spin:hover,
.cid-uInmyuCkX5 .jq-number__spin:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uInmyuCkX5 .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uInmyuCkX5 .jq-selectbox li,
.cid-uInmyuCkX5 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uInmyuCkX5 .jq-selectbox li:hover,
.cid-uInmyuCkX5 .jq-selectbox li.selected {
  background-color: #0099ff;
  color: #000000;
}
.cid-uInmyuCkX5 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uInmyuCkX5 .jq-number__spin.minus:hover:after,
.cid-uInmyuCkX5 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uInmyuCkX5 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uInmyuCkX5 .jq-number__spin.minus:after,
.cid-uInmyuCkX5 .jq-number__spin.plus:after {
  border-top-color: #0099ff;
  border-bottom-color: #0099ff;
}
.cid-uInmyuCkX5 input::-webkit-clear-button {
  display: none;
}
.cid-uInmyuCkX5 input::-webkit-inner-spin-button {
  display: none;
}
.cid-uInmyuCkX5 input::-webkit-outer-spin-button {
  display: none;
}
.cid-uInmyuCkX5 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uInmyuCkX5 H4 {
  text-align: left;
}
.cid-uIgDfFEEvh {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-uIgDfFEEvh .container {
    max-width: 1400px;
  }
}
.cid-uIgDfFEEvh .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uIgDfFEEvh .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0099ff;
}
.cid-uIgDfFEEvh .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uIgDfFEEvh .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uIgDfFEEvh .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-uIgDfFEEvh .card-wrapper {
  margin-top: 3rem;
}
.cid-uIgDfFEEvh .row {
  justify-content: center;
}
.cid-uIgDfFEEvh .mbr-section-title {
  color: #232323;
}
.cid-uIgDfFEEvh .card-title,
.cid-uIgDfFEEvh .iconfont-wrapper {
  color: #0099ff;
}
.cid-uIgDfFEEvh .card-text {
  color: #232323;
}
.cid-uIuIItAz1a {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uIuIItAz1a .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uIuIItAz1a .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uIuIItAz1a .container {
    padding: 0 16px;
  }
}
.cid-uIuIItAz1a .row {
  position: relative;
  z-index: 1;
}
.cid-uIuIItAz1a .title-wrapper {
  margin-bottom: 80px;
}
.cid-uIuIItAz1a .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uIuIItAz1a .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIuIItAz1a .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uIuIItAz1a .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uIuIItAz1a .embla__slide .slide-content {
  width: 100%;
}
.cid-uIuIItAz1a .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIuIItAz1a .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uIuIItAz1a .embla__button--next,
.cid-uIuIItAz1a .embla__button--prev {
  display: flex;
}
.cid-uIuIItAz1a .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uIuIItAz1a .embla__button {
    display: none;
  }
}
.cid-uIuIItAz1a .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uIuIItAz1a .embla__button:hover {
  opacity: .7 !important;
}
.cid-uIuIItAz1a .embla__button.embla__button--prev {
  left: 0;
}
.cid-uIuIItAz1a .embla__button.embla__button--next {
  right: 0;
}
.cid-uIuIItAz1a .embla {
  position: relative;
  width: 100%;
}
.cid-uIuIItAz1a .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uIuIItAz1a .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uIuIItAz1a .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uIuIItAz1a .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uIuIItAz1a .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIuIItAz1a .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uIgDfGEM2O {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIgDfGEM2O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIgDfGEM2O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIgDfGEM2O .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uIgDfGEM2O .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uIgDfGEM2O .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uIgDfGEM2O .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uIgDfGEM2O .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uIgDfGEM2O .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uIgDfGEM2O .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uIgDfGEM2O .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uIgDfGEM2O .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uIgDfGEM2O .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uIgDfGEM2O .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uIgDfGEM2O .list-box {
  width: 100%;
}
.cid-uIgDfGEM2O .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uIgDfGEM2O .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uIgDfGEM2O .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uIgDfGEM2O .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uIgDfGEM2O .list a:hover:before {
  background-position: left !important;
}
.cid-uIgDfGEM2O .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uIgDfGEM2O .news-item {
  width: 100%;
}
.cid-uIgDfGEM2O .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uIgDfGEM2O .news-title {
  color: #303030;
}
.cid-uIgDfGEM2O .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uIyT4aFJXv .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uIyT4aFJXv .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uIyT4aFJXv a {
  font-style: normal;
}
.cid-uIyT4aFJXv .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uIyT4aFJXv .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uIyT4aFJXv .nav-item:focus,
.cid-uIyT4aFJXv .nav-link:focus {
  outline: none;
}
.cid-uIyT4aFJXv .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uIyT4aFJXv .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uIyT4aFJXv .menu-logo {
  margin-right: auto;
}
.cid-uIyT4aFJXv .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uIyT4aFJXv .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uIyT4aFJXv .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uIyT4aFJXv .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uIyT4aFJXv .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uIyT4aFJXv .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uIyT4aFJXv .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uIyT4aFJXv .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uIyT4aFJXv .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uIyT4aFJXv .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIyT4aFJXv .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uIyT4aFJXv .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uIyT4aFJXv .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uIyT4aFJXv .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIyT4aFJXv .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uIyT4aFJXv .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uIyT4aFJXv .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uIyT4aFJXv .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uIyT4aFJXv .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uIyT4aFJXv .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uIyT4aFJXv .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uIyT4aFJXv .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uIyT4aFJXv .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uIyT4aFJXv button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uIyT4aFJXv button.navbar-toggler:focus {
  outline: none;
}
.cid-uIyT4aFJXv button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uIyT4aFJXv button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIyT4aFJXv button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyT4aFJXv button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyT4aFJXv button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIyT4aFJXv nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyT4aFJXv nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIyT4aFJXv nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIyT4aFJXv nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyT4aFJXv .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIyT4aFJXv .collapsed .btn {
  display: -webkit-flex;
}
.cid-uIyT4aFJXv .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uIyT4aFJXv .collapsed .navbar-collapse.collapsing,
.cid-uIyT4aFJXv .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uIyT4aFJXv .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uIyT4aFJXv .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uIyT4aFJXv .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uIyT4aFJXv .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uIyT4aFJXv .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uIyT4aFJXv .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uIyT4aFJXv .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uIyT4aFJXv .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uIyT4aFJXv .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uIyT4aFJXv .collapsed button.navbar-toggler {
  display: block;
}
.cid-uIyT4aFJXv .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uIyT4aFJXv .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIyT4aFJXv .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uIyT4aFJXv .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uIyT4aFJXv .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uIyT4aFJXv .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uIyT4aFJXv .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIyT4aFJXv img {
    height: 3.8rem !important;
  }
  .cid-uIyT4aFJXv .btn {
    display: -webkit-flex;
  }
  .cid-uIyT4aFJXv button.navbar-toggler {
    display: block;
  }
  .cid-uIyT4aFJXv .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uIyT4aFJXv .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIyT4aFJXv .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uIyT4aFJXv .navbar-collapse.collapsing,
  .cid-uIyT4aFJXv .navbar-collapse.show {
    display: block !important;
  }
  .cid-uIyT4aFJXv .navbar-collapse.collapsing .navbar-nav,
  .cid-uIyT4aFJXv .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uIyT4aFJXv .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uIyT4aFJXv .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uIyT4aFJXv .navbar-collapse.collapsing .navbar-buttons,
  .cid-uIyT4aFJXv .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uIyT4aFJXv .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uIyT4aFJXv .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uIyT4aFJXv .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uIyT4aFJXv .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uIyT4aFJXv .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uIyT4aFJXv .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uIyT4aFJXv .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uIyT4aFJXv .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uIyT4aFJXv .nav-link:hover,
.cid-uIyT4aFJXv .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uIyT4aYZhk {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-uIyT4aYZhk .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uIyT4aYZhk .wrapper {
  position: relative;
}
.cid-uIyT4aYZhk .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uIyT4aYZhk .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uIyT4aYZhk .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uIyT4aYZhk .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uIyT4aYZhk .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uIyT4aYZhk .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uIyT4aYZhk .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uIyT4aYZhk .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uIyT4aYZhk .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uIyT4aYZhk .img2 {
    width: 400px;
  }
  .cid-uIyT4aYZhk .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uIyT4aYZhk .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uIyT4aYZhk .img2 {
    width: 400px;
  }
  .cid-uIyT4aYZhk .img1 {
    padding-right: 4rem;
  }
  .cid-uIyT4aYZhk .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uIyT4aYZhk .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uIyT4aYZhk .img2 {
    width: 200px;
  }
  .cid-uIyT4aYZhk .container-fluid {
    padding: 0 1rem;
  }
  .cid-uIyT4aYZhk .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uIyT4aYZhk H1 {
  color: #0099ff;
  text-align: left;
}
.cid-uIyT4biJny {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uIyT4biJny .mbr-section-subtitle {
  color: #232323;
}
.cid-uIyT4biJny H2 {
  color: #000000;
}
.cid-uIyT4dHUSZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uIyT4dHUSZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uIyT4dHUSZ .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uIyT4dHUSZ .mbr-text {
  color: #767676;
}
.cid-uIyT4dSDLL {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIyT4dSDLL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIyT4dSDLL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIyT4dSDLL .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uIyT4dSDLL .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uIyT4dSDLL .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uIyT4dSDLL .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uIyT4dSDLL .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uIyT4dSDLL .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uIyT4dSDLL .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uIyT4dSDLL .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uIyT4dSDLL .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uIyT4dSDLL .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uIyT4dSDLL .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uIyT4dSDLL .list-box {
  width: 100%;
}
.cid-uIyT4dSDLL .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uIyT4dSDLL .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uIyT4dSDLL .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uIyT4dSDLL .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uIyT4dSDLL .list a:hover:before {
  background-position: left !important;
}
.cid-uIyT4dSDLL .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uIyT4dSDLL .news-item {
  width: 100%;
}
.cid-uIyT4dSDLL .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uIyT4dSDLL .news-title {
  color: #303030;
}
.cid-uIyT4dSDLL .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uIyHYfhWU0 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uIyHYfhWU0 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uIyHYfhWU0 a {
  font-style: normal;
}
.cid-uIyHYfhWU0 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uIyHYfhWU0 .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uIyHYfhWU0 .nav-item:focus,
.cid-uIyHYfhWU0 .nav-link:focus {
  outline: none;
}
.cid-uIyHYfhWU0 .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uIyHYfhWU0 .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uIyHYfhWU0 .menu-logo {
  margin-right: auto;
}
.cid-uIyHYfhWU0 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uIyHYfhWU0 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uIyHYfhWU0 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uIyHYfhWU0 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uIyHYfhWU0 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uIyHYfhWU0 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uIyHYfhWU0 .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uIyHYfhWU0 .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uIyHYfhWU0 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uIyHYfhWU0 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uIyHYfhWU0 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uIyHYfhWU0 .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uIyHYfhWU0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uIyHYfhWU0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uIyHYfhWU0 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uIyHYfhWU0 .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uIyHYfhWU0 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uIyHYfhWU0 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uIyHYfhWU0 .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uIyHYfhWU0 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uIyHYfhWU0 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uIyHYfhWU0 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uIyHYfhWU0 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uIyHYfhWU0 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uIyHYfhWU0 button.navbar-toggler:focus {
  outline: none;
}
.cid-uIyHYfhWU0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uIyHYfhWU0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uIyHYfhWU0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyHYfhWU0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uIyHYfhWU0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uIyHYfhWU0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyHYfhWU0 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uIyHYfhWU0 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uIyHYfhWU0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uIyHYfhWU0 .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIyHYfhWU0 .collapsed .btn {
  display: -webkit-flex;
}
.cid-uIyHYfhWU0 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.collapsing,
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uIyHYfhWU0 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uIyHYfhWU0 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uIyHYfhWU0 .collapsed button.navbar-toggler {
  display: block;
}
.cid-uIyHYfhWU0 .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uIyHYfhWU0 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uIyHYfhWU0 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uIyHYfhWU0 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uIyHYfhWU0 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uIyHYfhWU0 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uIyHYfhWU0 .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIyHYfhWU0 img {
    height: 3.8rem !important;
  }
  .cid-uIyHYfhWU0 .btn {
    display: -webkit-flex;
  }
  .cid-uIyHYfhWU0 button.navbar-toggler {
    display: block;
  }
  .cid-uIyHYfhWU0 .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uIyHYfhWU0 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uIyHYfhWU0 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uIyHYfhWU0 .navbar-collapse.collapsing,
  .cid-uIyHYfhWU0 .navbar-collapse.show {
    display: block !important;
  }
  .cid-uIyHYfhWU0 .navbar-collapse.collapsing .navbar-nav,
  .cid-uIyHYfhWU0 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uIyHYfhWU0 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uIyHYfhWU0 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uIyHYfhWU0 .navbar-collapse.collapsing .navbar-buttons,
  .cid-uIyHYfhWU0 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uIyHYfhWU0 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uIyHYfhWU0 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uIyHYfhWU0 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uIyHYfhWU0 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uIyHYfhWU0 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uIyHYfhWU0 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uIyHYfhWU0 .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uIyHYfhWU0 .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uIyHYfhWU0 .nav-link:hover,
.cid-uIyHYfhWU0 .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uIyHYfwkZq {
  padding-top: 120px;
  padding-bottom: 135px;
  background-color: #ffffff;
}
.cid-uIyHYfwkZq .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uIyHYfwkZq .wrapper {
  position: relative;
}
.cid-uIyHYfwkZq .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uIyHYfwkZq .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uIyHYfwkZq .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uIyHYfwkZq .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uIyHYfwkZq .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uIyHYfwkZq .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uIyHYfwkZq .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uIyHYfwkZq .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uIyHYfwkZq .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uIyHYfwkZq .img2 {
    width: 400px;
  }
  .cid-uIyHYfwkZq .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uIyHYfwkZq .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uIyHYfwkZq .img2 {
    width: 400px;
  }
  .cid-uIyHYfwkZq .img1 {
    padding-right: 4rem;
  }
  .cid-uIyHYfwkZq .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uIyHYfwkZq .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uIyHYfwkZq .img2 {
    width: 200px;
  }
  .cid-uIyHYfwkZq .container-fluid {
    padding: 0 1rem;
  }
  .cid-uIyHYfwkZq .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uIyHYfwkZq H1 {
  color: #0099ff;
  text-align: left;
}
.cid-uIyHYfHuJQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-uIyHYfHuJQ .mbr-section-subtitle {
  color: #000000;
}
.cid-uIyHYfHuJQ H2 {
  color: #000000;
}
.cid-uIyHYfObkv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIyHYfObkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIyHYfObkv .col-12 {
  padding: 0;
}
.cid-uIyHYfObkv .row {
  margin: 0;
}
.cid-uIyHYfObkv .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIyHYfObkv .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYfObkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIyHYfObkv .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIyHYfObkv .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIyHYfObkv .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIyHYfObkv .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIyHYfObkv .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIyHYfObkv .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIyHYfObkv .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYfObkv .mbr-section-title {
  color: #221b35;
}
.cid-uIyHYfObkv .mbr-text,
.cid-uIyHYfObkv .mbr-section-btn {
  color: #221b35;
}
.cid-uIyHYg0KGr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIyHYg0KGr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIyHYg0KGr .col-12 {
  padding: 0;
}
.cid-uIyHYg0KGr .row {
  margin: 0;
}
.cid-uIyHYg0KGr .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIyHYg0KGr .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYg0KGr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIyHYg0KGr .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIyHYg0KGr .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIyHYg0KGr .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIyHYg0KGr .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIyHYg0KGr .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIyHYg0KGr .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIyHYg0KGr .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYg0KGr .mbr-section-title {
  color: #221b35;
}
.cid-uIyHYg0KGr .mbr-text,
.cid-uIyHYg0KGr .mbr-section-btn {
  color: #221b35;
}
.cid-uIyHYgiRII {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIyHYgiRII .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIyHYgiRII .col-12 {
  padding: 0;
}
.cid-uIyHYgiRII .row {
  margin: 0;
}
.cid-uIyHYgiRII .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIyHYgiRII .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYgiRII .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIyHYgiRII .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIyHYgiRII .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIyHYgiRII .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIyHYgiRII .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIyHYgiRII .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIyHYgiRII .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIyHYgiRII .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYgiRII .mbr-section-title {
  color: #221b35;
}
.cid-uIyHYgiRII .mbr-text,
.cid-uIyHYgiRII .mbr-section-btn {
  color: #221b35;
}
.cid-uIyHYheWLI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIyHYheWLI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIyHYheWLI .col-12 {
  padding: 0;
}
.cid-uIyHYheWLI .row {
  margin: 0;
}
.cid-uIyHYheWLI .card-wrapper {
  border: 1px solid #0099ff;
  height: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  padding: 2rem;
}
@media (max-width: 767px) {
  .cid-uIyHYheWLI .card-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYheWLI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIyHYheWLI .card-company-row {
  margin-top: auto;
  margin-bottom: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-uIyHYheWLI .card-company-row {
    margin-top: 0.5em;
  }
}
.cid-uIyHYheWLI .card-company-row .card-company-name {
  white-space: nowrap;
  margin-right: 5px;
  margin-bottom: 5px;
}
.cid-uIyHYheWLI .card-company-row .card-company-name:last-child {
  margin-right: 0;
}
.cid-uIyHYheWLI .card-company-name {
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  border: solid 1px currentColor;
  text-align: left;
  padding: 3px 8px;
  margin-bottom: 0;
  border-radius: 20px;
  line-height: 1;
  color: #221b35;
}
@media (max-width: 991px) {
  .cid-uIyHYheWLI .image-wrapper {
    margin-bottom: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uIyHYheWLI .image-wrapper {
    padding: 1rem;
  }
}
.cid-uIyHYheWLI .mbr-section-title {
  color: #221b35;
}
.cid-uIyHYheWLI .mbr-text,
.cid-uIyHYheWLI .mbr-section-btn {
  color: #221b35;
}
.cid-uIyHYhUw1a {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uIyHYhUw1a .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uIyHYhUw1a .row {
    text-align: center!important;
  }
}
.cid-uIyHYhUw1a .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uIyHYhUw1a .mbr-section-title {
    text-align: center;
  }
}
.cid-uIyHYhUw1a .mbr-section-subtitle {
  color: #0099ff;
}
.cid-uIyHYhUw1a .mbr-text {
  color: #000000;
  margin-top: 28px;
}
.cid-uIyHYhUw1a .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uIyHYhUw1a .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uIyHYhUw1a .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uIyHYhUw1a .btn-primary-outline,
.cid-uIyHYhUw1a .btn-secondary-outline,
.cid-uIyHYhUw1a .btn-success-outline,
.cid-uIyHYhUw1a .btn-info-outline,
.cid-uIyHYhUw1a .btn-warning-outline,
.cid-uIyHYhUw1a .btn-danger-outline,
.cid-uIyHYhUw1a .btn-white-outline,
.cid-uIyHYhUw1a .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uIyHYhUw1a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIyHYhUw1a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIyHYhUw1a .mbr-section-title,
.cid-uIyHYhUw1a .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-uIyHYi37yA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cccccc;
}
.cid-uIyHYi37yA .mbr-section-subtitle {
  color: #232323;
}
.cid-uIyHYi37yA H2 {
  color: #0099ff;
}
.cid-uIyHYibXI9 {
  padding-top: 0px;
  padding-bottom: 105px;
  background-color: #cccccc;
}
.cid-uIyHYibXI9 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uIyHYibXI9 .form-control,
.cid-uIyHYibXI9 .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIyHYibXI9 .form-control::-webkit-input-placeholder,
.cid-uIyHYibXI9 .field-input::-webkit-input-placeholder,
.cid-uIyHYibXI9 .form-control::-webkit-input-placeholder,
.cid-uIyHYibXI9 .field-input::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uIyHYibXI9 .form-control:-moz-placeholder,
.cid-uIyHYibXI9 .field-input:-moz-placeholder,
.cid-uIyHYibXI9 .form-control:-moz-placeholder,
.cid-uIyHYibXI9 .field-input:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uIyHYibXI9 .form-control:hover,
.cid-uIyHYibXI9 .field-input:hover,
.cid-uIyHYibXI9 .form-control:focus,
.cid-uIyHYibXI9 .field-input:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #232323;
  box-shadow: none;
  outline: none;
}
.cid-uIyHYibXI9 .form-control:hover::-webkit-input-placeholder,
.cid-uIyHYibXI9 .field-input:hover::-webkit-input-placeholder,
.cid-uIyHYibXI9 .form-control:focus::-webkit-input-placeholder,
.cid-uIyHYibXI9 .field-input:focus::-webkit-input-placeholder,
.cid-uIyHYibXI9 .form-control:hover::-webkit-input-placeholder,
.cid-uIyHYibXI9 .field-input:hover::-webkit-input-placeholder,
.cid-uIyHYibXI9 .form-control:focus::-webkit-input-placeholder,
.cid-uIyHYibXI9 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-uIyHYibXI9 .form-control:hover:-moz-placeholder,
.cid-uIyHYibXI9 .field-input:hover:-moz-placeholder,
.cid-uIyHYibXI9 .form-control:focus:-moz-placeholder,
.cid-uIyHYibXI9 .field-input:focus:-moz-placeholder,
.cid-uIyHYibXI9 .form-control:hover:-moz-placeholder,
.cid-uIyHYibXI9 .field-input:hover:-moz-placeholder,
.cid-uIyHYibXI9 .form-control:focus:-moz-placeholder,
.cid-uIyHYibXI9 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-uIyHYibXI9 .jq-number__spin:hover,
.cid-uIyHYibXI9 .jq-number__spin:focus {
  background-color: #0099ff;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-uIyHYibXI9 .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-uIyHYibXI9 .jq-selectbox li,
.cid-uIyHYibXI9 .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-uIyHYibXI9 .jq-selectbox li:hover,
.cid-uIyHYibXI9 .jq-selectbox li.selected {
  background-color: #0099ff;
  color: #000000;
}
.cid-uIyHYibXI9 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-uIyHYibXI9 .jq-number__spin.minus:hover:after,
.cid-uIyHYibXI9 .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-uIyHYibXI9 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-uIyHYibXI9 .jq-number__spin.minus:after,
.cid-uIyHYibXI9 .jq-number__spin.plus:after {
  border-top-color: #0099ff;
  border-bottom-color: #0099ff;
}
.cid-uIyHYibXI9 input::-webkit-clear-button {
  display: none;
}
.cid-uIyHYibXI9 input::-webkit-inner-spin-button {
  display: none;
}
.cid-uIyHYibXI9 input::-webkit-outer-spin-button {
  display: none;
}
.cid-uIyHYibXI9 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-uIyHYibXI9 H4 {
  text-align: left;
}
.cid-uIyHYisFTq {
  padding-top: 7rem;
  padding-bottom: 4rem;
  background-color: #f8f8f8;
}
@media (min-width: 1500px) {
  .cid-uIyHYisFTq .container {
    max-width: 1400px;
  }
}
.cid-uIyHYisFTq .wave-container {
  position: absolute;
  left: 0;
  top: -110px;
  height: 113px;
  overflow: hidden;
  width: 100%;
}
.cid-uIyHYisFTq .svg-top {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 50px;
  transform-origin: bottom;
  animation: 1.5s ease-in-out infinite alternate svg-wave;
  fill: #0099ff;
}
.cid-uIyHYisFTq .svg-top .st0 {
  fill: #f8f8f8;
}
@media (max-width: 992px) {
  .cid-uIyHYisFTq .svg-top {
    width: 1000px;
  }
}
@keyframes svg-wave {
  from {
    transform: scaleX(1) scaleY(1.1);
  }
  to {
    transform: scaleX(1) scaleY(1.6);
  }
}
.cid-uIyHYisFTq .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #1a449a;
  margin-bottom: 2rem;
}
.cid-uIyHYisFTq .card-wrapper {
  margin-top: 3rem;
}
.cid-uIyHYisFTq .row {
  justify-content: center;
}
.cid-uIyHYisFTq .mbr-section-title {
  color: #232323;
}
.cid-uIyHYisFTq .card-title,
.cid-uIyHYisFTq .iconfont-wrapper {
  color: #0099ff;
}
.cid-uIyHYisFTq .card-text {
  color: #232323;
}
.cid-uIyHYiLBML {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uIyHYiLBML .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uIyHYiLBML .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uIyHYiLBML .container {
    padding: 0 16px;
  }
}
.cid-uIyHYiLBML .row {
  position: relative;
  z-index: 1;
}
.cid-uIyHYiLBML .title-wrapper {
  margin-bottom: 80px;
}
.cid-uIyHYiLBML .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uIyHYiLBML .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uIyHYiLBML .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uIyHYiLBML .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uIyHYiLBML .embla__slide .slide-content {
  width: 100%;
}
.cid-uIyHYiLBML .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uIyHYiLBML .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uIyHYiLBML .embla__button--next,
.cid-uIyHYiLBML .embla__button--prev {
  display: flex;
}
.cid-uIyHYiLBML .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uIyHYiLBML .embla__button {
    display: none;
  }
}
.cid-uIyHYiLBML .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uIyHYiLBML .embla__button:hover {
  opacity: .7 !important;
}
.cid-uIyHYiLBML .embla__button.embla__button--prev {
  left: 0;
}
.cid-uIyHYiLBML .embla__button.embla__button--next {
  right: 0;
}
.cid-uIyHYiLBML .embla {
  position: relative;
  width: 100%;
}
.cid-uIyHYiLBML .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uIyHYiLBML .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uIyHYiLBML .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uIyHYiLBML .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uIyHYiLBML .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uIyHYiLBML .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uIyHYj9aWd {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uIyHYj9aWd .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uIyHYj9aWd .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uIyHYj9aWd .mbr-text {
  color: #767676;
}
.cid-uIyHYji09I {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uIyHYji09I .mbr-fallback-image.disabled {
  display: none;
}
.cid-uIyHYji09I .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uIyHYji09I .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uIyHYji09I .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uIyHYji09I .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uIyHYji09I .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uIyHYji09I .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uIyHYji09I .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uIyHYji09I .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uIyHYji09I .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uIyHYji09I .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uIyHYji09I .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uIyHYji09I .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uIyHYji09I .list-box {
  width: 100%;
}
.cid-uIyHYji09I .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uIyHYji09I .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uIyHYji09I .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uIyHYji09I .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uIyHYji09I .list a:hover:before {
  background-position: left !important;
}
.cid-uIyHYji09I .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uIyHYji09I .news-item {
  width: 100%;
}
.cid-uIyHYji09I .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uIyHYji09I .news-title {
  color: #303030;
}
.cid-uIyHYji09I .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uJZP3YUD8p .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uJZP3YUD8p .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uJZP3YUD8p a {
  font-style: normal;
}
.cid-uJZP3YUD8p .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uJZP3YUD8p .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uJZP3YUD8p .nav-item:focus,
.cid-uJZP3YUD8p .nav-link:focus {
  outline: none;
}
.cid-uJZP3YUD8p .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uJZP3YUD8p .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uJZP3YUD8p .menu-logo {
  margin-right: auto;
}
.cid-uJZP3YUD8p .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uJZP3YUD8p .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uJZP3YUD8p .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uJZP3YUD8p .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uJZP3YUD8p .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uJZP3YUD8p .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uJZP3YUD8p .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uJZP3YUD8p .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uJZP3YUD8p .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uJZP3YUD8p .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uJZP3YUD8p .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uJZP3YUD8p .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uJZP3YUD8p .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uJZP3YUD8p .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uJZP3YUD8p .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uJZP3YUD8p .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uJZP3YUD8p .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uJZP3YUD8p .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uJZP3YUD8p .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uJZP3YUD8p .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uJZP3YUD8p .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uJZP3YUD8p .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uJZP3YUD8p .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uJZP3YUD8p button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uJZP3YUD8p button.navbar-toggler:focus {
  outline: none;
}
.cid-uJZP3YUD8p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uJZP3YUD8p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uJZP3YUD8p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uJZP3YUD8p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uJZP3YUD8p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uJZP3YUD8p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJZP3YUD8p nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uJZP3YUD8p nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uJZP3YUD8p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uJZP3YUD8p .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uJZP3YUD8p .collapsed .btn {
  display: -webkit-flex;
}
.cid-uJZP3YUD8p .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uJZP3YUD8p .collapsed .navbar-collapse.collapsing,
.cid-uJZP3YUD8p .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uJZP3YUD8p .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uJZP3YUD8p .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uJZP3YUD8p .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uJZP3YUD8p .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uJZP3YUD8p .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uJZP3YUD8p .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uJZP3YUD8p .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uJZP3YUD8p .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uJZP3YUD8p .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uJZP3YUD8p .collapsed button.navbar-toggler {
  display: block;
}
.cid-uJZP3YUD8p .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uJZP3YUD8p .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uJZP3YUD8p .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uJZP3YUD8p .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uJZP3YUD8p .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uJZP3YUD8p .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uJZP3YUD8p .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uJZP3YUD8p img {
    height: 3.8rem !important;
  }
  .cid-uJZP3YUD8p .btn {
    display: -webkit-flex;
  }
  .cid-uJZP3YUD8p button.navbar-toggler {
    display: block;
  }
  .cid-uJZP3YUD8p .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uJZP3YUD8p .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uJZP3YUD8p .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uJZP3YUD8p .navbar-collapse.collapsing,
  .cid-uJZP3YUD8p .navbar-collapse.show {
    display: block !important;
  }
  .cid-uJZP3YUD8p .navbar-collapse.collapsing .navbar-nav,
  .cid-uJZP3YUD8p .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uJZP3YUD8p .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uJZP3YUD8p .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uJZP3YUD8p .navbar-collapse.collapsing .navbar-buttons,
  .cid-uJZP3YUD8p .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uJZP3YUD8p .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uJZP3YUD8p .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uJZP3YUD8p .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uJZP3YUD8p .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uJZP3YUD8p .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uJZP3YUD8p .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uJZP3YUD8p .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uJZP3YUD8p .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uJZP3YUD8p .nav-link:hover,
.cid-uJZP3YUD8p .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uJZP3Z85CP {
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-uJZP3Z85CP .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uJZP3Z85CP .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uJZP3Z85CP .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uJZP3Z85CP H3 {
  text-align: right;
  color: #ffffff;
}
.cid-uJZP3Z85CP .mbr-text,
.cid-uJZP3Z85CP .mbr-section-btn {
  color: #ffffff;
}
.cid-uJZP3ZfIIK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJZP3ZfIIK .container {
  max-width: 1040px;
}
@media (max-width: 575px) {
  .cid-uJZP3ZfIIK .row {
    text-align: center!important;
  }
}
.cid-uJZP3ZfIIK .mbr-section-title {
  color: #000000;
}
@media (max-width: 575px) {
  .cid-uJZP3ZfIIK .mbr-section-title {
    text-align: center;
  }
}
.cid-uJZP3ZfIIK .mbr-section-subtitle {
  color: #0099ff;
}
.cid-uJZP3ZfIIK .mbr-text {
  color: #0a1c44;
  margin-top: 28px;
  text-align: center;
}
.cid-uJZP3ZfIIK .mbr-section-btn {
  margin-top: 18px;
}
@media (max-width: 575px) {
  .cid-uJZP3ZfIIK .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uJZP3ZfIIK .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uJZP3ZfIIK .btn-primary-outline,
.cid-uJZP3ZfIIK .btn-secondary-outline,
.cid-uJZP3ZfIIK .btn-success-outline,
.cid-uJZP3ZfIIK .btn-info-outline,
.cid-uJZP3ZfIIK .btn-warning-outline,
.cid-uJZP3ZfIIK .btn-danger-outline,
.cid-uJZP3ZfIIK .btn-white-outline,
.cid-uJZP3ZfIIK .btn-black-outline {
  padding: 0;
  min-height: auto;
}
.cid-uJZP3ZfIIK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJZP3ZfIIK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJZP3ZfIIK .mbr-section-title,
.cid-uJZP3ZfIIK .mbr-section-btn {
  color: #232323;
  text-align: center;
}
.cid-uJZP3ZnrI8 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uJZP3ZnrI8 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uJZP3ZnrI8 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uJZP3ZnrI8 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uJZP3ZnrI8 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uJZP3ZnrI8 .card-wrapper:hover {
  background: #cccccc;
}
.cid-uJZP3ZnrI8 .card-title,
.cid-uJZP3ZnrI8 .card-box {
  color: #000000;
}
.cid-uJZP3ZnrI8 .main-title,
.cid-uJZP3ZnrI8 .title-col {
  text-align: center;
  color: #000000;
}
.cid-uJZP3ZnrI8 .card-text {
  color: #232323;
}
.cid-uJZP3ZnrI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJZP3ZnrI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJZP3ZBxmn {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJZP3ZBxmn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJZP3ZBxmn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJZP3ZBxmn a {
  font-weight: bold;
}
.cid-uJZP3ZBxmn .mbr-section-title {
  color: #151515;
  text-align: center;
}
.cid-uJZP3ZBxmn .mbr-text,
.cid-uJZP3ZBxmn .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uJZP3ZBxmn .mbr-section-subtitle {
  text-align: center;
}
.cid-uJZP3ZJlEH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uJZP3ZJlEH .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uJZP3ZJlEH .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uJZP3ZJlEH .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uJZP3ZJlEH .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uJZP3ZJlEH .card-wrapper:hover {
  background: #cccccc;
}
.cid-uJZP3ZJlEH .card-title,
.cid-uJZP3ZJlEH .card-box {
  color: #0099ff;
}
.cid-uJZP3ZJlEH .main-title,
.cid-uJZP3ZJlEH .title-col {
  text-align: center;
  color: #000000;
}
.cid-uJZP3ZJlEH .card-text {
  color: #232323;
}
.cid-uJZP3ZJlEH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJZP3ZJlEH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJZP3ZZT8A {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uJZP3ZZT8A h3 {
  text-align: center;
}
.cid-uJZP3ZZT8A .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-uJZP3ZZT8A .mbr-content-text {
  color: #767676;
}
.cid-uJZP3ZZT8A .panel-item {
  background: #ffffff;
}
.cid-uJZP3ZZT8A .card {
  word-wrap: break-word;
}
.cid-uJZP3ZZT8A .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-uJZP40badC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uJZP40badC .mbr-section-subtitle {
  color: #232323;
}
.cid-uJZP40badC H2 {
  color: #000000;
}
.cid-uJZP40i6qU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uJZP40i6qU h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uJZP40i6qU p {
  color: #767676;
  text-align: left;
}
.cid-uJZP40i6qU .card-box {
  padding-top: 2rem;
}
.cid-uJZP40i6qU .card-wrapper {
  height: 100%;
}
.cid-uJZP40urka {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-uJZP40urka h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uJZP40urka p {
  color: #767676;
  text-align: left;
}
.cid-uJZP40urka .card-box {
  padding-top: 2rem;
}
.cid-uJZP40urka .card-wrapper {
  height: 100%;
}
.cid-uJZP40FGnT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-uJZP40FGnT h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uJZP40FGnT p {
  color: #767676;
  text-align: left;
}
.cid-uJZP40FGnT .card-box {
  padding-top: 2rem;
}
.cid-uJZP40FGnT .card-wrapper {
  height: 100%;
}
.cid-uJZP40TtzH {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-uJZP40TtzH h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uJZP40TtzH p {
  color: #767676;
  text-align: left;
}
.cid-uJZP40TtzH .card-box {
  padding-top: 2rem;
}
.cid-uJZP40TtzH .card-wrapper {
  height: 100%;
}
.cid-uJZP414kYJ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uJZP414kYJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uJZP414kYJ .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uJZP414kYJ .mbr-text {
  color: #767676;
}
.cid-uJZP41b5Kb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uJZP41b5Kb .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uJZP41b5Kb .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uJZP41b5Kb .container {
    padding: 0 16px;
  }
}
.cid-uJZP41b5Kb .row {
  position: relative;
  z-index: 1;
}
.cid-uJZP41b5Kb .title-wrapper {
  margin-bottom: 80px;
}
.cid-uJZP41b5Kb .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uJZP41b5Kb .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uJZP41b5Kb .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uJZP41b5Kb .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uJZP41b5Kb .embla__slide .slide-content {
  width: 100%;
}
.cid-uJZP41b5Kb .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uJZP41b5Kb .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uJZP41b5Kb .embla__button--next,
.cid-uJZP41b5Kb .embla__button--prev {
  display: flex;
}
.cid-uJZP41b5Kb .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uJZP41b5Kb .embla__button {
    display: none;
  }
}
.cid-uJZP41b5Kb .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uJZP41b5Kb .embla__button:hover {
  opacity: .7 !important;
}
.cid-uJZP41b5Kb .embla__button.embla__button--prev {
  left: 0;
}
.cid-uJZP41b5Kb .embla__button.embla__button--next {
  right: 0;
}
.cid-uJZP41b5Kb .embla {
  position: relative;
  width: 100%;
}
.cid-uJZP41b5Kb .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uJZP41b5Kb .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uJZP41b5Kb .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uJZP41b5Kb .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uJZP41b5Kb .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uJZP41b5Kb .mbr-desc {
  color: #6f6f6f;
  text-align: center;
}
.cid-uJZP41AwmQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uJZP41AwmQ .title {
  margin-bottom: 2rem;
}
.cid-uJZP41AwmQ .mbr-section-subtitle {
  color: #767676;
}
.cid-uJZP41AwmQ a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uJZP41AwmQ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uJZP41AwmQ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uJZP41AwmQ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uJZP41Kz5W {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uJZP41Kz5W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJZP41Kz5W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJZP41Kz5W .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uJZP41Kz5W .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uJZP41Kz5W .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uJZP41Kz5W .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uJZP41Kz5W .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uJZP41Kz5W .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uJZP41Kz5W .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uJZP41Kz5W .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uJZP41Kz5W .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uJZP41Kz5W .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uJZP41Kz5W .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uJZP41Kz5W .list-box {
  width: 100%;
}
.cid-uJZP41Kz5W .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uJZP41Kz5W .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uJZP41Kz5W .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uJZP41Kz5W .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uJZP41Kz5W .list a:hover:before {
  background-position: left !important;
}
.cid-uJZP41Kz5W .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uJZP41Kz5W .news-item {
  width: 100%;
}
.cid-uJZP41Kz5W .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uJZP41Kz5W .news-title {
  color: #303030;
}
.cid-uJZP41Kz5W .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uY2LBYXY8U {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/carrillon-logo.jpg");
}
.cid-uWaUwlkN81 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uWaUwlkN81 .mbr-section-subtitle {
  color: #767676;
}
.cid-uWaUwlkN81 .container-table {
  margin: 0 auto;
}
.cid-uWaUwlkN81 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uWaUwlkN81 .dataTables_wrapper {
  display: block;
}
.cid-uWaUwlkN81 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uWaUwlkN81 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uWaUwlkN81 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #149dcc;
  margin-bottom: 0;
}
.cid-uWaUwlkN81 table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #149dcc;
  transition: all .2s;
}
.cid-uWaUwlkN81 table th:hover {
  background: #149dcc;
  color: #ffffff;
}
.cid-uWaUwlkN81 table td {
  border: 1px solid #149dcc;
}
.cid-uWaUwlkN81 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uWaUwlkN81 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uWaUwlkN81 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uWaUwlkN81 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uWaUwlkN81 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uWaUwlkN81 .dataTables_filter {
    text-align: center;
  }
  .cid-uWaUwlkN81 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uWaUwlkN81 .head-item {
  color: #232323;
  text-align: center;
}
.cid-uWaUwlkN81 .body-item {
  color: #000000;
  text-align: left;
}
.cid-uWaUwlkN81 .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uWaUwlkN81 .head-item1 {
  color: #07290c;
}
.cid-uWaUwlkN81 .body-item1 {
  color: #232323;
}
.cid-uWaeyFJKYJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uWaeyFJKYJ h3 {
  text-align: center;
  font-weight: 300;
}
.cid-uWaeyFJKYJ .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-uWaeyFJKYJ .mbr-section-subtitle {
  color: #767676;
}
.cid-uWaeyFJKYJ .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uWaeyFJKYJ ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-uWaeyFJKYJ path {
  stroke: #4fd13b;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWaeyFJKYJ .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-uWaeyFUymm {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uWaeyG1PbV {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-uWaeyG1PbV .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uWaeyG1PbV .wrapper {
  position: relative;
}
.cid-uWaeyG1PbV .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uWaeyG1PbV .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uWaeyG1PbV .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uWaeyG1PbV .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uWaeyG1PbV .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uWaeyG1PbV .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uWaeyG1PbV .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uWaeyG1PbV .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uWaeyG1PbV .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uWaeyG1PbV .img2 {
    width: 400px;
  }
  .cid-uWaeyG1PbV .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uWaeyG1PbV .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWaeyG1PbV .img2 {
    width: 400px;
  }
  .cid-uWaeyG1PbV .img1 {
    padding-right: 4rem;
  }
  .cid-uWaeyG1PbV .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uWaeyG1PbV .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uWaeyG1PbV .img2 {
    width: 200px;
  }
  .cid-uWaeyG1PbV .container-fluid {
    padding: 0 1rem;
  }
  .cid-uWaeyG1PbV .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uWakkljxYC {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-uWakkljxYC .image-block {
  margin: auto;
}
.cid-uWakkljxYC figcaption {
  position: relative;
}
.cid-uWakkljxYC figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-uWakkljxYC .image-block {
    width: 100% !important;
  }
}
.cid-uWakH2lg4S {
  padding-top: 120px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-uWakH2lg4S .media-content .btn-bgr {
  z-index: 0;
}
.cid-uWakH2lg4S .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
.cid-uWakH2lg4S h3 {
  color: #000000;
  font-weight: 300;
}
.cid-uWakH2lg4S p {
  color: #464646;
}
.cid-uWakH2lg4S h2 {
  color: #000000;
}
.cid-uWakH2lg4S .media-content {
  padding-right: 1.5rem;
  padding-left: 0;
}
.cid-uWakH2lg4S .mbr-section-btn {
  margin-left: -0.8rem;
}
.cid-uWakH2lg4S .mbr-figure {
  padding-right: 1rem;
}
@media (min-width: 500px) {
  .cid-uWakH2lg4S .mbr-figure {
    padding-left: 2rem;
  }
}
@media (max-width: 499px) {
  .cid-uWakH2lg4S .mbr-figure {
    padding-top: 1rem;
    padding-left: 2rem;
    padding-right: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-uWakH2lg4S .mbr-figure {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .cid-uWakH2lg4S .mbr-text {
    text-align: center;
  }
}
.cid-uWakH2lg4S .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWakH2lg4S .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWakko7ZiB {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uWakkofNLQ {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-uWakkofNLQ .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uWakkofNLQ .wrapper {
  position: relative;
}
.cid-uWakkofNLQ .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uWakkofNLQ .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uWakkofNLQ .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uWakkofNLQ .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uWakkofNLQ .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uWakkofNLQ .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uWakkofNLQ .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uWakkofNLQ .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uWakkofNLQ .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uWakkofNLQ .img2 {
    width: 400px;
  }
  .cid-uWakkofNLQ .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uWakkofNLQ .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWakkofNLQ .img2 {
    width: 400px;
  }
  .cid-uWakkofNLQ .img1 {
    padding-right: 4rem;
  }
  .cid-uWakkofNLQ .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uWakkofNLQ .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uWakkofNLQ .img2 {
    width: 200px;
  }
  .cid-uWakkofNLQ .container-fluid {
    padding: 0 1rem;
  }
  .cid-uWakkofNLQ .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uWakkorsyq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uWakkorsyq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWakkorsyq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWakkorsyq .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uWakkorsyq .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uWakkorsyq .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uWakkorsyq .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uWakkorsyq .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uWakkorsyq .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uWakkorsyq .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uWakkorsyq .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uWakkorsyq .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uWakkorsyq .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uWakkorsyq .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uWakkorsyq .list-box {
  width: 100%;
}
.cid-uWakkorsyq .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uWakkorsyq .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uWakkorsyq .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uWakkorsyq .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uWakkorsyq .list a:hover:before {
  background-position: left !important;
}
.cid-uWakkorsyq .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uWakkorsyq .news-item {
  width: 100%;
}
.cid-uWakkorsyq .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uWakkorsyq .news-title {
  color: #303030;
}
.cid-uWakkorsyq .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uY2LxW5PQm {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/carrillon-logo.jpg");
}
.cid-uWaQWHObBn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uWaQWHObBn .mbr-section-subtitle {
  color: #767676;
}
.cid-uWaQWHObBn .container-table {
  margin: 0 auto;
}
.cid-uWaQWHObBn .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uWaQWHObBn .dataTables_wrapper {
  display: block;
}
.cid-uWaQWHObBn .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uWaQWHObBn .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uWaQWHObBn table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #149dcc;
  margin-bottom: 0;
}
.cid-uWaQWHObBn table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #149dcc;
  transition: all .2s;
}
.cid-uWaQWHObBn table th:hover {
  background: #149dcc;
  color: #ffffff;
}
.cid-uWaQWHObBn table td {
  border: 1px solid #149dcc;
}
.cid-uWaQWHObBn .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uWaQWHObBn .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uWaQWHObBn .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uWaQWHObBn .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uWaQWHObBn .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uWaQWHObBn .dataTables_filter {
    text-align: center;
  }
  .cid-uWaQWHObBn .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uWaQWHObBn .head-item {
  color: #232323;
  text-align: center;
}
.cid-uWaQWHObBn .body-item {
  color: #151515;
  text-align: left;
}
.cid-uWaQWHObBn .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uWaQWHObBn .head-item1 {
  color: #07290c;
}
.cid-uWaQWHObBn .body-item1 {
  color: #232323;
}
.cid-uWamStCvaD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uWamStCvaD h3 {
  text-align: center;
  font-weight: 300;
}
.cid-uWamStCvaD .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-uWamStCvaD .mbr-section-subtitle {
  color: #767676;
}
.cid-uWamStCvaD .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uWamStCvaD ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-uWamStCvaD path {
  stroke: #4fd13b;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWamStCvaD .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-uWamStREkj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uWamStZbY0 {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-uWamStZbY0 .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uWamStZbY0 .wrapper {
  position: relative;
}
.cid-uWamStZbY0 .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uWamStZbY0 .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uWamStZbY0 .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uWamStZbY0 .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uWamStZbY0 .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uWamStZbY0 .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uWamStZbY0 .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uWamStZbY0 .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uWamStZbY0 .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uWamStZbY0 .img2 {
    width: 400px;
  }
  .cid-uWamStZbY0 .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uWamStZbY0 .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWamStZbY0 .img2 {
    width: 400px;
  }
  .cid-uWamStZbY0 .img1 {
    padding-right: 4rem;
  }
  .cid-uWamStZbY0 .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uWamStZbY0 .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uWamStZbY0 .img2 {
    width: 200px;
  }
  .cid-uWamStZbY0 .container-fluid {
    padding: 0 1rem;
  }
  .cid-uWamStZbY0 .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uWamSuaUVw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uWamSuaUVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWamSuaUVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWamSuaUVw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uWamSuaUVw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uWamSuaUVw .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uWamSuaUVw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uWamSuaUVw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uWamSuaUVw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uWamSuaUVw .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uWamSuaUVw .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uWamSuaUVw .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uWamSuaUVw .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uWamSuaUVw .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uWamSuaUVw .list-box {
  width: 100%;
}
.cid-uWamSuaUVw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uWamSuaUVw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uWamSuaUVw .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uWamSuaUVw .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uWamSuaUVw .list a:hover:before {
  background-position: left !important;
}
.cid-uWamSuaUVw .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uWamSuaUVw .news-item {
  width: 100%;
}
.cid-uWamSuaUVw .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uWamSuaUVw .news-title {
  color: #303030;
}
.cid-uWamSuaUVw .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uY2LFuJgaf {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/carrillon-logo.jpg");
}
.cid-uWaFe37rKU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-uWaFe37rKU .mbr-section-subtitle {
  color: #767676;
}
.cid-uWaFe37rKU .container-table {
  margin: 0 auto;
}
.cid-uWaFe37rKU .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-uWaFe37rKU .dataTables_wrapper {
  display: block;
}
.cid-uWaFe37rKU .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-uWaFe37rKU .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-uWaFe37rKU table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #149dcc;
  margin-bottom: 0;
}
.cid-uWaFe37rKU table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #149dcc;
  transition: all .2s;
}
.cid-uWaFe37rKU table th:hover {
  background: #149dcc;
  color: #ffffff;
}
.cid-uWaFe37rKU table td {
  border: 1px solid #149dcc;
}
.cid-uWaFe37rKU .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-uWaFe37rKU .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-uWaFe37rKU .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-uWaFe37rKU .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-uWaFe37rKU .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-uWaFe37rKU .dataTables_filter {
    text-align: center;
  }
  .cid-uWaFe37rKU .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-uWaFe37rKU .head-item {
  color: #232323;
  text-align: center;
}
.cid-uWaFe37rKU .body-item {
  color: #000000;
  text-align: left;
}
.cid-uWaFe37rKU .mbr-section-title {
  color: #212529;
  text-align: center;
}
.cid-uWaFe37rKU .head-item1 {
  color: #07290c;
}
.cid-uWaFe37rKU .body-item1 {
  color: #232323;
}
.cid-uWaybTaSGA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-uWaybTaSGA h3 {
  text-align: center;
  font-weight: 300;
}
.cid-uWaybTaSGA .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-uWaybTaSGA .mbr-section-subtitle {
  color: #767676;
}
.cid-uWaybTaSGA .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uWaybTaSGA ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-uWaybTaSGA path {
  stroke: #4fd13b;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWaybTaSGA .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-uWaybTnCOO {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uWaybTvpMP {
  padding-top: 60px;
  padding-bottom: 135px;
  background-color: #efefef;
}
.cid-uWaybTvpMP .container-fluid {
  position: relative;
  padding-right: 10.4rem;
}
.cid-uWaybTvpMP .wrapper {
  position: relative;
}
.cid-uWaybTvpMP .content {
  padding-left: 6rem;
  padding-right: 2rem;
}
.cid-uWaybTvpMP .img1 {
  width: 100%;
  padding-right: 6rem;
  object-fit: cover;
  height: 800px;
}
.cid-uWaybTvpMP .mbr-iconfont {
  font-size: 1.8rem;
  color: #232323;
}
.cid-uWaybTvpMP .mbr-iconfont:hover {
  cursor: pointer;
}
.cid-uWaybTvpMP .icon1 {
  position: absolute;
  top: 2rem;
  right: 0rem;
}
.cid-uWaybTvpMP .icon2 {
  position: absolute;
  top: 5rem;
  right: 0rem;
}
.cid-uWaybTvpMP .img2 {
  position: absolute;
  bottom: -4.6rem;
  right: 0;
  width: 400px;
  box-shadow: 2.5px 4.3px 62px 0 rgba(0, 0, 0, 0.22);
}
.cid-uWaybTvpMP .title {
  position: absolute;
  right: 0rem;
  transform: rotate(90deg);
  transform-origin: top right;
  top: 26rem;
  padding: 0;
}
.cid-uWaybTvpMP .title:before {
  content: '';
  position: absolute;
  background: currentColor;
  top: 50%;
  left: -8.6rem;
  width: 100px;
  height: 2px;
}
@media (max-width: 1400px) {
  .cid-uWaybTvpMP .img2 {
    width: 400px;
  }
  .cid-uWaybTvpMP .container-fluid {
    padding-right: 2rem;
    padding-left: 2rem;
  }
  .cid-uWaybTvpMP .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-uWaybTvpMP .img2 {
    width: 400px;
  }
  .cid-uWaybTvpMP .img1 {
    padding-right: 4rem;
  }
  .cid-uWaybTvpMP .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uWaybTvpMP .img1 {
    height: 600px;
    padding-right: 3rem;
  }
  .cid-uWaybTvpMP .img2 {
    width: 200px;
  }
  .cid-uWaybTvpMP .container-fluid {
    padding: 0 1rem;
  }
  .cid-uWaybTvpMP .content {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-uWaybTHIHp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uWaybTHIHp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWaybTHIHp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWaybTHIHp .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uWaybTHIHp .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uWaybTHIHp .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uWaybTHIHp .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uWaybTHIHp .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uWaybTHIHp .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uWaybTHIHp .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uWaybTHIHp .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uWaybTHIHp .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uWaybTHIHp .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uWaybTHIHp .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uWaybTHIHp .list-box {
  width: 100%;
}
.cid-uWaybTHIHp .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uWaybTHIHp .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uWaybTHIHp .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uWaybTHIHp .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uWaybTHIHp .list a:hover:before {
  background-position: left !important;
}
.cid-uWaybTHIHp .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uWaybTHIHp .news-item {
  width: 100%;
}
.cid-uWaybTHIHp .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uWaybTHIHp .news-title {
  color: #303030;
}
.cid-uWaybTHIHp .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uWmeQNFYaJ .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uWmeQNFYaJ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uWmeQNFYaJ a {
  font-style: normal;
}
.cid-uWmeQNFYaJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uWmeQNFYaJ .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uWmeQNFYaJ .nav-item:focus,
.cid-uWmeQNFYaJ .nav-link:focus {
  outline: none;
}
.cid-uWmeQNFYaJ .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uWmeQNFYaJ .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uWmeQNFYaJ .menu-logo {
  margin-right: auto;
}
.cid-uWmeQNFYaJ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uWmeQNFYaJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uWmeQNFYaJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uWmeQNFYaJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uWmeQNFYaJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uWmeQNFYaJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uWmeQNFYaJ .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uWmeQNFYaJ .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uWmeQNFYaJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uWmeQNFYaJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uWmeQNFYaJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uWmeQNFYaJ .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uWmeQNFYaJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uWmeQNFYaJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWmeQNFYaJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uWmeQNFYaJ .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uWmeQNFYaJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uWmeQNFYaJ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uWmeQNFYaJ .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uWmeQNFYaJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uWmeQNFYaJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uWmeQNFYaJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uWmeQNFYaJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uWmeQNFYaJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uWmeQNFYaJ button.navbar-toggler:focus {
  outline: none;
}
.cid-uWmeQNFYaJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uWmeQNFYaJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uWmeQNFYaJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uWmeQNFYaJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uWmeQNFYaJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uWmeQNFYaJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWmeQNFYaJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uWmeQNFYaJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uWmeQNFYaJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWmeQNFYaJ .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uWmeQNFYaJ .collapsed .btn {
  display: -webkit-flex;
}
.cid-uWmeQNFYaJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.collapsing,
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uWmeQNFYaJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uWmeQNFYaJ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uWmeQNFYaJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-uWmeQNFYaJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uWmeQNFYaJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uWmeQNFYaJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uWmeQNFYaJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uWmeQNFYaJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uWmeQNFYaJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uWmeQNFYaJ .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uWmeQNFYaJ img {
    height: 3.8rem !important;
  }
  .cid-uWmeQNFYaJ .btn {
    display: -webkit-flex;
  }
  .cid-uWmeQNFYaJ button.navbar-toggler {
    display: block;
  }
  .cid-uWmeQNFYaJ .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uWmeQNFYaJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uWmeQNFYaJ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uWmeQNFYaJ .navbar-collapse.collapsing,
  .cid-uWmeQNFYaJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-uWmeQNFYaJ .navbar-collapse.collapsing .navbar-nav,
  .cid-uWmeQNFYaJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uWmeQNFYaJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uWmeQNFYaJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uWmeQNFYaJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-uWmeQNFYaJ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uWmeQNFYaJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uWmeQNFYaJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uWmeQNFYaJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uWmeQNFYaJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uWmeQNFYaJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uWmeQNFYaJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uWmeQNFYaJ .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uWmeQNFYaJ .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uWmeQNFYaJ .nav-link:hover,
.cid-uWmeQNFYaJ .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uWmeQNYya9 {
  background-image: url("../../../assets/images/mbr-3-1920x1280.jpg");
}
.cid-uWmeQNYya9 .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uWmeQNYya9 .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uWmeQNYya9 .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uWmeQNYya9 H3 {
  text-align: right;
  color: #ffffff;
}
.cid-uWmeQNYya9 .mbr-text,
.cid-uWmeQNYya9 .mbr-section-btn {
  color: #55b4d4;
}
.cid-uWmeQOaPfX {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWmeQOaPfX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWmeQOaPfX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWmeQOaPfX a {
  font-weight: bold;
}
.cid-uWmeQOaPfX .mbr-section-title {
  color: #151515;
  text-align: center;
}
.cid-uWmeQOaPfX .mbr-text,
.cid-uWmeQOaPfX .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uWmeQOaPfX .mbr-section-subtitle {
  text-align: center;
}
.cid-uWmeQOygDb {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWmeQOygDb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWmeQOygDb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWmeQOygDb a {
  font-weight: bold;
}
.cid-uWmeQOygDb .mbr-section-title {
  color: #151515;
  text-align: center;
}
.cid-uWmeQOygDb .mbr-text,
.cid-uWmeQOygDb .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uWmeQOygDb .mbr-section-subtitle {
  text-align: center;
}
.cid-uWmeQRgcGp {
  padding-top: 1rem;
  padding-bottom: 6rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uWmeQRgcGp .container-fluid {
  padding: 0 24px;
}
@media (max-width: 768px) {
  .cid-uWmeQRgcGp .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {
  .cid-uWmeQRgcGp .container {
    padding: 0 16px;
  }
}
.cid-uWmeQRgcGp .row {
  position: relative;
  z-index: 1;
}
.cid-uWmeQRgcGp .title-wrapper {
  margin-bottom: 80px;
}
.cid-uWmeQRgcGp .title-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uWmeQRgcGp .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uWmeQRgcGp .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 300px;
  max-width: 300px;
  padding: 0 12px;
}
@media (max-width: 767px) {
  .cid-uWmeQRgcGp .embla__slide {
    min-width: 100%;
    max-width: 100%;
    padding: 0 16px;
  }
}
.cid-uWmeQRgcGp .embla__slide .slide-content {
  width: 100%;
}
.cid-uWmeQRgcGp .embla__slide .slide-content .item-wrapper .item-img {
  border-radius: 14px;
  background-color: #ffffff;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uWmeQRgcGp .embla__slide .slide-content .item-wrapper .item-img img {
  height: 120px;
  object-fit: contain;
}
.cid-uWmeQRgcGp .embla__button--next,
.cid-uWmeQRgcGp .embla__button--prev {
  display: flex;
}
.cid-uWmeQRgcGp .embla__button {
  bottom: 0;
  width: 32px;
  height: 32px;
  margin-top: -1.5rem;
  font-size: 20px;
  background-color: transparent !important;
  color: #0099ff !important;
  border: none !important;
  border-radius: 0;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
@media (max-width: 768px) {
  .cid-uWmeQRgcGp .embla__button {
    display: none;
  }
}
.cid-uWmeQRgcGp .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-uWmeQRgcGp .embla__button:hover {
  opacity: .7 !important;
}
.cid-uWmeQRgcGp .embla__button.embla__button--prev {
  left: 0;
}
.cid-uWmeQRgcGp .embla__button.embla__button--next {
  right: 0;
}
.cid-uWmeQRgcGp .embla {
  position: relative;
  width: 100%;
}
.cid-uWmeQRgcGp .embla__viewport {
  overflow: visible;
  width: 100%;
  margin-right: 1rem;
}
.cid-uWmeQRgcGp .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uWmeQRgcGp .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uWmeQRgcGp .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uWmeQRgcGp .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uWmeQRgcGp .mbr-desc {
  color: #000000;
  text-align: center;
}
.cid-uWmeQPymfG {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uWmeQPymfG h3 {
  text-align: center;
}
.cid-uWmeQPymfG .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-uWmeQPymfG .mbr-content-text {
  color: #767676;
}
.cid-uWmeQPymfG .panel-item {
  background: #ffffff;
}
.cid-uWmeQPymfG .card {
  word-wrap: break-word;
}
.cid-uWmeQPymfG .mbr-iconfont {
  font-size: 80px;
  color: #149dcc;
}
.cid-uWmeQPQiMQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uWmeQPQiMQ .mbr-section-subtitle {
  color: #232323;
}
.cid-uWmeQPQiMQ H2 {
  color: #000000;
}
.cid-uWmeQPZzlE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f9f9f9;
}
.cid-uWmeQPZzlE h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uWmeQPZzlE p {
  color: #767676;
  text-align: left;
}
.cid-uWmeQPZzlE .card-box {
  padding-top: 2rem;
}
.cid-uWmeQPZzlE .card-wrapper {
  height: 100%;
}
.cid-uWmeQQeJ0h {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-uWmeQQeJ0h h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uWmeQQeJ0h p {
  color: #767676;
  text-align: left;
}
.cid-uWmeQQeJ0h .card-box {
  padding-top: 2rem;
}
.cid-uWmeQQeJ0h .card-wrapper {
  height: 100%;
}
.cid-uWmeQQsOkl {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-uWmeQQsOkl h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uWmeQQsOkl p {
  color: #767676;
  text-align: left;
}
.cid-uWmeQQsOkl .card-box {
  padding-top: 2rem;
}
.cid-uWmeQQsOkl .card-wrapper {
  height: 100%;
}
.cid-uWmeQQFZzM {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f9f9f9;
}
.cid-uWmeQQFZzM h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-uWmeQQFZzM p {
  color: #767676;
  text-align: left;
}
.cid-uWmeQQFZzM .card-box {
  padding-top: 2rem;
}
.cid-uWmeQQFZzM .card-wrapper {
  height: 100%;
}
.cid-uWmeQR0q1G {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uWmeQR0q1G .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uWmeQR0q1G .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uWmeQR0q1G .mbr-text {
  color: #767676;
}
.cid-uWmeQS3Be1 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uWmeQS3Be1 .title {
  margin-bottom: 2rem;
}
.cid-uWmeQS3Be1 .mbr-section-subtitle {
  color: #767676;
}
.cid-uWmeQS3Be1 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uWmeQS3Be1 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uWmeQS3Be1 .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uWmeQS3Be1 .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uWmeQSeQQU {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uWmeQSeQQU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWmeQSeQQU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWmeQSeQQU .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uWmeQSeQQU .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uWmeQSeQQU .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uWmeQSeQQU .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uWmeQSeQQU .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uWmeQSeQQU .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uWmeQSeQQU .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uWmeQSeQQU .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uWmeQSeQQU .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uWmeQSeQQU .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uWmeQSeQQU .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uWmeQSeQQU .list-box {
  width: 100%;
}
.cid-uWmeQSeQQU .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uWmeQSeQQU .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uWmeQSeQQU .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uWmeQSeQQU .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uWmeQSeQQU .list a:hover:before {
  background-position: left !important;
}
.cid-uWmeQSeQQU .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uWmeQSeQQU .news-item {
  width: 100%;
}
.cid-uWmeQSeQQU .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uWmeQSeQQU .news-title {
  color: #303030;
}
.cid-uWmeQSeQQU .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uWmoMh8Nvw {
  display: flex;
}
@media (min-width: 768px) {
  .cid-uWmoMh8Nvw {
    align-items: center;
  }
  .cid-uWmoMh8Nvw .row {
    justify-content: flex-start;
  }
  .cid-uWmoMh8Nvw .content-wrap {
    padding: 1rem 3rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uWmoMh8Nvw .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uWmoMh8Nvw {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uWmoMh8Nvw .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uWmoMh8Nvw .content-wrap {
    width: 100%;
  }
}
.cid-uWmoMh8Nvw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWmoMh8Nvw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/background1-10.jpg");
}
.cid-uWmoMh8Nvw .mbr-section-title,
.cid-uWmoMh8Nvw .mbr-section-subtitle {
  text-align: left;
  color: #ffc091;
}
.cid-uWmoMh8Nvw .mbr-text,
.cid-uWmoMh8Nvw .mbr-section-btn {
  text-align: left;
}
.cid-uWmoMh8Nvw .mbr-section-title {
  color: #ffffff;
}
.cid-uWmoMh8Nvw .mbr-section-subtitle {
  color: #edefeb;
}
.cid-tT3Rl8fkYz {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tT3Rl8fkYz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tT3Rl8fkYz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tT3Rl8fkYz .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-tT3Rl8fkYz .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-tT3Rl8fkYz .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-tT3Rl8fkYz .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-tT3Rl8fkYz .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-tT3Rl8fkYz .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-tT3Rl8fkYz .list-box {
  width: 100%;
}
.cid-tT3Rl8fkYz .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-tT3Rl8fkYz .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-tT3Rl8fkYz .list a:hover:before {
  background-position: left !important;
}
.cid-tT3Rl8fkYz .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-tT3Rl8fkYz .news-item {
  width: 100%;
}
.cid-tT3Rl8fkYz .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-tT3Rl8fkYz .news-title {
  color: #303030;
}
.cid-tT3Rl8fkYz .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uWpoGPrJ4m .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
.cid-uWpoGPrJ4m .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-uWpoGPrJ4m a {
  font-style: normal;
}
.cid-uWpoGPrJ4m .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-uWpoGPrJ4m .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-uWpoGPrJ4m .nav-item:focus,
.cid-uWpoGPrJ4m .nav-link:focus {
  outline: none;
}
.cid-uWpoGPrJ4m .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uWpoGPrJ4m .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-uWpoGPrJ4m .menu-logo {
  margin-right: auto;
}
.cid-uWpoGPrJ4m .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uWpoGPrJ4m .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-uWpoGPrJ4m .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-uWpoGPrJ4m .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-uWpoGPrJ4m .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-uWpoGPrJ4m .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-uWpoGPrJ4m .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-uWpoGPrJ4m .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-uWpoGPrJ4m .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-uWpoGPrJ4m .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-uWpoGPrJ4m .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-uWpoGPrJ4m .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-uWpoGPrJ4m .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-uWpoGPrJ4m .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWpoGPrJ4m .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-uWpoGPrJ4m .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-uWpoGPrJ4m .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-uWpoGPrJ4m .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-uWpoGPrJ4m .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-uWpoGPrJ4m .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-uWpoGPrJ4m .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-uWpoGPrJ4m .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-uWpoGPrJ4m .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-uWpoGPrJ4m button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-uWpoGPrJ4m button.navbar-toggler:focus {
  outline: none;
}
.cid-uWpoGPrJ4m button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #55b4d4;
}
.cid-uWpoGPrJ4m button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uWpoGPrJ4m button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uWpoGPrJ4m button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uWpoGPrJ4m button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uWpoGPrJ4m nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWpoGPrJ4m nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uWpoGPrJ4m nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uWpoGPrJ4m nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWpoGPrJ4m .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uWpoGPrJ4m .collapsed .btn {
  display: -webkit-flex;
}
.cid-uWpoGPrJ4m .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.collapsing,
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-uWpoGPrJ4m .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-uWpoGPrJ4m .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-uWpoGPrJ4m .collapsed button.navbar-toggler {
  display: block;
}
.cid-uWpoGPrJ4m .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-uWpoGPrJ4m .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-uWpoGPrJ4m .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-uWpoGPrJ4m .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-uWpoGPrJ4m .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-uWpoGPrJ4m .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-uWpoGPrJ4m .navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uWpoGPrJ4m img {
    height: 3.8rem !important;
  }
  .cid-uWpoGPrJ4m .btn {
    display: -webkit-flex;
  }
  .cid-uWpoGPrJ4m button.navbar-toggler {
    display: block;
  }
  .cid-uWpoGPrJ4m .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-uWpoGPrJ4m .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-uWpoGPrJ4m .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-uWpoGPrJ4m .navbar-collapse.collapsing,
  .cid-uWpoGPrJ4m .navbar-collapse.show {
    display: block !important;
  }
  .cid-uWpoGPrJ4m .navbar-collapse.collapsing .navbar-nav,
  .cid-uWpoGPrJ4m .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-uWpoGPrJ4m .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-uWpoGPrJ4m .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-uWpoGPrJ4m .navbar-collapse.collapsing .navbar-buttons,
  .cid-uWpoGPrJ4m .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-uWpoGPrJ4m .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-uWpoGPrJ4m .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-uWpoGPrJ4m .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-uWpoGPrJ4m .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-uWpoGPrJ4m .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-uWpoGPrJ4m .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-uWpoGPrJ4m .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-uWpoGPrJ4m .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-uWpoGPrJ4m .nav-link:hover,
.cid-uWpoGPrJ4m .dropdown-item:hover {
  color: #c1c1c1 !important;
}
.cid-uWpoGPFOOA {
  background-image: url("../../../assets/images/mbr-8.jpg");
}
.cid-uWpoGPFOOA .mbr-figure {
  margin: 0 auto;
  width: 100%;
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-uWpoGPFOOA .mbr-figure img {
  height: 100%;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .cid-uWpoGPFOOA .mbr-figure img {
    width: 100% !important;
  }
}
.cid-uWpoGPFOOA H3 {
  text-align: right;
  color: #ffffff;
}
.cid-uWpoGPFOOA .mbr-text,
.cid-uWpoGPFOOA .mbr-section-btn {
  color: #efefef;
  text-align: left;
}
.cid-uWpYlutoGf {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uWpYlutoGf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWpYlutoGf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWpYlutoGf .mbr-section-head {
  margin-bottom: 70px;
}
@media (max-width: 1500px) {
  .cid-uWpYlutoGf .mbr-section-head {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .cid-uWpYlutoGf .mbr-section-head {
    margin-bottom: 20px;
  }
}
.cid-uWpYlutoGf .mbr-section-title {
  color: #131313;
}
.cid-uWpYlutoGf .mbr-section-subtitle {
  margin-top: 18px;
  color: #131313;
}
.cid-uWpYlutoGf .cards-row {
  margin-top: 5px;
  row-gap: 20px;
}
.cid-uWpYlutoGf .card {
  display: flex;
  justify-content: center;
  align-items: stretch;
  border-radius: 0;
}
.cid-uWpYlutoGf .card-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 60px 52px 48px 48px;
  margin: 0 auto;
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
  background: #ffffff;
  transition: .3s all;
}
@media (max-width: 1024px) {
  .cid-uWpYlutoGf .card-wrapper {
    padding: 30px 30px 40px 25px;
  }
}
@media (max-width: 767px) {
  .cid-uWpYlutoGf .card-wrapper {
    padding: 10px 25px 40px 20px;
  }
}
@media (min-width: 992px) {
  .cid-uWpYlutoGf .card-wrapper:hover {
    box-shadow: none;
    transform: translateY(-5px);
  }
}
.cid-uWpYlutoGf .card-title {
  color: #131313;
}
.cid-uWpYlutoGf .price-box {
  display: flex;
  align-items: baseline;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .cid-uWpYlutoGf .price-box {
    margin-top: 5px;
  }
}
.cid-uWpYlutoGf .number-text {
  color: #149dcc;
}
.cid-uWpYlutoGf .stint-text {
  color: #55b4d4;
}
.cid-uWpYlutoGf .card-text {
  margin-top: 20px;
  color: #131313;
}
@media (max-width: 767px) {
  .cid-uWpYlutoGf .card-text {
    margin-top: 10px;
  }
}
.cid-uWpYlutoGf .list-box {
  display: flex;
  flex-wrap: wrap;
  row-gap: 10px;
  width: 100%;
  margin-top: 50px;
}
@media (max-width: 1024px) {
  .cid-uWpYlutoGf .list-box {
    margin-top: 24px;
  }
}
.cid-uWpYlutoGf .list-item {
  display: flex;
  align-items: center;
  width: 100%;
  column-gap: 10px;
}
.cid-uWpYlutoGf .iconfont-wrapper {
  flex-shrink: 0;
}
.cid-uWpYlutoGf .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 18px;
  color: #55b4d4;
}
.cid-uWpYlutoGf .list-text {
  flex-grow: 1;
  color: #131313;
}
.cid-uWpYlutoGf .mbr-section-btn {
  margin-top: auto;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding-top: 65px;
}
@media (max-width: 1199px) {
  .cid-uWpYlutoGf .mbr-section-btn {
    padding-top: 30px;
  }
}
@media (max-width: 991px) {
  .cid-uWpYlutoGf .mbr-section-btn {
    padding-top: 20px;
  }
}
.cid-uWpYlutoGf .mbr-section-btn .btn {
  width: 100%;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
@media (max-width: 1500px) {
  .cid-uWpYlutoGf .mbr-section-btn .btn {
    padding: 20px 24px !important;
  }
}
.cid-uWpoGPZrhq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWpoGPZrhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWpoGPZrhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWpoGPZrhq a {
  font-weight: bold;
}
.cid-uWpoGPZrhq .mbr-section-title {
  color: #151515;
  text-align: center;
}
.cid-uWpoGPZrhq .mbr-text,
.cid-uWpoGPZrhq .mbr-section-btn {
  color: #151515;
  text-align: center;
}
.cid-uWpoGPZrhq .mbr-section-subtitle {
  text-align: center;
}
.cid-uWpoGRKCmQ {
  padding-top: 45px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uWpoGRKCmQ .title {
  margin-bottom: 2rem;
}
.cid-uWpoGRKCmQ .mbr-section-subtitle {
  color: #767676;
}
.cid-uWpoGRKCmQ a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uWpoGRKCmQ a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uWpoGRKCmQ .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uWpoGRKCmQ .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uWpoGRDc0D {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uWpoGRDc0D .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-uWpoGRDc0D .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-uWpoGRDc0D .mbr-text {
  color: #767676;
}
.cid-uWpoGRVexw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-uWpoGRVexw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWpoGRVexw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWpoGRVexw .row {
  margin-left: -15px;
  margin-right: -15px;
  justify-content: center;
  row-gap: 50px;
}
.cid-uWpoGRVexw .row > [class*="col"] {
  padding-left: 15px;
  padding-right: 15px;
}
.cid-uWpoGRVexw .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: flex-start;
  margin-right: 0;
  margin-bottom: 0;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uWpoGRVexw .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uWpoGRVexw .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uWpoGRVexw .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
  font-weight: 700 !important;
}
.cid-uWpoGRVexw .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uWpoGRVexw .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uWpoGRVexw .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uWpoGRVexw .mbr-title {
  color: #303030;
  margin-bottom: 14px;
}
.cid-uWpoGRVexw .mbr-text {
  color: #303030;
  margin-top: 30px;
}
.cid-uWpoGRVexw .list-box {
  width: 100%;
}
.cid-uWpoGRVexw .list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 7px;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #303030;
  transition: 0.4s all;
}
.cid-uWpoGRVexw .list li {
  width: 100%;
  color: inherit !important;
  margin: 0 ;
  transition: 0.4s all;
}
.cid-uWpoGRVexw .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uWpoGRVexw .list a:before {
  background: linear-gradient(to right, currentColor 0 50%, transparent 50% 75%) !important;
  background-position: right !important;
  background-size: 200% 100% !important;
}
.cid-uWpoGRVexw .list a:hover:before {
  background-position: left !important;
}
.cid-uWpoGRVexw .news-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 14px;
  width: 100%;
}
.cid-uWpoGRVexw .news-item {
  width: 100%;
}
.cid-uWpoGRVexw .news-text {
  margin-bottom: 3px;
  color: #303030;
}
.cid-uWpoGRVexw .news-title {
  color: #303030;
}
.cid-uWpoGRVexw .copyright {
  margin-top: 20px;
  color: #303030;
}
.cid-uXG88D9XwL {
  background-image: url("../../../assets/images/mbr-3-1106x737.jpg");
}
.cid-to7kG4yBtt {
  background: #ffffff;
  padding-top: 30px;
  padding-bottom: 15px;
}
.cid-to7kG4yBtt .image-block {
  margin: auto;
}
.cid-to7kG4yBtt figcaption {
  position: relative;
}
.cid-to7kG4yBtt figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-to7kG4yBtt .image-block {
    width: 100% !important;
  }
}
.cid-to8yQ8KwiE {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-to8yQ8KwiE .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-to8yQ8KwiE .number-wrap {
  color: #4f4943;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-to8yQ8KwiE .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #232323;
}
.cid-to8yQ8KwiE .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-to8yQ8KwiE .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #232323;
}
.cid-to8yQ8KwiE .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-to8yQ8KwiE .dot {
    display: none;
  }
}
@media (max-width: 543px) {
  .cid-to8yQ8KwiE .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-to8yQ8KwiE .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .cid-to8yQ8KwiE .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-to8yQ8KwiE .number,
  .cid-to8yQ8KwiE .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-to8yQ8KwiE .period {
    font-size: 0.8rem;
  }
}
.cid-uXG5hlQpur {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uXG5hlQpur h3 {
  text-align: center;
  font-weight: 300;
}
.cid-uXG5hlQpur .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-uXG5hlQpur .mbr-section-subtitle {
  color: #767676;
}
.cid-uXG5hlQpur .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uXG5hlQpur ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-uXG5hlQpur path {
  stroke: #0099ff;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uXG5hlQpur .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-uXG5hlQpur .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uXG5hlQpur .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uXG5hlQpur .mbr-section-title,
.cid-uXG5hlQpur .line-wrap {
  text-align: center;
}
.cid-uXG5hlQpur p {
  color: #656565;
}
.cid-uXG5hlQpur .mbr-fallback-image.disabled {
  display: none;
}
.cid-uXG5hlQpur .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW5m29xmSX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uW5m29xmSX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW5m29xmSX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW5m29xmSX .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uW5m29xmSX .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uW5m29xmSX .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #767676;
}
@media (max-width: 992px) {
  .cid-uW5m29xmSX .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uW5m29xmSX .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uW5m29xmSX .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uW5m29xmSX .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uW5m29xmSX .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uW5m29xmSX .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uW5m29xmSX .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uW5m29xmSX .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uW5m29xmSX .mbr-section-title {
  color: #19171c;
}
.cid-uW5m29xmSX .panel-title {
  color: #19171c;
}
.cid-uW5m29xmSX .panel-text {
  color: #6e6e73;
}
.cid-uWlDNzO8tt {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uWlDNzO8tt .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uWlDNzO8tt .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uWlDNzO8tt .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uWlDNzO8tt .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uWlDNzO8tt .card-wrapper:hover {
  background: #cccccc;
}
.cid-uWlDNzO8tt .card-title,
.cid-uWlDNzO8tt .card-box {
  color: #000000;
  text-align: center;
}
.cid-uWlDNzO8tt .main-title,
.cid-uWlDNzO8tt .title-col {
  text-align: center;
  color: #000000;
}
.cid-uWlDNzO8tt .card-text {
  color: #232323;
  text-align: center;
}
.cid-uWlDNzO8tt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWlDNzO8tt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWaM1DpZPb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-uWaM1DpZPb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWaM1DpZPb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW8VUjOCyN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uW8VUjOCyN .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uW8VUjOCyN .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uW8VUjOCyN .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uW8VUjOCyN .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uW8VUjOCyN .card-wrapper:hover {
  background: #cccccc;
}
.cid-uW8VUjOCyN .card-title,
.cid-uW8VUjOCyN .card-box {
  color: #000000;
  text-align: center;
}
.cid-uW8VUjOCyN .main-title,
.cid-uW8VUjOCyN .title-col {
  text-align: center;
  color: #000000;
}
.cid-uW8VUjOCyN .card-text {
  color: #232323;
  text-align: center;
}
.cid-uW8VUjOCyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW8VUjOCyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY0Gn825CZ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-uY0Gn825CZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0Gn825CZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW8Y7vXNtB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uW8Y7vXNtB .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uW8Y7vXNtB .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uW8Y7vXNtB .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uW8Y7vXNtB .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uW8Y7vXNtB .card-wrapper:hover {
  background: #cccccc;
}
.cid-uW8Y7vXNtB .card-title,
.cid-uW8Y7vXNtB .card-box {
  color: #000000;
  text-align: center;
}
.cid-uW8Y7vXNtB .main-title,
.cid-uW8Y7vXNtB .title-col {
  text-align: center;
  color: #000000;
}
.cid-uW8Y7vXNtB .card-text {
  color: #232323;
  text-align: center;
}
.cid-uW8Y7vXNtB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW8Y7vXNtB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWaLTG49GR {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-uWaLTG49GR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWaLTG49GR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW9119erEm {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uW9119erEm .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uW9119erEm .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uW9119erEm .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uW9119erEm .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uW9119erEm .card-wrapper:hover {
  background: #cccccc;
}
.cid-uW9119erEm .card-title,
.cid-uW9119erEm .card-box {
  color: #000000;
  text-align: center;
}
.cid-uW9119erEm .main-title,
.cid-uW9119erEm .title-col {
  text-align: center;
  color: #000000;
}
.cid-uW9119erEm .card-text {
  color: #232323;
  text-align: center;
}
.cid-uW9119erEm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW9119erEm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWlELK09WF {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-uWlELK09WF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWlELK09WF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toayeJsvbj {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-toayeJsvbj .title {
  margin-bottom: 2rem;
}
.cid-toayeJsvbj .mbr-section-subtitle {
  color: #767676;
}
.cid-toayeJsvbj a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-toayeJsvbj a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-toayeJsvbj .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-toayeJsvbj .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uWaNG8fbms {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-uWaNG8fbms .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWaNG8fbms .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWaNO9ZyLn {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uWaNO9ZyLn .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uWaNO9ZyLn .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uWaNO9ZyLn .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uWaNO9ZyLn .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uWaNO9ZyLn .card-wrapper:hover {
  background: #cccccc;
}
.cid-uWaNO9ZyLn .card-title,
.cid-uWaNO9ZyLn .card-box {
  color: #000000;
  text-align: center;
}
.cid-uWaNO9ZyLn .main-title,
.cid-uWaNO9ZyLn .title-col {
  text-align: center;
  color: #000000;
}
.cid-uWaNO9ZyLn .card-text {
  color: #232323;
  text-align: center;
}
.cid-uWaNO9ZyLn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWaNO9ZyLn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW92fScQkn {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-uW92fScQkn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW92fScQkn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW92jZt1WG {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uW92jZt1WG .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uW92jZt1WG .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uW92jZt1WG .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uW92jZt1WG .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uW92jZt1WG .card-wrapper:hover {
  background: #cccccc;
}
.cid-uW92jZt1WG .card-title,
.cid-uW92jZt1WG .card-box {
  color: #000000;
  text-align: center;
}
.cid-uW92jZt1WG .main-title,
.cid-uW92jZt1WG .title-col {
  text-align: center;
  color: #000000;
}
.cid-uW92jZt1WG .card-text {
  color: #232323;
  text-align: center;
}
.cid-uW92jZt1WG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW92jZt1WG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uW5BDrMIus {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-uW5BDrMIus .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uW5BDrMIus .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uW5BDrMIus .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uW5BDrMIus .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uW5BDrMIus .card-wrapper:hover {
  background: #cccccc;
}
.cid-uW5BDrMIus .card-title,
.cid-uW5BDrMIus .card-box {
  color: #000000;
}
.cid-uW5BDrMIus .main-title,
.cid-uW5BDrMIus .title-col {
  text-align: center;
  color: #000000;
}
.cid-uW5BDrMIus .card-text {
  color: #232323;
}
.cid-uW5BDrMIus .mbr-fallback-image.disabled {
  display: none;
}
.cid-uW5BDrMIus .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-toayvHpSA2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uY1Ox5WZC8 {
  background-image: url("../../../assets/images/carrillon-1.jpg");
}
.cid-uY1Ox5WZC8 .media-container-row {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
@media (min-width: 992px) {
  .cid-uY1Ox5WZC8 .mbr-figure {
    padding-right: 4rem;
    padding-right: 0;
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-uY1Ox5WZC8 .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-uY1Ox5WZC8 .mbr-text {
    text-align: center;
  }
}
.cid-uY1SYmxnfy {
  padding-top: 135px;
  padding-bottom: 120px;
  background-image: url("../../../assets/images/carrillon-logo.jpg");
}
.cid-uY0EFHULEZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uY0EFHULEZ .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-uY0EFHULEZ .number-wrap {
  color: #4f4943;
  border-color: rgba(255, 255, 255, 0.15);
  position: relative;
  display: inline-block;
  text-align: center;
  padding: 5px 10px 13px 10px;
  margin: 0;
  min-width: 118px;
  border-radius: 2px;
  max-width: 100%;
}
.cid-uY0EFHULEZ .number {
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  text-transform: none;
  letter-spacing: -2px;
  word-spacing: 0;
  line-height: 1.3;
  color: #232323;
}
.cid-uY0EFHULEZ .period {
  display: block;
  padding-top: 2px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.cid-uY0EFHULEZ .dot {
  position: absolute;
  top: -10px;
  right: -1em;
  width: 1em;
  display: block;
  height: 83%;
  overflow: hidden;
  font-style: normal;
  font-weight: 700;
  font-size: 55px;
  line-height: 89.65px;
  text-transform: none;
  letter-spacing: 0;
  word-spacing: 0;
  color: #232323;
}
.cid-uY0EFHULEZ .countdown-cont {
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-uY0EFHULEZ .dot {
    display: none;
  }
}
@media (max-width: 543px) {
  .cid-uY0EFHULEZ .number-wrap {
    margin-bottom: 15px;
  }
}
@media (max-width: 550px) {
  .cid-uY0EFHULEZ .col-xs-3 {
    padding-left: 0;
    padding-right: 0;
    max-width: 25%;
    flex: 0 0 25%;
  }
  .cid-uY0EFHULEZ .number-wrap {
    min-width: auto;
  }
}
@media (max-width: 440px) {
  .cid-uY0EFHULEZ .number,
  .cid-uY0EFHULEZ .dot {
    font-size: 40px;
  }
}
@media (max-width: 380px) {
  .cid-uY0EFHULEZ .period {
    font-size: 0.8rem;
  }
}
.cid-uY0EFI2ArN {
  padding-top: 30px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uY0EFI2ArN h3 {
  text-align: center;
  font-weight: 300;
}
.cid-uY0EFI2ArN .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-uY0EFI2ArN .mbr-section-subtitle {
  color: #767676;
}
.cid-uY0EFI2ArN .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-uY0EFI2ArN ellipse {
  stroke: rgba(206, 206, 206, 0.4);
}
.cid-uY0EFI2ArN path {
  stroke: #0099ff;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uY0EFI2ArN .card {
    -webkit-flex-basis: 33%;
    flex-basis: 33%;
  }
}
.cid-uY0EFI2ArN .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-uY0EFI2ArN .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-uY0EFI2ArN .mbr-section-title,
.cid-uY0EFI2ArN .line-wrap {
  text-align: center;
}
.cid-uY0EFI2ArN p {
  color: #656565;
}
.cid-uY0EFI2ArN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFI2ArN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY0Ra8EG26 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uY0Ra8EG26 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0Ra8EG26 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY0Ra8EG26 .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uY0Ra8EG26 .items-wrapper {
  margin: 0 -15px;
}
.cid-uY0Ra8EG26 .items-wrapper .card {
  padding: 0 15px;
}
.cid-uY0Ra8EG26 .card-wrapper {
  position: relative;
  height: 100%;
  will-change: transform;
  animation: none !important;
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .card-wrapper {
    margin-bottom: 15px;
  }
}
.cid-uY0Ra8EG26 .card-wrapper .image-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  animation: none !important;
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .card-wrapper .image-wrap img {
    position: static;
    height: 300px;
  }
}
.cid-uY0Ra8EG26 .card-wrapper .decor-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 220px;
  height: 60px;
  background-color: #ffffff;
  border-bottom-right-radius: 30px;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .card-wrapper .decor-wrap {
    width: 120px;
  }
}
.cid-uY0Ra8EG26 .card-wrapper .decor-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-top-left-radius: 30px;
  box-shadow: -10px -10px 0 10px #ffffff;
}
.cid-uY0Ra8EG26 .card-wrapper .decor-wrap::after {
  content: '';
  position: absolute;
  top: 60px;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-top-left-radius: 30px;
  box-shadow: -10px -10px 0 10px #ffffff;
}
.cid-uY0Ra8EG26 .items-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1200px) {
  .cid-uY0Ra8EG26 .items-wrap {
    display: block;
  }
}
@media (max-width: 1200px) {
  .cid-uY0Ra8EG26 .items-wrap .item {
    margin-bottom: 30px;
  }
  .cid-uY0Ra8EG26 .items-wrap .item:last-child {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .items-wrap .item {
    margin-bottom: 15px;
  }
}
.cid-uY0Ra8EG26 .items-wrap .item .item-wrapper {
  height: 100%;
  padding: 40px;
  background-color: #f5f5f5;
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .items-wrap .item .item-wrapper {
    padding: 30px;
  }
}
.cid-uY0Ra8EG26 .items-wrap .item .item-wrapper .card-box .card-title {
  margin-bottom: 140px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .items-wrap .item .item-wrapper .card-box .card-title {
    margin-bottom: 30px;
  }
}
.cid-uY0Ra8EG26 .items-wrap .item .item-wrapper .card-box .card-number {
  margin-bottom: 0;
}
.cid-uY0Ra8EG26 .items-wrap .item .item-wrapper .card-box .card-desc {
  margin-bottom: 0;
}
.cid-uY0Ra8EG26 .items-wrap .features-image .item-wrapper {
  padding: 0;
  background-color: transparent;
}
.cid-uY0Ra8EG26 .items-wrap .features-image .item-wrapper .item-img {
  height: 100%;
}
.cid-uY0Ra8EG26 .items-wrap .features-image .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uY0Ra8EG26 .items-wrap .features-image .item-wrapper .item-img img {
    height: 300px;
  }
}
.cid-uY0Ra8EG26 .btn-wrapper {
  margin-top: 35%;
}
.cid-uY0Ra8EG26 .mbr-section-title {
  color: #000000;
}
.cid-uY0Ra8EG26 .card-title {
  color: #000000;
}
.cid-uY0Ra8EG26 .card-number {
  color: #000000;
}
.cid-uY0Ra8EG26 .card-desc {
  color: #8a8a8a;
}
.cid-uY0EFIUtFI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-uY0EFIUtFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFIUtFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY0EFIUtFI .content-wrapper {
  position: sticky;
  top: 40px;
}
@media (max-width: 992px) {
  .cid-uY0EFIUtFI .content-wrapper {
    margin-bottom: 40px;
    position: static;
  }
}
.cid-uY0EFIUtFI .panel-group .card {
  position: relative;
  border-radius: 0 !important;
  padding: 30px 0;
  background-color: transparent;
  border-bottom: 1px solid #767676;
}
@media (max-width: 992px) {
  .cid-uY0EFIUtFI .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uY0EFIUtFI .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uY0EFIUtFI .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uY0EFIUtFI .panel-group .card .card-header .panel-title .panel-title-edit {
  margin-bottom: 0;
}
.cid-uY0EFIUtFI .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
  color: #19171c;
  margin-top: 4px;
  margin-left: 20px;
}
.cid-uY0EFIUtFI .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-uY0EFIUtFI .panel-group .card .panel-collapse .panel-body {
  padding-top: 20px;
}
.cid-uY0EFIUtFI .panel-group .card .panel-collapse .panel-body .panel-text {
  margin-bottom: 0;
}
.cid-uY0EFIUtFI .mbr-section-title {
  color: #19171c;
}
.cid-uY0EFIUtFI .panel-title {
  color: #19171c;
}
.cid-uY0EFIUtFI .panel-text {
  color: #6e6e73;
}
.cid-uY0YDasjHv {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-uY0YDasjHv .shadow {
  border-radius: 30px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07) !important;
  transition: all 300ms ease, transform 300ms ease, -webkit-transform 300ms ease;
  overflow: visible;
}
.cid-uY0YDasjHv .wrap-img {
  border-bottom: 1px solid #e2e3e9;
  transition: all 300ms ease !important;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  height: 192px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translate(0px, 0px);
}
.cid-uY0YDasjHv .shadow:hover {
  transform: translate(0px, -6px);
  box-shadow: 0 10px 20px 0 rgba(8, 15, 52, 0.1) !important;
}
.cid-uY0YDasjHv .shadow:hover a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption),
.cid-uY0YDasjHv .shadow:hover .mbr-iconfont,
.cid-uY0YDasjHv .shadow:hover .number,
.cid-uY0YDasjHv .shadow:hover .card-title {
  color: #82786e !important;
}
.cid-uY0YDasjHv .shadow:hover .inner {
  transform: scale(1.1);
}
.cid-uY0YDasjHv .inner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.4s;
}
.cid-uY0YDasjHv .card-title {
  color: #14142b;
  margin-bottom: 6px;
  text-align: center;
  transition: 0.35s;
}
.cid-uY0YDasjHv .title-block {
  margin-bottom: 56px;
}
.cid-uY0YDasjHv .card-text {
  color: #149dcc;
  text-align: center;
}
.cid-uY0YDasjHv H3 {
  color: #14142b;
  text-align: center;
}
.cid-uY0YDasjHv .card-wrapper {
  border-radius: 0 0 30px 30px;
  background-color: #ffffff;
  padding: 39px 32px 48px;
}
.cid-uY0YDasjHv .mbr-iconfont {
  transition: 0.3s;
  margin-right: 5px;
}
.cid-uY0YDasjHv .link-title {
  display: inline-block;
}
.cid-uY0YDasjHv .episode {
  color: #ffffff;
}
.cid-uY0YDasjHv .img-title {
  color: #ffffff;
}
.cid-uY0YDasjHv .button-align {
  margin-top: 56px;
  text-align: center;
}
.cid-uY0YDasjHv .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-uY0YDasjHv .mbr-section-title {
  color: #151515;
}
@media (max-width: 860px) {
  .cid-uY0YDasjHv .title-block {
    flex-direction: column;
  }
  .cid-uY0YDasjHv .mbr-section-subtitle {
    margin-bottom: 20px;
    text-align: center;
  }
}
.cid-uY0YDasjHv .item.features-image {
  margin-top: 35px;
}
.cid-uY0YDasjHv .item.features-image:nth-child(1) {
  margin-top: 0px;
}
.cid-uY0YDasjHv .item.features-image:nth-child(2) {
  margin-top: 0px;
}
.cid-uY0YDasjHv .item.features-image:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-uY0YDasjHv .item.features-image:nth-child(4) {
    margin-top: 35px;
  }
  .cid-uY0YDasjHv .item.features-image:nth-child(3) {
    margin-top: 35px;
  }
}
@media (max-width: 768px) {
  .cid-uY0YDasjHv .item.features-image:nth-child(2) {
    margin-top: 35px;
  }
}
.cid-uY0EFJw8z5 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/carrillon-2.jpg");
}
.cid-uY0EFJw8z5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFJw8z5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY0EFJw8z5 .mbr-section-title {
  color: #ffffff;
}
.cid-uY0EFJGxnI {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uY0EFJGxnI .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uY0EFJGxnI .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uY0EFJGxnI .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uY0EFJGxnI .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uY0EFJGxnI .card-wrapper:hover {
  background: #cccccc;
}
.cid-uY0EFJGxnI .card-title,
.cid-uY0EFJGxnI .card-box {
  color: #000000;
  text-align: center;
}
.cid-uY0EFJGxnI .main-title,
.cid-uY0EFJGxnI .title-col {
  text-align: center;
  color: #000000;
}
.cid-uY0EFJGxnI .card-text {
  color: #232323;
  text-align: center;
}
.cid-uY0EFJGxnI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFJGxnI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1RjMtB5g {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/carrillon-2.jpg");
}
.cid-uY1RjMtB5g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1RjMtB5g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1RjMtB5g .mbr-section-title {
  color: #ffffff;
}
.cid-uY0EFKcLJ5 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uY0EFKcLJ5 .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uY0EFKcLJ5 .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uY0EFKcLJ5 .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uY0EFKcLJ5 .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uY0EFKcLJ5 .card-wrapper:hover {
  background: #cccccc;
}
.cid-uY0EFKcLJ5 .card-title,
.cid-uY0EFKcLJ5 .card-box {
  color: #000000;
  text-align: center;
}
.cid-uY0EFKcLJ5 .main-title,
.cid-uY0EFKcLJ5 .title-col {
  text-align: center;
  color: #000000;
}
.cid-uY0EFKcLJ5 .card-text {
  color: #232323;
  text-align: center;
}
.cid-uY0EFKcLJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFKcLJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1RkT4zTM {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/carrillon-2.jpg");
}
.cid-uY1RkT4zTM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1RkT4zTM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1RkT4zTM .mbr-section-title {
  color: #ffffff;
}
.cid-uY0EFKE3Ou {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY0EFKE3Ou .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uY0EFKE3Ou .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uY0EFKE3Ou .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uY0EFKE3Ou .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uY0EFKE3Ou .card-wrapper:hover {
  background: #cccccc;
}
.cid-uY0EFKE3Ou .card-title,
.cid-uY0EFKE3Ou .card-box {
  color: #000000;
  text-align: center;
}
.cid-uY0EFKE3Ou .main-title,
.cid-uY0EFKE3Ou .title-col {
  text-align: center;
  color: #000000;
}
.cid-uY0EFKE3Ou .card-text {
  color: #232323;
  text-align: center;
}
.cid-uY0EFKE3Ou .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFKE3Ou .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1Rlk8w8a {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/carrillon-2.jpg");
}
.cid-uY1Rlk8w8a .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1Rlk8w8a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1Rlk8w8a .mbr-section-title {
  color: #ffffff;
}
.cid-uY0EFL7JtS {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uY0EFL7JtS .title {
  margin-bottom: 2rem;
}
.cid-uY0EFL7JtS .mbr-section-subtitle {
  color: #767676;
}
.cid-uY0EFL7JtS a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-uY0EFL7JtS a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-uY0EFL7JtS .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-uY0EFL7JtS .input-group-btn {
  display: block;
  text-align: center;
}
.cid-uY1RFld2D2 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/carrillon-2.jpg");
}
.cid-uY1RFld2D2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1RFld2D2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1RFld2D2 .mbr-section-title {
  color: #ffffff;
}
.cid-uY0EFLtKIj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY0EFLtKIj .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uY0EFLtKIj .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uY0EFLtKIj .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uY0EFLtKIj .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uY0EFLtKIj .card-wrapper:hover {
  background: #cccccc;
}
.cid-uY0EFLtKIj .card-title,
.cid-uY0EFLtKIj .card-box {
  color: #000000;
  text-align: center;
}
.cid-uY0EFLtKIj .main-title,
.cid-uY0EFLtKIj .title-col {
  text-align: center;
  color: #000000;
}
.cid-uY0EFLtKIj .card-text {
  color: #232323;
  text-align: center;
}
.cid-uY0EFLtKIj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFLtKIj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1Rm4iIfm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/carrillon-2.jpg");
}
.cid-uY1Rm4iIfm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY1Rm4iIfm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY1Rm4iIfm .mbr-section-title {
  color: #ffffff;
}
.cid-uY0EFM420c {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uY0EFM420c .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uY0EFM420c .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uY0EFM420c .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uY0EFM420c .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uY0EFM420c .card-wrapper:hover {
  background: #cccccc;
}
.cid-uY0EFM420c .card-title,
.cid-uY0EFM420c .card-box {
  color: #000000;
  text-align: center;
}
.cid-uY0EFM420c .main-title,
.cid-uY0EFM420c .title-col {
  text-align: center;
  color: #000000;
}
.cid-uY0EFM420c .card-text {
  color: #232323;
  text-align: center;
}
.cid-uY0EFM420c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFM420c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY0EFMmriB {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #efefef;
}
.cid-uY0EFMmriB .mbr-iconfont {
  display: block;
  font-size: 3rem;
  color: #0099ff;
  margin-bottom: 1rem;
}
.cid-uY0EFMmriB .main-title {
  position: relative;
  width: fit-content;
  display: inline-block;
  color: #160830;
}
.cid-uY0EFMmriB .main-title:before {
  content: "";
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: currentColor;
  position: absolute;
}
.cid-uY0EFMmriB .card-wrapper {
  transition: all 0.3s;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2.5rem 2rem;
  background: transparent;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15);
}
.cid-uY0EFMmriB .card-wrapper:hover {
  background: #cccccc;
}
.cid-uY0EFMmriB .card-title,
.cid-uY0EFMmriB .card-box {
  color: #000000;
}
.cid-uY0EFMmriB .main-title,
.cid-uY0EFMmriB .title-col {
  text-align: center;
  color: #000000;
}
.cid-uY0EFMmriB .card-text {
  color: #232323;
}
.cid-uY0EFMmriB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uY0EFMmriB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uY0EFME7Vt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
