body {
  font-family: Outfit;
}
.display-1 {
  font-family: 'Outfit', sans-serif;
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 6.25rem;
}
.display-2 {
  font-family: 'Outfit', sans-serif;
  font-size: 3rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Outfit', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 33px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 33px;
}
.bg-primary {
  background-color: #124ad6 !important;
}
.bg-success {
  background-color: #8c8c8c !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #f4f820 !important;
}
.bg-danger {
  background-color: #ff0909 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #124ad6 !important;
  border-color: #124ad6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0b2e86 !important;
  border-color: #0b2e86 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #0e3aa7 !important;
  border-color: #0e3aa7 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #071e57 !important;
  border-color: #071e57 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #8c8c8c !important;
  border-color: #8c8c8c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #616161 !important;
  border-color: #616161 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f4f820 !important;
  border-color: #f4f820 !important;
  color: #181801 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #181801 !important;
  background-color: #b8bb06 !important;
  border-color: #b8bb06 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff0909 !important;
  border-color: #ff0909 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b10000 !important;
  border-color: #b10000 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #124ad6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #0b2e86 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #124ad6 !important;
  border-color: #124ad6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0e3aa7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #071e57 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0e3aa7 !important;
  border-color: #0e3aa7 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #8c8c8c;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #616161 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #8c8c8c !important;
  border-color: #8c8c8c !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f4f820;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b8bb06 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #181801 !important;
  background-color: #f4f820 !important;
  border-color: #f4f820 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff0909;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #b10000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0909 !important;
  border-color: #ff0909 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #124ad6 !important;
}
.text-secondary {
  color: #0e3aa7 !important;
}
.text-success {
  color: #8c8c8c !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #f4f820 !important;
}
.text-danger {
  color: #ff0909 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #0a2978 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #061949 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #595959 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a9ad05 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #a20000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #124ad6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #f4f820;
}
.alert-danger {
  background-color: #ff0909;
}
.mbr-gallery-filter li.active .btn {
  background-color: #124ad6;
  border-color: #124ad6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #124ad6;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #bbcdf9;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #cccccc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fefee6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffd5d5;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #124ad6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  line-height: 1;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #124ad6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #124ad6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #124ad6;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #124ad6;
  border-bottom-color: #124ad6;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #124ad6 !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: #0e3aa7 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23124ad6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.btn-primary,
.btn-secondary,
.btn-info,
.btn-success,
.btn-warning,
.btn-danger,
.btn-white,
.btn-black {
  padding: 15px !important;
  min-width: 100px !important;
}
.cid-tMrslfRUvK {
  z-index: 1000;
  width: 100%;
}
.cid-tMrslfRUvK .navbar-dropdown {
  background: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-tMrslfRUvK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff !important;
  background: #ffffff;
}
.cid-tMrslfRUvK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .menu_box .navbar.opened,
  .cid-tMrslfRUvK .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tMrslfRUvK nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tMrslfRUvK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tMrslfRUvK .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tMrslfRUvK .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tMrslfRUvK .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-tMrslfRUvK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tMrslfRUvK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tMrslfRUvK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tMrslfRUvK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tMrslfRUvK .offcanvas-body .mbr-text,
  .cid-tMrslfRUvK .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tMrslfRUvK .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tMrslfRUvK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tMrslfRUvK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tMrslfRUvK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tMrslfRUvK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tMrslfRUvK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tMrslfRUvK .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tMrslfRUvK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tMrslfRUvK .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .nav-item {
    margin: 0 !important;
  }
}
.cid-tMrslfRUvK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tMrslfRUvK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    left: -40px !important;
  }
  .cid-tMrslfRUvK .dropdown-menu.dropdown-submenu {
    left: 180px !important;
    top: -62% !important;
  }
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tMrslfRUvK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tMrslfRUvK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tMrslfRUvK .offcanvas_box {
    display: none;
  }
}
.cid-tMrslfRUvK .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tMrslfRUvK .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tMrslfRUvK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMrslfRUvK .nav-link {
  position: relative;
  color: #000000;
}
.cid-tMrslfRUvK .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tMrslfRUvK .container {
  display: flex;
  margin: auto;
}
.cid-tMrslfRUvK .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tMrslfRUvK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tMrslfRUvK .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-tMrslfRUvK .navbar-caption {
  color: #000000;
}
.cid-tMrslfRUvK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tMrslfRUvK .navbar-nav {
    margin: 0;
  }
}
.cid-tMrslfRUvK .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tMrslfRUvK .dropdown-menu,
.cid-tMrslfRUvK .navbar.opened {
  background-color: true !important;
}
.cid-tMrslfRUvK .nav-item:focus,
.cid-tMrslfRUvK .nav-link:focus {
  outline: none;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMrslfRUvK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMrslfRUvK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMrslfRUvK .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-tMrslfRUvK .navbar.opened {
  transition: all 0.3s;
}
.cid-tMrslfRUvK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tMrslfRUvK .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-tMrslfRUvK .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tMrslfRUvK .navbar.collapsed {
  justify-content: center;
}
.cid-tMrslfRUvK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMrslfRUvK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMrslfRUvK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMrslfRUvK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMrslfRUvK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMrslfRUvK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tMrslfRUvK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tMrslfRUvK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tMrslfRUvK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMrslfRUvK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMrslfRUvK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMrslfRUvK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tMrslfRUvK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tMrslfRUvK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMrslfRUvK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMrslfRUvK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tMrslfRUvK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMrslfRUvK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMrslfRUvK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMrslfRUvK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMrslfRUvK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMrslfRUvK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMrslfRUvK .dropdown-item.active,
.cid-tMrslfRUvK .dropdown-item:active {
  background-color: transparent;
}
.cid-tMrslfRUvK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMrslfRUvK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMrslfRUvK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMrslfRUvK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMrslfRUvK ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tMrslfRUvK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMrslfRUvK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMrslfRUvK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tMrslfRUvK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMrslfRUvK .navbar {
    height: 70px;
  }
  .cid-tMrslfRUvK .navbar.opened {
    height: auto;
  }
  .cid-tMrslfRUvK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMrslfRUvK .mbr-section-btn .btn,
.cid-tMrslfRUvK .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:first-child,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:focus,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tMrslfRUvK .mbr-section-btn .btn span,
.cid-tMrslfRUvK .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:hover,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:hover span,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tMrslfRUvK .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tMrslfRUvK .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tMrslfRUvK .navbar-caption:hover {
  color: #124ad6;
}
.cid-tMrslfRUvK .nav-link:hover {
  color: #124ad6;
}
.cid-tMrslfRUvK .nav-link:hover::before {
  background-color: #000000;
}
.cid-tMrslfRUvK .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tMrslfRUvK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tMrslfRUvK .mbr-section-subtitle,
.cid-tMrslfRUvK .text_widget {
  text-align: left;
}
.cid-tMrslfRUvK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tMDc68PXEq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tMDc68PXEq .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMDc68PXEq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMDc68PXEq .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tMDc68PXEq .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tMDc68PXEq .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tMDc68PXEq .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tMDc68PXEq .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tMDc68PXEq .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tMDc68PXEq .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tMDc68PXEq .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tMDc68PXEq .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-tMDc68PXEq .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tMDc68PXEq .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-tMDc68PXEq .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-tMDc68PXEq .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-tMDc68PXEq .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-tMDc68PXEq .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tMDc68PXEq .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tMDc68PXEq .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-tMDc68PXEq .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-tMDc68PXEq .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-tMDc68PXEq .mbr-link,
.cid-tMDc68PXEq .mbr-iconfont {
  color: #8c8c8c;
}
.cid-tMDc68PXEq .mbr-section-title {
  color: #000000;
}
.cid-tMDc68PXEq .mbr-text {
  color: #000000;
}
.cid-tMDc6K8dvH {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpeg");
}
.cid-tMDc6K8dvH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMDc6K8dvH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMDc6K8dvH .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tMDc6K8dvH .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tMDc6K8dvH .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tMDc6K8dvH .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tMDc6K8dvH .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tMDc6K8dvH .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tMDc6K8dvH .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tMDc6K8dvH .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tMDc6K8dvH .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-tMDc6K8dvH .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tMDc6K8dvH .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-tMDc6K8dvH .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-tMDc6K8dvH .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-tMDc6K8dvH .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-tMDc6K8dvH .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tMDc6K8dvH .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tMDc6K8dvH .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-tMDc6K8dvH .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-tMDc6K8dvH .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-tMDc6K8dvH .mbr-link,
.cid-tMDc6K8dvH .mbr-iconfont {
  color: #8c8c8c;
}
.cid-tMDc6K8dvH .mbr-section-title {
  color: #000000;
}
.cid-tMDc6K8dvH .mbr-text {
  color: #000000;
}
.cid-tMDc7aXu3j {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tMDc7aXu3j .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMDc7aXu3j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMDc7aXu3j .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tMDc7aXu3j .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tMDc7aXu3j .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tMDc7aXu3j .mbr-section-btn .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tMDc7aXu3j .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tMDc7aXu3j .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tMDc7aXu3j .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tMDc7aXu3j .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-tMDc7aXu3j .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-tMDc7aXu3j .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tMDc7aXu3j .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-tMDc7aXu3j .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-tMDc7aXu3j .title-wrapper .title-link-wrap .title-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  margin-right: 5px;
  transition: all .3s ease;
}
.cid-tMDc7aXu3j .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-tMDc7aXu3j .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tMDc7aXu3j .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-tMDc7aXu3j .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-tMDc7aXu3j .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-tMDc7aXu3j .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-tMDc7aXu3j .mbr-link,
.cid-tMDc7aXu3j .mbr-iconfont {
  color: #8c8c8c;
}
.cid-tMDc7aXu3j .mbr-section-title {
  color: #000000;
}
.cid-tMDc7aXu3j .mbr-text {
  color: #000000;
}
.cid-tMrsoaYsX9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tMrsoaYsX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMrsoaYsX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMrsoaYsX9 .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .title {
    display: none;
  }
}
.cid-tMrsoaYsX9 .title-wrapper {
  display: flex;
}
.cid-tMrsoaYsX9 .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-tMrsoaYsX9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tMrsoaYsX9 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tMrsoaYsX9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tMrsoaYsX9 .list {
    margin-bottom: 0;
  }
}
.cid-tMrsoaYsX9 .social-wrapper {
  width: 100%;
}
.cid-tMrsoaYsX9 .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .social-row {
    margin-top: 12px;
  }
}
.cid-tMrsoaYsX9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-tMrsoaYsX9 .soc-item a span {
  font-size: 18px;
}
.cid-tMrsoaYsX9 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .mbr-section-subtitle {
    display: none;
  }
}
.cid-tMrsoaYsX9 .mbr-text {
  margin-bottom: 10px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tMrsoaYsX9 .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-tMrsoaYsX9 .copyright-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .copyright-container {
    display: block;
  }
}
.cid-tMrsoaYsX9 .copyright-container .copyright-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-tMrsoaYsX9 .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-tMrsoaYsX9 .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-tMrsoaYsX9 .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-tMrsoaYsX9 .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-tMrsoaYsX9 .item-wrap:hover,
.cid-tMrsoaYsX9 a:hover,
.cid-tMrsoaYsX9 .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-tMrsoaYsX9 .mbr-section-title,
.cid-tMrsoaYsX9 .mbr-iconfont {
  color: #000000;
}
.cid-tMrsoaYsX9 .copyright {
  color: #000000;
}
.cid-tMrsoaYsX9 .list-copy {
  color: #000000;
}
.cid-tMrsoaYsX9 .mbr-section-subtitle,
.cid-tMrsoaYsX9 .social-wrapper {
  color: #0936a7;
}
.cid-tMrslfRUvK {
  z-index: 1000;
  width: 100%;
}
.cid-tMrslfRUvK .navbar-dropdown {
  background: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-tMrslfRUvK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff !important;
  background: #ffffff;
}
.cid-tMrslfRUvK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .menu_box .navbar.opened,
  .cid-tMrslfRUvK .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tMrslfRUvK nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tMrslfRUvK .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tMrslfRUvK .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tMrslfRUvK .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tMrslfRUvK .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-tMrslfRUvK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tMrslfRUvK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tMrslfRUvK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tMrslfRUvK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tMrslfRUvK .offcanvas-body .mbr-text,
  .cid-tMrslfRUvK .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tMrslfRUvK .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tMrslfRUvK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tMrslfRUvK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tMrslfRUvK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tMrslfRUvK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tMrslfRUvK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tMrslfRUvK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tMrslfRUvK .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tMrslfRUvK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tMrslfRUvK .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .nav-item {
    margin: 0 !important;
  }
}
.cid-tMrslfRUvK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tMrslfRUvK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    left: -40px !important;
  }
  .cid-tMrslfRUvK .dropdown-menu.dropdown-submenu {
    left: 180px !important;
    top: -62% !important;
  }
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tMrslfRUvK .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tMrslfRUvK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tMrslfRUvK .offcanvas_box {
    display: none;
  }
}
.cid-tMrslfRUvK .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tMrslfRUvK .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tMrslfRUvK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tMrslfRUvK .nav-link {
  position: relative;
  color: #000000;
}
.cid-tMrslfRUvK .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tMrslfRUvK .container {
  display: flex;
  margin: auto;
}
.cid-tMrslfRUvK .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tMrslfRUvK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tMrslfRUvK .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-tMrslfRUvK .navbar-caption {
  color: #000000;
}
.cid-tMrslfRUvK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tMrslfRUvK .navbar-nav {
    margin: 0;
  }
}
.cid-tMrslfRUvK .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tMrslfRUvK .dropdown-menu,
.cid-tMrslfRUvK .navbar.opened {
  background-color: true !important;
}
.cid-tMrslfRUvK .nav-item:focus,
.cid-tMrslfRUvK .nav-link:focus {
  outline: none;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tMrslfRUvK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tMrslfRUvK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tMrslfRUvK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tMrslfRUvK .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-tMrslfRUvK .navbar.opened {
  transition: all 0.3s;
}
.cid-tMrslfRUvK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tMrslfRUvK .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-tMrslfRUvK .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tMrslfRUvK .navbar.collapsed {
  justify-content: center;
}
.cid-tMrslfRUvK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tMrslfRUvK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tMrslfRUvK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tMrslfRUvK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tMrslfRUvK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tMrslfRUvK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tMrslfRUvK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tMrslfRUvK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tMrslfRUvK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tMrslfRUvK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tMrslfRUvK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tMrslfRUvK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tMrslfRUvK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tMrslfRUvK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tMrslfRUvK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tMrslfRUvK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tMrslfRUvK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tMrslfRUvK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tMrslfRUvK .navbar.navbar-short {
  min-height: 60px;
}
.cid-tMrslfRUvK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tMrslfRUvK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tMrslfRUvK .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tMrslfRUvK .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tMrslfRUvK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tMrslfRUvK .dropdown-item.active,
.cid-tMrslfRUvK .dropdown-item:active {
  background-color: transparent;
}
.cid-tMrslfRUvK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tMrslfRUvK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tMrslfRUvK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tMrslfRUvK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tMrslfRUvK ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tMrslfRUvK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tMrslfRUvK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tMrslfRUvK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tMrslfRUvK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tMrslfRUvK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tMrslfRUvK .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tMrslfRUvK .navbar {
    height: 70px;
  }
  .cid-tMrslfRUvK .navbar.opened {
    height: auto;
  }
  .cid-tMrslfRUvK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tMrslfRUvK .mbr-section-btn .btn,
.cid-tMrslfRUvK .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:first-child,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:focus,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tMrslfRUvK .mbr-section-btn .btn span,
.cid-tMrslfRUvK .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:hover,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tMrslfRUvK .mbr-section-btn .btn:hover span,
.cid-tMrslfRUvK .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tMrslfRUvK .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tMrslfRUvK .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tMrslfRUvK .navbar-caption:hover {
  color: #124ad6;
}
.cid-tMrslfRUvK .nav-link:hover {
  color: #124ad6;
}
.cid-tMrslfRUvK .nav-link:hover::before {
  background-color: #000000;
}
.cid-tMrslfRUvK .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tMrslfRUvK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tMrslfRUvK .mbr-section-subtitle,
.cid-tMrslfRUvK .text_widget {
  text-align: left;
}
.cid-tMrslfRUvK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tMrslVkjE9 {
  background-image: url("../../../assets/images/water-3510215-1920-1920x1280.jpg");
}
.cid-tMrslVkjE9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMrslVkjE9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMrslVkjE9 .mbr-section-btn .btn {
  min-width: 120px;
  height: 21px;
  position: relative;
  overflow: visible;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tMrslVkjE9 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tMrslVkjE9 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tMrslVkjE9 .mbr-section-btn .btn span {
  position: absolute;
  right: -6px;
  width: 18px;
  height: 18px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tMrslVkjE9 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tMrslVkjE9 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -16px;
}
.cid-tMrslVkjE9 .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-tMrslVkjE9 .mbr-section-title,
.cid-tMrslVkjE9 .mbr-section-btn {
  color: #0936a7;
}
.cid-tMrslVkjE9 .shadowed {
  -webkit-filter: drop-shadow(12px 12px 24px rgba(255, 255, 255, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#DDD')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=12, OffY=12, Color='#DDD')";
}
.cid-tMrsoaYsX9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tMrsoaYsX9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMrsoaYsX9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMrsoaYsX9 .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .title {
    display: none;
  }
}
.cid-tMrsoaYsX9 .title-wrapper {
  display: flex;
}
.cid-tMrsoaYsX9 .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-tMrsoaYsX9 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tMrsoaYsX9 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tMrsoaYsX9 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tMrsoaYsX9 .list {
    margin-bottom: 0;
  }
}
.cid-tMrsoaYsX9 .social-wrapper {
  width: 100%;
}
.cid-tMrsoaYsX9 .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .social-row {
    margin-top: 12px;
  }
}
.cid-tMrsoaYsX9 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-tMrsoaYsX9 .soc-item a span {
  font-size: 18px;
}
.cid-tMrsoaYsX9 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .mbr-section-subtitle {
    display: none;
  }
}
.cid-tMrsoaYsX9 .mbr-text {
  margin-bottom: 10px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tMrsoaYsX9 .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tMrsoaYsX9 .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-tMrsoaYsX9 .copyright-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .copyright-container {
    display: block;
  }
}
.cid-tMrsoaYsX9 .copyright-container .copyright-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-tMrsoaYsX9 .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-tMrsoaYsX9 .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tMrsoaYsX9 .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-tMrsoaYsX9 .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-tMrsoaYsX9 .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-tMrsoaYsX9 .item-wrap:hover,
.cid-tMrsoaYsX9 a:hover,
.cid-tMrsoaYsX9 .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-tMrsoaYsX9 .mbr-section-title,
.cid-tMrsoaYsX9 .mbr-iconfont {
  color: #000000;
}
.cid-tMrsoaYsX9 .copyright {
  color: #000000;
}
.cid-tMrsoaYsX9 .list-copy {
  color: #000000;
}
.cid-tMrsoaYsX9 .mbr-section-subtitle,
.cid-tMrsoaYsX9 .social-wrapper {
  color: #0936a7;
}
.cid-tYl9ijZxWb {
  z-index: 1000;
  width: 100%;
}
.cid-tYl9ijZxWb .navbar-dropdown {
  background: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-tYl9ijZxWb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff !important;
  background: #ffffff;
}
.cid-tYl9ijZxWb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tYl9ijZxWb .menu_box .navbar.opened,
  .cid-tYl9ijZxWb .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYl9ijZxWb nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tYl9ijZxWb .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYl9ijZxWb .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYl9ijZxWb .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYl9ijZxWb .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYl9ijZxWb .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYl9ijZxWb .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-tYl9ijZxWb .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYl9ijZxWb .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYl9ijZxWb .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYl9ijZxWb .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYl9ijZxWb .offcanvas-body .mbr-text,
  .cid-tYl9ijZxWb .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tYl9ijZxWb .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tYl9ijZxWb .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYl9ijZxWb .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-tYl9ijZxWb .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYl9ijZxWb .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYl9ijZxWb .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYl9ijZxWb .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYl9ijZxWb ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYl9ijZxWb .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYl9ijZxWb .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYl9ijZxWb .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYl9ijZxWb li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tYl9ijZxWb .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tYl9ijZxWb .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYl9ijZxWb .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYl9ijZxWb .nav-item {
    margin: 0 !important;
  }
}
.cid-tYl9ijZxWb .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYl9ijZxWb .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    left: -40px !important;
  }
  .cid-tYl9ijZxWb .dropdown-menu.dropdown-submenu {
    left: 180px !important;
    top: -62% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYl9ijZxWb .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYl9ijZxWb .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYl9ijZxWb .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYl9ijZxWb .offcanvas_box {
    display: none;
  }
}
.cid-tYl9ijZxWb .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tYl9ijZxWb .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYl9ijZxWb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYl9ijZxWb .nav-link {
  position: relative;
  color: #000000;
}
.cid-tYl9ijZxWb .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tYl9ijZxWb .container {
  display: flex;
  margin: auto;
}
.cid-tYl9ijZxWb .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYl9ijZxWb .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYl9ijZxWb .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-tYl9ijZxWb .navbar-caption {
  color: #000000;
}
.cid-tYl9ijZxWb .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYl9ijZxWb .navbar-nav {
    margin: 0;
  }
}
.cid-tYl9ijZxWb .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tYl9ijZxWb .dropdown-menu,
.cid-tYl9ijZxWb .navbar.opened {
  background-color: true !important;
}
.cid-tYl9ijZxWb .nav-item:focus,
.cid-tYl9ijZxWb .nav-link:focus {
  outline: none;
}
.cid-tYl9ijZxWb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYl9ijZxWb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYl9ijZxWb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYl9ijZxWb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYl9ijZxWb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYl9ijZxWb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYl9ijZxWb .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-tYl9ijZxWb .navbar.opened {
  transition: all 0.3s;
}
.cid-tYl9ijZxWb .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYl9ijZxWb .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-tYl9ijZxWb .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tYl9ijZxWb .navbar.collapsed {
  justify-content: center;
}
.cid-tYl9ijZxWb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYl9ijZxWb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYl9ijZxWb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYl9ijZxWb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYl9ijZxWb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYl9ijZxWb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYl9ijZxWb .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYl9ijZxWb .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYl9ijZxWb .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tYl9ijZxWb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYl9ijZxWb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYl9ijZxWb .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYl9ijZxWb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYl9ijZxWb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYl9ijZxWb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYl9ijZxWb .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYl9ijZxWb .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYl9ijZxWb .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYl9ijZxWb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYl9ijZxWb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYl9ijZxWb .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYl9ijZxWb .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYl9ijZxWb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYl9ijZxWb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYl9ijZxWb .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYl9ijZxWb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYl9ijZxWb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYl9ijZxWb .dropdown-item.active,
.cid-tYl9ijZxWb .dropdown-item:active {
  background-color: transparent;
}
.cid-tYl9ijZxWb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYl9ijZxWb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYl9ijZxWb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYl9ijZxWb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYl9ijZxWb ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tYl9ijZxWb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYl9ijZxWb button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tYl9ijZxWb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-tYl9ijZxWb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYl9ijZxWb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYl9ijZxWb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYl9ijZxWb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYl9ijZxWb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYl9ijZxWb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYl9ijZxWb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYl9ijZxWb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYl9ijZxWb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYl9ijZxWb .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYl9ijZxWb .navbar {
    height: 70px;
  }
  .cid-tYl9ijZxWb .navbar.opened {
    height: auto;
  }
  .cid-tYl9ijZxWb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYl9ijZxWb .mbr-section-btn .btn,
.cid-tYl9ijZxWb .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tYl9ijZxWb .mbr-section-btn .btn:first-child,
.cid-tYl9ijZxWb .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tYl9ijZxWb .mbr-section-btn .btn:focus,
.cid-tYl9ijZxWb .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tYl9ijZxWb .mbr-section-btn .btn span,
.cid-tYl9ijZxWb .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tYl9ijZxWb .mbr-section-btn .btn:hover,
.cid-tYl9ijZxWb .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tYl9ijZxWb .mbr-section-btn .btn:hover span,
.cid-tYl9ijZxWb .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tYl9ijZxWb .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYl9ijZxWb .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tYl9ijZxWb .navbar-caption:hover {
  color: #124ad6;
}
.cid-tYl9ijZxWb .nav-link:hover {
  color: #124ad6;
}
.cid-tYl9ijZxWb .nav-link:hover::before {
  background-color: #000000;
}
.cid-tYl9ijZxWb .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tYl9ijZxWb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tYl9ijZxWb .mbr-section-subtitle,
.cid-tYl9ijZxWb .text_widget {
  text-align: left;
}
.cid-tYl9ijZxWb a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYuTCktCNj {
  padding-top: 10rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tYuTCktCNj .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYuTCktCNj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYuTCktCNj .row {
  justify-content: flex-start;
}
.cid-tYuTCktCNj .grid-container {
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 3rem;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYuTCktCNj .grid-container {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 767px) {
  .cid-tYuTCktCNj .grid-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.cid-tYuTCktCNj .main-col {
  position: relative;
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  max-width: 28rem;
  width: 100%;
  margin-right: auto;
  overflow: hidden;
  background-color: #eeeeee;
}
@media (min-width: 992px) {
  .cid-tYuTCktCNj .main-col {
    min-height: 28.4rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuTCktCNj .main-col {
    max-width: 334px;
  }
}
@media (max-width: 767px) {
  .cid-tYuTCktCNj .main-col {
    max-width: 100%;
  }
}
.cid-tYuTCktCNj .item-wrapper {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  bottom: auto;
  width: 100%;
  height: 100%;
  transition: all .5s  ease !important;
  position: relative;
}
.cid-tYuTCktCNj .img-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  flex-grow: 1;
  height: 21rem;
  position: absolute;
  bottom: 7.4rem;
  transition: all .5s  ease !important;
}
@media (max-width: 991px) {
  .cid-tYuTCktCNj .img-container {
    position: sticky;
    height: 240px;
  }
}
.cid-tYuTCktCNj .title-container {
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(calc(100% - 7.4rem));
  transition: all .5s  ease !important;
  background-color: #eeeeee;
}
@media (max-width: 991px) {
  .cid-tYuTCktCNj .title-container {
    position: sticky;
    transform: translateY(0);
  }
}
.cid-tYuTCktCNj .head-content {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  padding: 1rem;
}
@media (min-width: 992px) {
  .cid-tYuTCktCNj .head-content {
    min-height: 7.4rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuTCktCNj .head-content {
    padding: 12px;
  }
}
.cid-tYuTCktCNj .foot-content {
  width: 100%;
  padding: 0 1rem 1rem 1rem;
  transition: all .5s  ease !important;
}
@media (max-width: 991px) {
  .cid-tYuTCktCNj .foot-content {
    padding: 0 12px 12px 12px;
  }
}
@media (min-width: 992px) {
  .cid-tYuTCktCNj .main-col:hover .img-container {
    bottom: 13.4rem;
  }
  .cid-tYuTCktCNj .main-col:hover .title-container {
    transform: translateY(0);
  }
}
.cid-tYuTCktCNj .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-tYuTCktCNj .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-tYuTCktCNj .price-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
}
.cid-tYuTCktCNj .price-name {
  color: #727272;
}
.cid-tYuTCktCNj .price-number {
  color: #000000;
}
.cid-tYuTCktCNj .mbr-section-btn {
  margin-top: 10px;
  width: 100%;
}
.cid-tYuTCktCNj .mbr-section-btn .btn {
  padding: 12px 36px;
}
@media (max-width: 768px) {
  .cid-tYuTCktCNj .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-tYuTCktCNj .img-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}
.cid-tYuTCktCNj .img-wrap img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  max-width: 100%;
  max-height: 100%;
  min-height: 100%;
  transition: .5s all;
  transform-style: preserve-3d;
}
.cid-tYuTCktCNj .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYvoEE0lRk {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #124ad6;
}
.cid-tYvoEE0lRk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYvoEE0lRk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYvoEE0lRk .row {
  justify-content: flex-start;
}
.cid-tYvoEE0lRk .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-tYvoEE0lRk .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ee2524;
}
.cid-tYvoEE0lRk .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-tYvoEE0lRk .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-tYvoEE0lRk .mbr-section-btn {
  margin-top: 2.4rem;
}
.cid-tYvoEE0lRk .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYl9im65MV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tYl9im65MV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYl9im65MV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYl9im65MV .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-tYl9im65MV .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-tYl9im65MV .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-tYl9im65MV .title {
    display: none;
  }
}
.cid-tYl9im65MV .title-wrapper {
  display: flex;
}
.cid-tYl9im65MV .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-tYl9im65MV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tYl9im65MV .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYl9im65MV .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYl9im65MV .list {
    margin-bottom: 0;
  }
}
.cid-tYl9im65MV .social-wrapper {
  width: 100%;
}
.cid-tYl9im65MV .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tYl9im65MV .social-row {
    margin-top: 12px;
  }
}
.cid-tYl9im65MV .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-tYl9im65MV .soc-item a span {
  font-size: 18px;
}
.cid-tYl9im65MV .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-tYl9im65MV .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tYl9im65MV .mbr-section-subtitle {
    display: none;
  }
}
.cid-tYl9im65MV .mbr-text {
  margin-bottom: 10px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tYl9im65MV .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tYl9im65MV .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tYl9im65MV .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-tYl9im65MV .copyright-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tYl9im65MV .copyright-container {
    display: block;
  }
}
.cid-tYl9im65MV .copyright-container .copyright-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tYl9im65MV .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-tYl9im65MV .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-tYl9im65MV .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tYl9im65MV .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-tYl9im65MV .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-tYl9im65MV .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-tYl9im65MV .item-wrap:hover,
.cid-tYl9im65MV a:hover,
.cid-tYl9im65MV .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-tYl9im65MV .mbr-section-title,
.cid-tYl9im65MV .mbr-iconfont {
  color: #000000;
}
.cid-tYl9im65MV .copyright {
  color: #000000;
}
.cid-tYl9im65MV .list-copy {
  color: #000000;
}
.cid-tYl9im65MV .mbr-section-subtitle,
.cid-tYl9im65MV .social-wrapper {
  color: #0936a7;
}
.cid-tYldwnClxt {
  z-index: 1000;
  width: 100%;
}
.cid-tYldwnClxt .navbar-dropdown {
  background: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-tYldwnClxt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff !important;
  background: #ffffff;
}
.cid-tYldwnClxt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tYldwnClxt .menu_box .navbar.opened,
  .cid-tYldwnClxt .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYldwnClxt nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tYldwnClxt .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYldwnClxt .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYldwnClxt .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYldwnClxt .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYldwnClxt .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYldwnClxt .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-tYldwnClxt .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYldwnClxt .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYldwnClxt .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYldwnClxt .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYldwnClxt .offcanvas-body .mbr-text,
  .cid-tYldwnClxt .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tYldwnClxt .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tYldwnClxt .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYldwnClxt .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-tYldwnClxt .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYldwnClxt .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYldwnClxt .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYldwnClxt .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYldwnClxt ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYldwnClxt .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYldwnClxt .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYldwnClxt .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYldwnClxt li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tYldwnClxt .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tYldwnClxt .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYldwnClxt .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYldwnClxt .nav-item {
    margin: 0 !important;
  }
}
.cid-tYldwnClxt .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYldwnClxt .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    left: -40px !important;
  }
  .cid-tYldwnClxt .dropdown-menu.dropdown-submenu {
    left: 180px !important;
    top: -62% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYldwnClxt .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYldwnClxt .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYldwnClxt .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYldwnClxt .offcanvas_box {
    display: none;
  }
}
.cid-tYldwnClxt .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tYldwnClxt .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYldwnClxt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYldwnClxt .nav-link {
  position: relative;
  color: #000000;
}
.cid-tYldwnClxt .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tYldwnClxt .container {
  display: flex;
  margin: auto;
}
.cid-tYldwnClxt .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYldwnClxt .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYldwnClxt .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-tYldwnClxt .navbar-caption {
  color: #000000;
}
.cid-tYldwnClxt .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYldwnClxt .navbar-nav {
    margin: 0;
  }
}
.cid-tYldwnClxt .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tYldwnClxt .dropdown-menu,
.cid-tYldwnClxt .navbar.opened {
  background-color: true !important;
}
.cid-tYldwnClxt .nav-item:focus,
.cid-tYldwnClxt .nav-link:focus {
  outline: none;
}
.cid-tYldwnClxt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYldwnClxt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYldwnClxt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYldwnClxt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYldwnClxt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYldwnClxt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYldwnClxt .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-tYldwnClxt .navbar.opened {
  transition: all 0.3s;
}
.cid-tYldwnClxt .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYldwnClxt .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-tYldwnClxt .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tYldwnClxt .navbar.collapsed {
  justify-content: center;
}
.cid-tYldwnClxt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYldwnClxt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYldwnClxt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYldwnClxt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYldwnClxt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYldwnClxt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYldwnClxt .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYldwnClxt .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYldwnClxt .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tYldwnClxt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYldwnClxt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYldwnClxt .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYldwnClxt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYldwnClxt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYldwnClxt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYldwnClxt .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYldwnClxt .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYldwnClxt .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYldwnClxt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYldwnClxt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYldwnClxt .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYldwnClxt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYldwnClxt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYldwnClxt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYldwnClxt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYldwnClxt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYldwnClxt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYldwnClxt .dropdown-item.active,
.cid-tYldwnClxt .dropdown-item:active {
  background-color: transparent;
}
.cid-tYldwnClxt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYldwnClxt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYldwnClxt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYldwnClxt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYldwnClxt ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tYldwnClxt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYldwnClxt button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tYldwnClxt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-tYldwnClxt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYldwnClxt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYldwnClxt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYldwnClxt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYldwnClxt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYldwnClxt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYldwnClxt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYldwnClxt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYldwnClxt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYldwnClxt .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYldwnClxt .navbar {
    height: 70px;
  }
  .cid-tYldwnClxt .navbar.opened {
    height: auto;
  }
  .cid-tYldwnClxt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYldwnClxt .mbr-section-btn .btn,
.cid-tYldwnClxt .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tYldwnClxt .mbr-section-btn .btn:first-child,
.cid-tYldwnClxt .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tYldwnClxt .mbr-section-btn .btn:focus,
.cid-tYldwnClxt .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tYldwnClxt .mbr-section-btn .btn span,
.cid-tYldwnClxt .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tYldwnClxt .mbr-section-btn .btn:hover,
.cid-tYldwnClxt .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tYldwnClxt .mbr-section-btn .btn:hover span,
.cid-tYldwnClxt .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tYldwnClxt .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYldwnClxt .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tYldwnClxt .navbar-caption:hover {
  color: #124ad6;
}
.cid-tYldwnClxt .nav-link:hover {
  color: #124ad6;
}
.cid-tYldwnClxt .nav-link:hover::before {
  background-color: #000000;
}
.cid-tYldwnClxt .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tYldwnClxt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tYldwnClxt .mbr-section-subtitle,
.cid-tYldwnClxt .text_widget {
  text-align: left;
}
.cid-tYldwnClxt a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYuW6UHUAr {
  padding-top: 16rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tYuW6UHUAr .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYuW6UHUAr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tYuW6UHUAr .container {
    padding: 0 30px;
  }
}
.cid-tYuW6UHUAr .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tYuW6UHUAr .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tYuW6UHUAr .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tYuW6UHUAr .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tYuW6UHUAr .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tYuW6UHUAr .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tYuW6UHUAr .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tYuW6UHUAr .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tYuW6UHUAr .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tYuW6UHUAr .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tYuW6UHUAr .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-tYuW6UHUAr .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tYuW6UHUAr .embla__slide .card-wrap {
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .cid-tYuW6UHUAr .embla__slide .card-wrap {
    padding: 0;
  }
}
.cid-tYuW6UHUAr .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tYuW6UHUAr .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-tYuW6UHUAr .embla__button--next,
.cid-tYuW6UHUAr .embla__button--prev {
  display: flex;
}
.cid-tYuW6UHUAr .embla__button {
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 12px;
  background-color: #051744;
  color: #eeeeee;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .75;
}
.cid-tYuW6UHUAr .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tYuW6UHUAr .embla__button:hover {
  background: #051744;
  color: #eeeeee;
  opacity: 1;
}
.cid-tYuW6UHUAr .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-tYuW6UHUAr .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-tYuW6UHUAr .slider-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-tYuW6UHUAr .slider-wrapper {
    padding: 0;
  }
}
.cid-tYuW6UHUAr .embla {
  position: relative;
  width: 100%;
}
.cid-tYuW6UHUAr .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tYuW6UHUAr .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tYuW6UHUAr .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tYuW6UHUAr .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tYuW6UHUAr .mbr-card-title {
  color: #212529;
}
.cid-tYuW6UHUAr .mbr-text {
  color: #212529;
}
.cid-tYuW6UHUAr .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYuXhhTh20 {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fbfbfb;
}
.cid-tYuXhhTh20 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYuXhhTh20 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYuXhhTh20 .row {
  justify-content: flex-start;
}
.cid-tYuXhhTh20 .mbr-section-title {
  color: #000000;
  width: 100%;
}
.cid-tYuXhhTh20 .colored-text {
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
  color: #ee2524;
}
.cid-tYuXhhTh20 .mbr-section-subtitle {
  color: #000000;
  width: 100%;
}
.cid-tYuXhhTh20 .mbr-text {
  color: #000000;
  width: 100%;
}
.cid-tYuXhhTh20 .mbr-section-btn {
  margin-top: 2.4rem;
}
.cid-tYuXhhTh20 .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYuXkXiNZ7.popup-builder {
  background-color: #ffffff;
}
.cid-tYuXkXiNZ7.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYuXkXiNZ7.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYuXkXiNZ7 .modal-content,
.cid-tYuXkXiNZ7 .modal-dialog {
  height: auto;
}
.cid-tYuXkXiNZ7 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYuXkXiNZ7 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYuXkXiNZ7 .form-wrapper .mbr-form .form-group,
  .cid-tYuXkXiNZ7 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYuXkXiNZ7 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYuXkXiNZ7 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYuXkXiNZ7 .mbr-text {
  text-align: center;
}
.cid-tYuXkXiNZ7 .pt-0 {
  padding-top: 0 !important;
}
.cid-tYuXkXiNZ7 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYuXkXiNZ7 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYuXkXiNZ7 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYuXkXiNZ7 .modal-open {
  overflow: hidden;
}
.cid-tYuXkXiNZ7 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYuXkXiNZ7 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYuXkXiNZ7 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYuXkXiNZ7 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYuXkXiNZ7 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYuXkXiNZ7 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYuXkXiNZ7 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYuXkXiNZ7 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYuXkXiNZ7 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYuXkXiNZ7 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYuXkXiNZ7 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYuXkXiNZ7 .modal-backdrop.show {
  opacity: .5;
}
.cid-tYuXkXiNZ7 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYuXkXiNZ7 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuXkXiNZ7 .modal-header {
    padding: 1rem;
  }
}
.cid-tYuXkXiNZ7 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYuXkXiNZ7 .modal-header .close svg {
  fill: #353535;
}
.cid-tYuXkXiNZ7 .modal-header .close:hover {
  opacity: 1;
}
.cid-tYuXkXiNZ7 .modal-header .close:focus {
  outline: none;
}
.cid-tYuXkXiNZ7 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYuXkXiNZ7 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYuXkXiNZ7 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuXkXiNZ7 .modal-body {
    padding: 1rem;
  }
}
.cid-tYuXkXiNZ7 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYuXkXiNZ7 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuXkXiNZ7 .modal-footer {
    padding: 1rem;
  }
}
.cid-tYuXkXiNZ7 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYuXkXiNZ7 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYuXkXiNZ7 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYuXkXiNZ7 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYuXkXiNZ7 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYuXkXiNZ7 .modal-lg,
  .cid-tYuXkXiNZ7 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYuXkXiNZ7 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYuXkXiNZ7 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYuXkXiNZ7 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYuXkXiNZ7 .form-group {
  margin-bottom: 1rem;
}
.cid-tYuXkXiNZ7 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYuXkXiNZ7 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYuXkXiNZ7 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYuXkXiNZ7 .mbr-section-btn {
  margin: 0;
}
.cid-tYuXkXiNZ7 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYuXkXiNZ7 .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYldwpKgeu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tYldwpKgeu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYldwpKgeu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYldwpKgeu .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-tYldwpKgeu .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-tYldwpKgeu .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-tYldwpKgeu .title {
    display: none;
  }
}
.cid-tYldwpKgeu .title-wrapper {
  display: flex;
}
.cid-tYldwpKgeu .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-tYldwpKgeu .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tYldwpKgeu .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYldwpKgeu .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYldwpKgeu .list {
    margin-bottom: 0;
  }
}
.cid-tYldwpKgeu .social-wrapper {
  width: 100%;
}
.cid-tYldwpKgeu .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tYldwpKgeu .social-row {
    margin-top: 12px;
  }
}
.cid-tYldwpKgeu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-tYldwpKgeu .soc-item a span {
  font-size: 18px;
}
.cid-tYldwpKgeu .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-tYldwpKgeu .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tYldwpKgeu .mbr-section-subtitle {
    display: none;
  }
}
.cid-tYldwpKgeu .mbr-text {
  margin-bottom: 10px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tYldwpKgeu .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tYldwpKgeu .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tYldwpKgeu .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-tYldwpKgeu .copyright-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tYldwpKgeu .copyright-container {
    display: block;
  }
}
.cid-tYldwpKgeu .copyright-container .copyright-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tYldwpKgeu .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-tYldwpKgeu .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-tYldwpKgeu .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tYldwpKgeu .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-tYldwpKgeu .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-tYldwpKgeu .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-tYldwpKgeu .item-wrap:hover,
.cid-tYldwpKgeu a:hover,
.cid-tYldwpKgeu .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-tYldwpKgeu .mbr-section-title,
.cid-tYldwpKgeu .mbr-iconfont {
  color: #000000;
}
.cid-tYldwpKgeu .copyright {
  color: #000000;
}
.cid-tYldwpKgeu .list-copy {
  color: #000000;
}
.cid-tYldwpKgeu .mbr-section-subtitle,
.cid-tYldwpKgeu .social-wrapper {
  color: #0936a7;
}
.cid-tYljioR7XE {
  z-index: 1000;
  width: 100%;
}
.cid-tYljioR7XE .navbar-dropdown {
  background: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-tYljioR7XE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff !important;
  background: #ffffff;
}
.cid-tYljioR7XE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tYljioR7XE .menu_box .navbar.opened,
  .cid-tYljioR7XE .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYljioR7XE nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tYljioR7XE .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYljioR7XE .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYljioR7XE .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYljioR7XE .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYljioR7XE .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYljioR7XE .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-tYljioR7XE .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYljioR7XE .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYljioR7XE .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYljioR7XE .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYljioR7XE .offcanvas-body .mbr-text,
  .cid-tYljioR7XE .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tYljioR7XE .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tYljioR7XE .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYljioR7XE .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-tYljioR7XE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYljioR7XE .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYljioR7XE .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYljioR7XE .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYljioR7XE ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYljioR7XE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYljioR7XE .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYljioR7XE .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYljioR7XE li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tYljioR7XE .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tYljioR7XE .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYljioR7XE .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYljioR7XE .nav-item {
    margin: 0 !important;
  }
}
.cid-tYljioR7XE .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYljioR7XE .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    left: -40px !important;
  }
  .cid-tYljioR7XE .dropdown-menu.dropdown-submenu {
    left: 180px !important;
    top: -62% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYljioR7XE .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYljioR7XE .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYljioR7XE .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYljioR7XE .offcanvas_box {
    display: none;
  }
}
.cid-tYljioR7XE .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tYljioR7XE .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYljioR7XE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYljioR7XE .nav-link {
  position: relative;
  color: #000000;
}
.cid-tYljioR7XE .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tYljioR7XE .container {
  display: flex;
  margin: auto;
}
.cid-tYljioR7XE .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYljioR7XE .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYljioR7XE .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-tYljioR7XE .navbar-caption {
  color: #000000;
}
.cid-tYljioR7XE .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYljioR7XE .navbar-nav {
    margin: 0;
  }
}
.cid-tYljioR7XE .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tYljioR7XE .dropdown-menu,
.cid-tYljioR7XE .navbar.opened {
  background-color: true !important;
}
.cid-tYljioR7XE .nav-item:focus,
.cid-tYljioR7XE .nav-link:focus {
  outline: none;
}
.cid-tYljioR7XE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYljioR7XE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYljioR7XE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYljioR7XE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYljioR7XE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYljioR7XE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYljioR7XE .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-tYljioR7XE .navbar.opened {
  transition: all 0.3s;
}
.cid-tYljioR7XE .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYljioR7XE .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-tYljioR7XE .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tYljioR7XE .navbar.collapsed {
  justify-content: center;
}
.cid-tYljioR7XE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYljioR7XE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYljioR7XE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYljioR7XE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYljioR7XE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYljioR7XE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYljioR7XE .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYljioR7XE .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYljioR7XE .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tYljioR7XE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYljioR7XE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYljioR7XE .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYljioR7XE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYljioR7XE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYljioR7XE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYljioR7XE .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYljioR7XE .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYljioR7XE .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYljioR7XE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYljioR7XE .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYljioR7XE .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYljioR7XE .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYljioR7XE .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYljioR7XE .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYljioR7XE .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYljioR7XE .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYljioR7XE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYljioR7XE .dropdown-item.active,
.cid-tYljioR7XE .dropdown-item:active {
  background-color: transparent;
}
.cid-tYljioR7XE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYljioR7XE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYljioR7XE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYljioR7XE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYljioR7XE ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tYljioR7XE .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYljioR7XE button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tYljioR7XE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-tYljioR7XE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYljioR7XE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYljioR7XE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYljioR7XE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYljioR7XE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYljioR7XE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYljioR7XE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYljioR7XE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYljioR7XE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYljioR7XE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYljioR7XE .navbar {
    height: 70px;
  }
  .cid-tYljioR7XE .navbar.opened {
    height: auto;
  }
  .cid-tYljioR7XE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYljioR7XE .mbr-section-btn .btn,
.cid-tYljioR7XE .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tYljioR7XE .mbr-section-btn .btn:first-child,
.cid-tYljioR7XE .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tYljioR7XE .mbr-section-btn .btn:focus,
.cid-tYljioR7XE .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tYljioR7XE .mbr-section-btn .btn span,
.cid-tYljioR7XE .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tYljioR7XE .mbr-section-btn .btn:hover,
.cid-tYljioR7XE .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tYljioR7XE .mbr-section-btn .btn:hover span,
.cid-tYljioR7XE .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tYljioR7XE .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYljioR7XE .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tYljioR7XE .navbar-caption:hover {
  color: #124ad6;
}
.cid-tYljioR7XE .nav-link:hover {
  color: #124ad6;
}
.cid-tYljioR7XE .nav-link:hover::before {
  background-color: #000000;
}
.cid-tYljioR7XE .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tYljioR7XE .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tYljioR7XE .mbr-section-subtitle,
.cid-tYljioR7XE .text_widget {
  text-align: left;
}
.cid-tYljioR7XE a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYljTM1wtX {
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tYljTM1wtX .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: currentColor;
  margin-left: 1rem;
}
.cid-tYljTM1wtX .panel-group {
  border: none;
}
.cid-tYljTM1wtX .card-header {
  border: none;
}
.cid-tYljTM1wtX .card {
  background: #eeeeee;
  border: 1px solid #eeeeee;
  padding: 2rem 4rem;
  border-radius: 1rem;
}
@media (max-width: 767px) {
  .cid-tYljTM1wtX .card {
    padding: 0 1rem;
  }
}
.cid-tYljTM1wtX .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-tYljTM1wtX .panel-body,
.cid-tYljTM1wtX .card-header {
  padding: 1rem 0;
}
.cid-tYljTM1wtX .panel-title-edit {
  color: #000000;
}
.cid-tYljTM1wtX .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-tYljTM1wtX .panel-title-edit,
.cid-tYljTM1wtX .mbr-iconfont {
  color: #000000;
}
.cid-tYljTM1wtX .panel-text {
  color: #000000;
}
.cid-tYljTM1wtX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYljTM1wtX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYljTM1wtX H3 {
  color: #ffffff;
}
.cid-tYljTM1wtX .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYljiqyVBL {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tYljiqyVBL .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYljiqyVBL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYljiqyVBL .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-tYljiqyVBL .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-tYljiqyVBL .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-tYljiqyVBL .title {
    display: none;
  }
}
.cid-tYljiqyVBL .title-wrapper {
  display: flex;
}
.cid-tYljiqyVBL .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-tYljiqyVBL .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tYljiqyVBL .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYljiqyVBL .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYljiqyVBL .list {
    margin-bottom: 0;
  }
}
.cid-tYljiqyVBL .social-wrapper {
  width: 100%;
}
.cid-tYljiqyVBL .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tYljiqyVBL .social-row {
    margin-top: 12px;
  }
}
.cid-tYljiqyVBL .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-tYljiqyVBL .soc-item a span {
  font-size: 18px;
}
.cid-tYljiqyVBL .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-tYljiqyVBL .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tYljiqyVBL .mbr-section-subtitle {
    display: none;
  }
}
.cid-tYljiqyVBL .mbr-text {
  margin-bottom: 10px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tYljiqyVBL .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tYljiqyVBL .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tYljiqyVBL .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-tYljiqyVBL .copyright-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tYljiqyVBL .copyright-container {
    display: block;
  }
}
.cid-tYljiqyVBL .copyright-container .copyright-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tYljiqyVBL .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-tYljiqyVBL .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-tYljiqyVBL .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tYljiqyVBL .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-tYljiqyVBL .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-tYljiqyVBL .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-tYljiqyVBL .item-wrap:hover,
.cid-tYljiqyVBL a:hover,
.cid-tYljiqyVBL .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-tYljiqyVBL .mbr-section-title,
.cid-tYljiqyVBL .mbr-iconfont {
  color: #000000;
}
.cid-tYljiqyVBL .copyright {
  color: #000000;
}
.cid-tYljiqyVBL .list-copy {
  color: #000000;
}
.cid-tYljiqyVBL .mbr-section-subtitle,
.cid-tYljiqyVBL .social-wrapper {
  color: #0936a7;
}
.cid-tYuXQTPMs1 {
  z-index: 1000;
  width: 100%;
}
.cid-tYuXQTPMs1 .navbar-dropdown {
  background: #ffffff !important;
  padding: 0;
  position: fixed;
}
.cid-tYuXQTPMs1 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff !important;
  background: #ffffff;
}
.cid-tYuXQTPMs1 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tYuXQTPMs1 .menu_box .navbar.opened,
  .cid-tYuXQTPMs1 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tYuXQTPMs1 nav.navbar {
  position: fixed;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tYuXQTPMs1 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tYuXQTPMs1 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuXQTPMs1 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tYuXQTPMs1 .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tYuXQTPMs1 .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tYuXQTPMs1 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-tYuXQTPMs1 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tYuXQTPMs1 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tYuXQTPMs1 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tYuXQTPMs1 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tYuXQTPMs1 .offcanvas-body .mbr-text,
  .cid-tYuXQTPMs1 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tYuXQTPMs1 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tYuXQTPMs1 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tYuXQTPMs1 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-tYuXQTPMs1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tYuXQTPMs1 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tYuXQTPMs1 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tYuXQTPMs1 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tYuXQTPMs1 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tYuXQTPMs1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYuXQTPMs1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
  }
  .cid-tYuXQTPMs1 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tYuXQTPMs1 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tYuXQTPMs1 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tYuXQTPMs1 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tYuXQTPMs1 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tYuXQTPMs1 .nav-item {
    margin: 0 !important;
  }
}
.cid-tYuXQTPMs1 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tYuXQTPMs1 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    left: -40px !important;
  }
  .cid-tYuXQTPMs1 .dropdown-menu.dropdown-submenu {
    left: 180px !important;
    top: -62% !important;
  }
}
@media (max-width: 991px) {
  .cid-tYuXQTPMs1 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tYuXQTPMs1 .link.dropdown-toggle::after {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: .5rem;
    margin-bottom: 2px;
    content: "";
    border: 2px solid;
    border-left: none;
    border-top: none;
    transform: rotate(-45deg);
    right: 15px;
    position: absolute;
    margin-top: -2px;
  }
  .cid-tYuXQTPMs1 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tYuXQTPMs1 .offcanvas_box {
    display: none;
  }
}
.cid-tYuXQTPMs1 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tYuXQTPMs1 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tYuXQTPMs1 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tYuXQTPMs1 .nav-link {
  position: relative;
  color: #000000;
}
.cid-tYuXQTPMs1 .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tYuXQTPMs1 .container {
  display: flex;
  margin: auto;
}
.cid-tYuXQTPMs1 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-tYuXQTPMs1 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tYuXQTPMs1 .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-tYuXQTPMs1 .navbar-caption {
  color: #000000;
}
.cid-tYuXQTPMs1 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tYuXQTPMs1 .navbar-nav {
    margin: 0;
  }
}
.cid-tYuXQTPMs1 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tYuXQTPMs1 .dropdown-menu,
.cid-tYuXQTPMs1 .navbar.opened {
  background-color: true !important;
}
.cid-tYuXQTPMs1 .nav-item:focus,
.cid-tYuXQTPMs1 .nav-link:focus {
  outline: none;
}
.cid-tYuXQTPMs1 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tYuXQTPMs1 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tYuXQTPMs1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tYuXQTPMs1 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tYuXQTPMs1 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tYuXQTPMs1 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tYuXQTPMs1 .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-tYuXQTPMs1 .navbar.opened {
  transition: all 0.3s;
}
.cid-tYuXQTPMs1 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tYuXQTPMs1 .navbar .navbar-logo img {
  min-width: 34px;
  min-height: 34px;
  object-fit: cover;
}
.cid-tYuXQTPMs1 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tYuXQTPMs1 .navbar.collapsed {
  justify-content: center;
}
.cid-tYuXQTPMs1 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tYuXQTPMs1 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tYuXQTPMs1 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tYuXQTPMs1 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tYuXQTPMs1 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tYuXQTPMs1 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tYuXQTPMs1 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tYuXQTPMs1 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tYuXQTPMs1 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tYuXQTPMs1 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tYuXQTPMs1 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tYuXQTPMs1 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tYuXQTPMs1 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tYuXQTPMs1 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tYuXQTPMs1 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tYuXQTPMs1 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tYuXQTPMs1 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tYuXQTPMs1 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tYuXQTPMs1 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tYuXQTPMs1 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tYuXQTPMs1 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tYuXQTPMs1 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tYuXQTPMs1 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tYuXQTPMs1 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tYuXQTPMs1 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tYuXQTPMs1 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tYuXQTPMs1 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tYuXQTPMs1 .dropdown-item.active,
.cid-tYuXQTPMs1 .dropdown-item:active {
  background-color: transparent;
}
.cid-tYuXQTPMs1 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tYuXQTPMs1 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tYuXQTPMs1 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tYuXQTPMs1 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tYuXQTPMs1 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tYuXQTPMs1 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tYuXQTPMs1 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ffffff;
}
.cid-tYuXQTPMs1 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-tYuXQTPMs1 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tYuXQTPMs1 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYuXQTPMs1 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tYuXQTPMs1 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tYuXQTPMs1 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYuXQTPMs1 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tYuXQTPMs1 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tYuXQTPMs1 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tYuXQTPMs1 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tYuXQTPMs1 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding: 0;
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tYuXQTPMs1 .navbar {
    height: 70px;
  }
  .cid-tYuXQTPMs1 .navbar.opened {
    height: auto;
  }
  .cid-tYuXQTPMs1 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tYuXQTPMs1 .mbr-section-btn .btn,
.cid-tYuXQTPMs1 .mbr-section-btn-main .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tYuXQTPMs1 .mbr-section-btn .btn:first-child,
.cid-tYuXQTPMs1 .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tYuXQTPMs1 .mbr-section-btn .btn:focus,
.cid-tYuXQTPMs1 .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tYuXQTPMs1 .mbr-section-btn .btn span,
.cid-tYuXQTPMs1 .mbr-section-btn-main .btn span {
  position: absolute;
  right: -12px;
  width: 18px;
  height: 18px;
  font-size: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #124ad6;
  color: #ffffff;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tYuXQTPMs1 .mbr-section-btn .btn:hover,
.cid-tYuXQTPMs1 .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tYuXQTPMs1 .mbr-section-btn .btn:hover span,
.cid-tYuXQTPMs1 .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tYuXQTPMs1 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tYuXQTPMs1 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tYuXQTPMs1 .navbar-caption:hover {
  color: #124ad6;
}
.cid-tYuXQTPMs1 .nav-link:hover {
  color: #124ad6;
}
.cid-tYuXQTPMs1 .nav-link:hover::before {
  background-color: #000000;
}
.cid-tYuXQTPMs1 .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tYuXQTPMs1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tYuXQTPMs1 .mbr-section-subtitle,
.cid-tYuXQTPMs1 .text_widget {
  text-align: left;
}
.cid-tYuXQTPMs1 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tYuXQUBmj2 {
  padding-top: 16rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-tYuXQUBmj2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYuXQUBmj2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tYuXQUBmj2 .container {
    padding: 0 30px;
  }
}
.cid-tYuXQUBmj2 .content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-tYuXQUBmj2 .content-wrapper {
    margin-bottom: 30px;
    height: auto;
  }
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card {
  margin-bottom: 25px;
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card .title-wrapper {
  margin-bottom: 25px;
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card .title-wrapper .title-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card .title-wrapper .title-wrap .mbr-card-title {
  margin-bottom: 0;
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap {
  margin-left: 16px;
  display: inline-flex;
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star {
  margin-bottom: 0;
  font-size: 18px;
  margin-left: 2px;
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card .title-wrapper .title-wrap .rating-wrap .mbr-star:first-child {
  margin-left: 0;
}
.cid-tYuXQUBmj2 .content-wrapper .cards .card .mbr-text {
  margin-bottom: 0;
}
.cid-tYuXQUBmj2 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-tYuXQUBmj2 .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-tYuXQUBmj2 .embla__slide .card-wrap {
  width: 100%;
  padding: 0 30px;
}
@media (max-width: 992px) {
  .cid-tYuXQUBmj2 .embla__slide .card-wrap {
    padding: 0;
  }
}
.cid-tYuXQUBmj2 .embla__slide .card-wrap .item-wrapper .image-wrap img {
  height: 560px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tYuXQUBmj2 .embla__slide .card-wrap .item-wrapper .image-wrap img {
    height: 300px;
  }
}
.cid-tYuXQUBmj2 .embla__button--next,
.cid-tYuXQUBmj2 .embla__button--prev {
  display: flex;
}
.cid-tYuXQUBmj2 .embla__button {
  top: 50%;
  width: 20px;
  height: 20px;
  margin-top: -1.5rem;
  font-size: 12px;
  background-color: #051744;
  color: #eeeeee;
  border: none;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: .75;
}
.cid-tYuXQUBmj2 .embla__button:disabled {
  cursor: default;
  display: none;
}
.cid-tYuXQUBmj2 .embla__button:hover {
  background: #051744;
  color: #eeeeee;
  opacity: 1;
}
.cid-tYuXQUBmj2 .embla__button.embla__button--prev {
  left: 0;
  margin-left: 0;
}
.cid-tYuXQUBmj2 .embla__button.embla__button--next {
  right: 0;
  margin-right: 0;
}
.cid-tYuXQUBmj2 .slider-wrapper {
  padding-left: 30px;
}
@media (max-width: 992px) {
  .cid-tYuXQUBmj2 .slider-wrapper {
    padding: 0;
  }
}
.cid-tYuXQUBmj2 .embla {
  position: relative;
  width: 100%;
}
.cid-tYuXQUBmj2 .embla__viewport {
  overflow: hidden;
  width: 100%;
}
.cid-tYuXQUBmj2 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-tYuXQUBmj2 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-tYuXQUBmj2 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-tYuXQUBmj2 .mbr-card-title {
  color: #212529;
}
.cid-tYuXQUBmj2 .mbr-text {
  color: #212529;
}
.cid-tYuXQUBmj2 .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYuXXG8WiU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
.cid-tYuXXG8WiU .row {
  align-items: center;
  width: 100%;
}
.cid-tYuXXG8WiU .title-container {
  width: 100%;
  padding: 0 !important;
  margin-bottom: 2rem;
}
.cid-tYuXXG8WiU .title-text {
  width: 100%;
}
.cid-tYuXXG8WiU .main-title {
  color: #000000;
  text-align: center;
}
.cid-tYuXXG8WiU .main-subtitle {
  color: #000000;
  text-align: center;
}
.cid-tYuXXG8WiU form .dragArea.row {
  justify-content: flex-start;
  width: auto !important;
}
.cid-tYuXXG8WiU form .mbr-section-btn {
  margin-top: 20px;
  margin-right: 100%;
}
.cid-tYuXXG8WiU form .mbr-section-btn .btn {
  width: max-content;
  min-width: 120px;
}
.cid-tYuXXG8WiU form .form-group {
  margin-top: 32px !important;
  margin-bottom: 10px !important;
}
@media (max-width: 767px) {
  .cid-tYuXXG8WiU form .form-group {
    margin-top: 1rem!important;
  }
}
.cid-tYuXXG8WiU form .form-control {
  border: 1px solid #000000 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  margin-bottom: 0;
  padding: 12px;
  font-size: 16px;
  line-height: 24px;
  color: #939292;
  font-weight: 400;
}
.cid-tYuXXG8WiU form .form-control::-webkit-input-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form .form-control::-moz-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form .form-control:-moz-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form .form-control:-ms-input-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form select {
  color: #000000 !important;
}
.cid-tYuXXG8WiU form textarea {
  height: 100px;
}
.cid-tYuXXG8WiU form input:active,
.cid-tYuXXG8WiU form textarea:active,
.cid-tYuXXG8WiU form input:focus,
.cid-tYuXXG8WiU form textarea:focus {
  border-color: #124ad6 !important;
}
.cid-tYuXXG8WiU form input:active::-webkit-input-placeholder,
.cid-tYuXXG8WiU form textarea:active::-webkit-input-placeholder,
.cid-tYuXXG8WiU form input:focus::-webkit-input-placeholder,
.cid-tYuXXG8WiU form textarea:focus::-webkit-input-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form input:active::-moz-placeholder,
.cid-tYuXXG8WiU form textarea:active::-moz-placeholder,
.cid-tYuXXG8WiU form input:focus::-moz-placeholder,
.cid-tYuXXG8WiU form textarea:focus::-moz-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form input:active:-moz-placeholder,
.cid-tYuXXG8WiU form textarea:active:-moz-placeholder,
.cid-tYuXXG8WiU form input:focus:-moz-placeholder,
.cid-tYuXXG8WiU form textarea:focus:-moz-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form input:active:-ms-input-placeholder,
.cid-tYuXXG8WiU form textarea:active:-ms-input-placeholder,
.cid-tYuXXG8WiU form input:focus:-ms-input-placeholder,
.cid-tYuXXG8WiU form textarea:focus:-ms-input-placeholder {
  color: #939292;
}
.cid-tYuXXG8WiU form .row {
  margin-left: -2% !important;
  margin-right: -2% !important;
}
.cid-tYuXXG8WiU form .row [class*=col] {
  padding-left: 2% !important;
  padding-right: 2% !important;
}
.cid-tYuXXG8WiU form label {
  width: 100%;
  color: #000000;
  margin-bottom: 1rem;
}
.cid-tYuXXG8WiU form .form-check-input {
  border-color: #000000 !important;
  outline: none !important;
  box-shadow: none !important;
}
.cid-tYuXXG8WiU form .form-check-input:focus,
.cid-tYuXXG8WiU form .form-check-input:hover {
  border-color: #124ad6 !important;
}
.cid-tYuXXG8WiU form .form-check-input:checked {
  border-color: #124ad6 !important;
  background-color: #124ad6 !important;
}
.cid-tYuXXG8WiU .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYuXQVFAi4.popup-builder {
  background-color: #ffffff;
}
.cid-tYuXQVFAi4.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-tYuXQVFAi4.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-tYuXQVFAi4 .modal-content,
.cid-tYuXQVFAi4 .modal-dialog {
  height: auto;
}
.cid-tYuXQVFAi4 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-tYuXQVFAi4 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-tYuXQVFAi4 .form-wrapper .mbr-form .form-group,
  .cid-tYuXQVFAi4 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-tYuXQVFAi4 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-tYuXQVFAi4 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tYuXQVFAi4 .mbr-text {
  text-align: center;
}
.cid-tYuXQVFAi4 .pt-0 {
  padding-top: 0 !important;
}
.cid-tYuXQVFAi4 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-tYuXQVFAi4 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-tYuXQVFAi4 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-tYuXQVFAi4 .modal-open {
  overflow: hidden;
}
.cid-tYuXQVFAi4 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-tYuXQVFAi4 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-tYuXQVFAi4 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-tYuXQVFAi4 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-tYuXQVFAi4 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-tYuXQVFAi4 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-tYuXQVFAi4 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-tYuXQVFAi4 .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-tYuXQVFAi4 .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-tYuXQVFAi4 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-tYuXQVFAi4 .modal-backdrop.fade {
  opacity: 0;
}
.cid-tYuXQVFAi4 .modal-backdrop.show {
  opacity: .5;
}
.cid-tYuXQVFAi4 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-tYuXQVFAi4 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuXQVFAi4 .modal-header {
    padding: 1rem;
  }
}
.cid-tYuXQVFAi4 .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-tYuXQVFAi4 .modal-header .close svg {
  fill: #353535;
}
.cid-tYuXQVFAi4 .modal-header .close:hover {
  opacity: 1;
}
.cid-tYuXQVFAi4 .modal-header .close:focus {
  outline: none;
}
.cid-tYuXQVFAi4 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-tYuXQVFAi4 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-tYuXQVFAi4 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuXQVFAi4 .modal-body {
    padding: 1rem;
  }
}
.cid-tYuXQVFAi4 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tYuXQVFAi4 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tYuXQVFAi4 .modal-footer {
    padding: 1rem;
  }
}
.cid-tYuXQVFAi4 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-tYuXQVFAi4 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-tYuXQVFAi4 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-tYuXQVFAi4 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-tYuXQVFAi4 .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-tYuXQVFAi4 .modal-lg,
  .cid-tYuXQVFAi4 .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-tYuXQVFAi4 .modal-xl {
    max-width: 1140px;
  }
}
.cid-tYuXQVFAi4 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-tYuXQVFAi4 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-tYuXQVFAi4 .form-group {
  margin-bottom: 1rem;
}
.cid-tYuXQVFAi4 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-tYuXQVFAi4 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-tYuXQVFAi4 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-tYuXQVFAi4 .mbr-section-btn {
  margin: 0;
}
.cid-tYuXQVFAi4 .mbr-section-btn .btn {
  margin: 0;
}
.cid-tYuXQVFAi4 .shadowed {
  -webkit-filter: drop-shadow(6px 6px 12px rgba(0, 0, 0, 0.7));
  filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
  -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=6, OffY=6, Color='#333')";
}
.cid-tYuXQWcdS7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-tYuXQWcdS7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tYuXQWcdS7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tYuXQWcdS7 .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-tYuXQWcdS7 .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-tYuXQWcdS7 .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-tYuXQWcdS7 .title {
    display: none;
  }
}
.cid-tYuXQWcdS7 .title-wrapper {
  display: flex;
}
.cid-tYuXQWcdS7 .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-tYuXQWcdS7 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tYuXQWcdS7 .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-tYuXQWcdS7 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tYuXQWcdS7 .list {
    margin-bottom: 0;
  }
}
.cid-tYuXQWcdS7 .social-wrapper {
  width: 100%;
}
.cid-tYuXQWcdS7 .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-tYuXQWcdS7 .social-row {
    margin-top: 12px;
  }
}
.cid-tYuXQWcdS7 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-tYuXQWcdS7 .soc-item a span {
  font-size: 18px;
}
.cid-tYuXQWcdS7 .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-tYuXQWcdS7 .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-tYuXQWcdS7 .mbr-section-subtitle {
    display: none;
  }
}
.cid-tYuXQWcdS7 .mbr-text {
  margin-bottom: 10px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tYuXQWcdS7 .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-tYuXQWcdS7 .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-tYuXQWcdS7 .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-tYuXQWcdS7 .copyright-container {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .cid-tYuXQWcdS7 .copyright-container {
    display: block;
  }
}
.cid-tYuXQWcdS7 .copyright-container .copyright-wrapper {
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tYuXQWcdS7 .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-tYuXQWcdS7 .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
  transition: all .3s ease;
}
.cid-tYuXQWcdS7 .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-tYuXQWcdS7 .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-tYuXQWcdS7 .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-tYuXQWcdS7 .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-tYuXQWcdS7 .item-wrap:hover,
.cid-tYuXQWcdS7 a:hover,
.cid-tYuXQWcdS7 .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-tYuXQWcdS7 .mbr-section-title,
.cid-tYuXQWcdS7 .mbr-iconfont {
  color: #000000;
}
.cid-tYuXQWcdS7 .copyright {
  color: #000000;
}
.cid-tYuXQWcdS7 .list-copy {
  color: #000000;
}
.cid-tYuXQWcdS7 .mbr-section-subtitle,
.cid-tYuXQWcdS7 .social-wrapper {
  color: #0936a7;
}
