body {
  font-family: Outfit;
}
.display-1 {
  font-family: 'Outfit', sans-serif;
  font-size: 3.9rem;
  line-height: 1;
  letter-spacing: -0.05em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.875rem;
}
.display-2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.7rem;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.display-2 > .mbr-iconfont {
  font-size: 3.375rem;
}
.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: 1.9rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.375rem;
}
.display-7 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.12rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.73rem;
    font-size: calc( 2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.0149999999999997rem + (3.9 - 2.0149999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.595rem + (2.7 - 1.595) * ((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.52rem;
    font-size: calc( 1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.315rem + (1.9 - 1.315) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((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: #99c392 !important;
}
.bg-danger {
  background-color: #6ba262 !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: #99c392 !important;
  border-color: #99c392 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #65a45a !important;
  border-color: #65a45a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #6ba262 !important;
  border-color: #6ba262 !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: #476d40 !important;
  border-color: #476d40 !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: #99c392;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #65a45a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #99c392 !important;
  border-color: #99c392 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6ba262;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #476d40 !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: #6ba262 !important;
  border-color: #6ba262 !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: #99c392 !important;
}
.text-danger {
  color: #6ba262 !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: #5f9a55 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #40633b !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: #99c392;
}
.alert-danger {
  background-color: #6ba262;
}
.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: #e6f0e4;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b6d1b2;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tbW55t7jzO .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-tbW55t7jzO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-tbW55t7jzO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-tbW55t7jzO .menu_box .navbar.opened,
  .cid-tbW55t7jzO .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-tbW55t7jzO .navbar-dropdown {
  position: relative !important;
}
.cid-tbW55t7jzO nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-tbW55t7jzO .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-tbW55t7jzO .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-tbW55t7jzO .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-tbW55t7jzO .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-tbW55t7jzO .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-tbW55t7jzO .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-tbW55t7jzO .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-tbW55t7jzO .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-tbW55t7jzO .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-tbW55t7jzO .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-tbW55t7jzO .offcanvas-body .mbr-text,
  .cid-tbW55t7jzO .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-tbW55t7jzO .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-tbW55t7jzO .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-tbW55t7jzO .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-tbW55t7jzO .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-tbW55t7jzO .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-tbW55t7jzO .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-tbW55t7jzO .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-tbW55t7jzO ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-tbW55t7jzO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tbW55t7jzO .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-tbW55t7jzO .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-tbW55t7jzO li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-tbW55t7jzO .lg_brand {
    margin: 0 1rem;
  }
}
.cid-tbW55t7jzO .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-tbW55t7jzO .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-tbW55t7jzO .nav-item {
    margin: 0 !important;
  }
}
.cid-tbW55t7jzO .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-tbW55t7jzO .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-tbW55t7jzO .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-tbW55t7jzO .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-tbW55t7jzO .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-tbW55t7jzO .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-tbW55t7jzO .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-tbW55t7jzO .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-tbW55t7jzO .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-tbW55t7jzO .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-tbW55t7jzO .offcanvas_box {
    display: none;
  }
}
.cid-tbW55t7jzO .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-tbW55t7jzO .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-tbW55t7jzO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tbW55t7jzO .nav-link {
  position: relative;
  color: #000000;
}
.cid-tbW55t7jzO .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-tbW55t7jzO .container {
  display: flex;
  margin: auto;
}
.cid-tbW55t7jzO .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-tbW55t7jzO .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-tbW55t7jzO .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-tbW55t7jzO .navbar-caption {
  color: #000000;
}
.cid-tbW55t7jzO .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-tbW55t7jzO .navbar-nav {
    margin: 0;
  }
}
.cid-tbW55t7jzO .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-tbW55t7jzO .dropdown-menu,
.cid-tbW55t7jzO .navbar.opened {
  background-color: false !important;
}
.cid-tbW55t7jzO .nav-item:focus,
.cid-tbW55t7jzO .nav-link:focus {
  outline: none;
}
.cid-tbW55t7jzO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tbW55t7jzO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tbW55t7jzO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tbW55t7jzO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tbW55t7jzO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tbW55t7jzO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tbW55t7jzO .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-tbW55t7jzO .navbar.opened {
  transition: all 0.3s;
}
.cid-tbW55t7jzO .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-tbW55t7jzO .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-tbW55t7jzO .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tbW55t7jzO .navbar.collapsed {
  justify-content: center;
}
.cid-tbW55t7jzO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tbW55t7jzO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-tbW55t7jzO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tbW55t7jzO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tbW55t7jzO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tbW55t7jzO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-tbW55t7jzO .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tbW55t7jzO .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-tbW55t7jzO .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-tbW55t7jzO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tbW55t7jzO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tbW55t7jzO .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-tbW55t7jzO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tbW55t7jzO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tbW55t7jzO .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tbW55t7jzO .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-tbW55t7jzO .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-tbW55t7jzO .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-tbW55t7jzO .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tbW55t7jzO .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tbW55t7jzO .navbar .icons-menu {
    padding: 0;
  }
}
.cid-tbW55t7jzO .navbar.navbar-short {
  min-height: 60px;
}
.cid-tbW55t7jzO .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tbW55t7jzO .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tbW55t7jzO .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-tbW55t7jzO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tbW55t7jzO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tbW55t7jzO .dropdown-item.active,
.cid-tbW55t7jzO .dropdown-item:active {
  background-color: transparent;
}
.cid-tbW55t7jzO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tbW55t7jzO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tbW55t7jzO .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tbW55t7jzO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tbW55t7jzO ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-tbW55t7jzO .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tbW55t7jzO 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-tbW55t7jzO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-tbW55t7jzO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tbW55t7jzO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbW55t7jzO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tbW55t7jzO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tbW55t7jzO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbW55t7jzO nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tbW55t7jzO nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tbW55t7jzO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tbW55t7jzO a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-tbW55t7jzO .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-tbW55t7jzO .navbar {
    height: 70px;
  }
  .cid-tbW55t7jzO .navbar.opened {
    height: auto;
  }
  .cid-tbW55t7jzO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tbW55t7jzO .mbr-section-btn .btn,
.cid-tbW55t7jzO .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-tbW55t7jzO .mbr-section-btn .btn:first-child,
.cid-tbW55t7jzO .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbW55t7jzO .mbr-section-btn .btn:focus,
.cid-tbW55t7jzO .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-tbW55t7jzO .mbr-section-btn .btn span,
.cid-tbW55t7jzO .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-tbW55t7jzO .mbr-section-btn .btn:hover,
.cid-tbW55t7jzO .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tbW55t7jzO .mbr-section-btn .btn:hover span,
.cid-tbW55t7jzO .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbW55t7jzO .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-tbW55t7jzO .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-tbW55t7jzO .navbar-caption:hover {
  color: #124ad6;
}
.cid-tbW55t7jzO .nav-link:hover {
  color: #124ad6;
}
.cid-tbW55t7jzO .nav-link:hover::before {
  background-color: #000000;
}
.cid-tbW55t7jzO .mbr-section-subtitle {
  color: #124ad6;
}
.cid-tbW55t7jzO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-tbW55t7jzO .mbr-section-subtitle,
.cid-tbW55t7jzO .text_widget {
  text-align: left;
}
.cid-tbW55t7jzO a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-tbW55HckPm {
  background-image: url("../../../assets/images/15141103-1500x1001.jpg");
}
.cid-tbW55HckPm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbW55HckPm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbW55HckPm .mbr-section-btn .btn {
  min-width: 120px;
  height: 21px;
  position: relative;
  overflow: visible;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbW55HckPm .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbW55HckPm .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbW55HckPm .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-tbW55HckPm .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbW55HckPm .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -16px;
}
.cid-tbW55HckPm .mbr-section-title {
  margin: 0;
  color: #ffffff;
}
.cid-tbW55HckPm .mbr-section-title,
.cid-tbW55HckPm .mbr-section-btn {
  color: #ffffff;
}
.cid-tbW5pbRVUT {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/195-1500x1000.jpg");
}
.cid-tbW5pbRVUT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbW5pbRVUT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbW5pbRVUT .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-tbW5pbRVUT .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbW5pbRVUT .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbW5pbRVUT .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: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbW5pbRVUT .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbW5pbRVUT .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbW5pbRVUT .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbW5pbRVUT .text-wrapper {
    margin: 0 30px;
  }
}
.cid-tbW5pbRVUT .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbW5pbRVUT .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-tbW5pbRVUT .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbW5pbRVUT .mbr-section-title,
.cid-tbW5pbRVUT .mbr-section-btn {
  text-align: center;
}
.cid-tbW5i9lnKN {
  padding-top: 7rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tbW5i9lnKN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbW5i9lnKN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbW5i9lnKN .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-tbW5i9lnKN .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbW5i9lnKN .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-tbW5i9lnKN .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: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-tbW5i9lnKN .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-tbW5i9lnKN .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbW5i9lnKN .text-wrapper {
  margin-right: 160px;
  padding: 60px;
  background-color: #124ad6;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-tbW5i9lnKN .text-wrapper {
    margin: 0 30px 30px;
    padding: 30px;
  }
}
.cid-tbW5i9lnKN .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-tbW5i9lnKN .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-tbW5i9lnKN .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-tbW5i9lnKN .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-tbW5i9lnKN .image-wrapper {
  margin: -28rem 160px 13rem;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbW5i9lnKN .image-wrapper {
    margin: 0 30px 5rem;
  }
}
.cid-tbW5i9lnKN .image-wrapper img {
  width: 420px;
  height: 560px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbW5i9lnKN .image-wrapper img {
    width: 210px;
    height: 280px;
  }
}
.cid-tbW5i9lnKN .image-wrapper .img-absolute {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 878px;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tbW5i9lnKN .image-wrapper .img-absolute {
    max-width: 450px;
    height: 300px;
    right: 0;
    bottom: -5px;
  }
}
@media (max-width: 600px) {
  .cid-tbW5i9lnKN .image-wrapper .img-absolute {
    max-width: 250px;
  }
}
.cid-tbW5i9lnKN .mbr-desc {
  color: #FFFFFF;
}
.cid-tbW5i9lnKN .mbr-text {
  color: #FFFFFF;
}
.cid-tbW5uWf9B0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #124ad6;
}
.cid-tbW5uWf9B0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbW5uWf9B0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbW5uWf9B0 .title-wrapper {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
  margin: 0 160px 200px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbW5uWf9B0 .title-wrapper {
    padding-top: 12px;
    margin: 0 30px 100px;
  }
}
.cid-tbW5uWf9B0 .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tbW5uWf9B0 .cards {
  padding: 0 175px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-tbW5uWf9B0 .cards {
    padding: 0 43px;
  }
}
.cid-tbW5uWf9B0 .cards .card:first-child {
  padding: 0 35px 0 0;
}
@media (min-width: 1400px) {
  .cid-tbW5uWf9B0 .cards .card:first-child {
    padding: 0 85px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-tbW5uWf9B0 .cards .card:first-child {
    padding: 0;
  }
}
.cid-tbW5uWf9B0 .cards .card:nth-child(2) {
  padding: 0 20px;
}
@media (min-width: 1400px) {
  .cid-tbW5uWf9B0 .cards .card:nth-child(2) {
    padding: 0 55px;
  }
}
@media (max-width: 992px) {
  .cid-tbW5uWf9B0 .cards .card:nth-child(2) {
    padding: 0;
  }
}
.cid-tbW5uWf9B0 .cards .card:last-child {
  padding: 0 0 0 35px;
}
@media (min-width: 1400px) {
  .cid-tbW5uWf9B0 .cards .card:last-child {
    padding: 0 0 0 85px;
  }
}
@media (max-width: 992px) {
  .cid-tbW5uWf9B0 .cards .card:last-child {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-tbW5uWf9B0 .cards .card {
    margin-bottom: 60px;
  }
}
.cid-tbW5uWf9B0 .cards .card .card-wrapper {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-tbW5uWf9B0 .cards .card .card-wrapper {
    padding-top: 12px;
  }
}
.cid-tbW5uWf9B0 .cards .card .card-wrapper .mbr-text {
  margin: 0;
}
.cid-tbW5uWf9B0 .mbr-section-title {
  color: #FFFFFF;
}
.cid-tbW5uWf9B0 .mbr-text {
  color: #FFFFFF;
}
.cid-tbW5suflSg {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tbW5suflSg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tbW5suflSg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tbW5suflSg .title-wrapper {
  margin: 0 160px;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tbW5suflSg .title-wrapper {
    margin: 0 30px;
  }
}
.cid-tbW5suflSg .title-wrapper .mbr-section-title {
  padding-top: 20px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tbW5suflSg .title-wrapper .mbr-section-title {
    padding-top: 12px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-tbW5suflSg .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-tbW5suflSg .cards {
  margin: 0 144px;
}
@media (max-width: 992px) {
  .cid-tbW5suflSg .cards {
    margin: 0 18px;
  }
}
@media (max-width: 768px) {
  .cid-tbW5suflSg .cards {
    margin: 0 30px;
  }
}
.cid-tbW5suflSg .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-tbW5suflSg .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-tbW5suflSg .cards .card {
    padding: 0;
  }
}
.cid-tbW5suflSg .cards .card .card-wrapper {
  position: relative;
  width: 100%;
  min-height: 510px;
}
.cid-tbW5suflSg .cards .card .card-wrapper .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  background: #124ad6;
  opacity: 0;
  transition: all .3s ease;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-tbW5suflSg .cards .card .card-wrapper .card-overlay {
    z-index: 0;
  }
}
.cid-tbW5suflSg .cards .card .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  object-fit: cover;
  pointer-events: visible;
}
.cid-tbW5suflSg .cards .card .card-wrap {
  margin-top: 40px;
  display: flex;
  transform: translate(-36px, 0);
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-tbW5suflSg .cards .card .card-wrap {
    margin-top: 25px;
    transform: none;
  }
}
.cid-tbW5suflSg .cards .card .card-wrap span {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-right: 12px;
  opacity: 0;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-tbW5suflSg .cards .card .card-wrap span {
    opacity: 1;
  }
}
.cid-tbW5suflSg .cards .card .card-wrap .card-title {
  margin: 0;
}
.cid-tbW5suflSg .card-link:hover .card-wrapper .card-overlay {
  opacity: .7;
}
.cid-tbW5suflSg .card-link:hover .card-wrap {
  transform: translate(0, 0);
}
.cid-tbW5suflSg .card-link:hover .card-wrap span {
  opacity: 1;
  color: #124ad6;
}
.cid-tbW5suflSg .mbr-section-title {
  color: #000000;
}
.cid-tbW5suflSg .card-title,
.cid-tbW5suflSg .mbr-iconfont {
  color: #000000;
}
.cid-tbW5suflSg .card-link:hover .card-wrap .card-title {
  color: #124ad6;
}
.cid-tbWmbeNXCQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tbWmbeNXCQ .form-title,
  .cid-tbWmbeNXCQ .form-wrapper {
    padding: 0;
  }
}
.cid-tbWmbeNXCQ .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-tbWmbeNXCQ .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-tbWmbeNXCQ .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-tbWmbeNXCQ .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-tbWmbeNXCQ .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-tbWmbeNXCQ .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-tbWmbeNXCQ .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-tbWmbeNXCQ .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-tbWmbeNXCQ .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-tbWmbeNXCQ .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-tbWmbeNXCQ .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-tbWmbeNXCQ .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-tbWmbeNXCQ .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-tbWmbeNXCQ .mbr-form {
    margin: 0 30px;
  }
}
.cid-tbWmbeNXCQ .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-tbWmbeNXCQ .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-tbWmbeNXCQ .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-tbWmbeNXCQ .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-tbWmbeNXCQ .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-tbWmbeNXCQ .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-tbWmbeNXCQ .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-tbWmbeNXCQ .mbr-section-title {
  color: #000000;
}
.cid-tbWmbeNXCQ .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NfviJpzH .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NfviJpzH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NfviJpzH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NfviJpzH .menu_box .navbar.opened,
  .cid-v7NfviJpzH .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NfviJpzH .navbar-dropdown {
  position: relative !important;
}
.cid-v7NfviJpzH nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NfviJpzH .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NfviJpzH .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NfviJpzH .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NfviJpzH .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NfviJpzH .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NfviJpzH .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NfviJpzH .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NfviJpzH .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NfviJpzH .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NfviJpzH .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NfviJpzH .offcanvas-body .mbr-text,
  .cid-v7NfviJpzH .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NfviJpzH .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NfviJpzH .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NfviJpzH .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NfviJpzH .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NfviJpzH .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NfviJpzH .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NfviJpzH .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NfviJpzH ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NfviJpzH .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NfviJpzH .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-v7NfviJpzH .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NfviJpzH li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NfviJpzH .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NfviJpzH .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NfviJpzH .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NfviJpzH .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NfviJpzH .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NfviJpzH .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NfviJpzH .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NfviJpzH .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NfviJpzH .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NfviJpzH .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NfviJpzH .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NfviJpzH .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NfviJpzH .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-v7NfviJpzH .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NfviJpzH .offcanvas_box {
    display: none;
  }
}
.cid-v7NfviJpzH .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NfviJpzH .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NfviJpzH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NfviJpzH .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NfviJpzH .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NfviJpzH .container {
  display: flex;
  margin: auto;
}
.cid-v7NfviJpzH .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-v7NfviJpzH .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NfviJpzH .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NfviJpzH .navbar-caption {
  color: #000000;
}
.cid-v7NfviJpzH .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NfviJpzH .navbar-nav {
    margin: 0;
  }
}
.cid-v7NfviJpzH .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NfviJpzH .dropdown-menu,
.cid-v7NfviJpzH .navbar.opened {
  background-color: false !important;
}
.cid-v7NfviJpzH .nav-item:focus,
.cid-v7NfviJpzH .nav-link:focus {
  outline: none;
}
.cid-v7NfviJpzH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NfviJpzH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NfviJpzH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NfviJpzH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NfviJpzH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NfviJpzH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NfviJpzH .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NfviJpzH .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NfviJpzH .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NfviJpzH .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NfviJpzH .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NfviJpzH .navbar.collapsed {
  justify-content: center;
}
.cid-v7NfviJpzH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NfviJpzH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NfviJpzH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NfviJpzH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NfviJpzH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NfviJpzH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NfviJpzH .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NfviJpzH .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NfviJpzH .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NfviJpzH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NfviJpzH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NfviJpzH .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NfviJpzH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NfviJpzH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NfviJpzH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NfviJpzH .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NfviJpzH .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NfviJpzH .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NfviJpzH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NfviJpzH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NfviJpzH .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NfviJpzH .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NfviJpzH .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NfviJpzH .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NfviJpzH .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-v7NfviJpzH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NfviJpzH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NfviJpzH .dropdown-item.active,
.cid-v7NfviJpzH .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NfviJpzH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NfviJpzH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NfviJpzH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NfviJpzH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NfviJpzH ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NfviJpzH .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NfviJpzH 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-v7NfviJpzH button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NfviJpzH button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NfviJpzH button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NfviJpzH button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NfviJpzH button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NfviJpzH nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NfviJpzH nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NfviJpzH nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NfviJpzH nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NfviJpzH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NfviJpzH .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-v7NfviJpzH .navbar {
    height: 70px;
  }
  .cid-v7NfviJpzH .navbar.opened {
    height: auto;
  }
  .cid-v7NfviJpzH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NfviJpzH .mbr-section-btn .btn,
.cid-v7NfviJpzH .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-v7NfviJpzH .mbr-section-btn .btn:first-child,
.cid-v7NfviJpzH .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NfviJpzH .mbr-section-btn .btn:focus,
.cid-v7NfviJpzH .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NfviJpzH .mbr-section-btn .btn span,
.cid-v7NfviJpzH .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-v7NfviJpzH .mbr-section-btn .btn:hover,
.cid-v7NfviJpzH .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NfviJpzH .mbr-section-btn .btn:hover span,
.cid-v7NfviJpzH .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NfviJpzH .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NfviJpzH .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NfviJpzH .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NfviJpzH .nav-link:hover {
  color: #124ad6;
}
.cid-v7NfviJpzH .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NfviJpzH .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NfviJpzH .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NfviJpzH .mbr-section-subtitle,
.cid-v7NfviJpzH .text_widget {
  text-align: left;
}
.cid-v7NfviJpzH a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NfvkqOMU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/195-1500x1000.jpg");
}
.cid-v7NfvkqOMU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NfvkqOMU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NfvkqOMU .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-v7NfvkqOMU .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NfvkqOMU .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NfvkqOMU .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: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-v7NfvkqOMU .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-v7NfvkqOMU .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NfvkqOMU .text-wrapper {
  margin: 0 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NfvkqOMU .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NfvkqOMU .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7NfvkqOMU .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
.cid-v7NfvkqOMU .mbr-section-title {
  color: #FFFFFF;
}
.cid-v7NfvkqOMU .mbr-section-title,
.cid-v7NfvkqOMU .mbr-section-btn {
  text-align: center;
}
.cid-v7NfvkJ3et {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7NfvkJ3et .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NfvkJ3et .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NfvkJ3et .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-v7NfvkJ3et .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NfvkJ3et .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NfvkJ3et .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: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-v7NfvkJ3et .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-v7NfvkJ3et .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NfvkJ3et .text-wrapper {
  margin-right: 160px;
  padding: 60px;
  background-color: #124ad6;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v7NfvkJ3et .text-wrapper {
    margin: 0 30px 30px;
    padding: 30px;
  }
}
.cid-v7NfvkJ3et .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7NfvkJ3et .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-v7NfvkJ3et .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v7NfvkJ3et .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-v7NfvkJ3et .image-wrapper {
  margin: -28rem 160px 13rem;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NfvkJ3et .image-wrapper {
    margin: 0 30px 5rem;
  }
}
.cid-v7NfvkJ3et .image-wrapper img {
  width: 420px;
  height: 560px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NfvkJ3et .image-wrapper img {
    width: 210px;
    height: 280px;
  }
}
.cid-v7NfvkJ3et .image-wrapper .img-absolute {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 878px;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NfvkJ3et .image-wrapper .img-absolute {
    max-width: 450px;
    height: 300px;
    right: 0;
    bottom: -5px;
  }
}
@media (max-width: 600px) {
  .cid-v7NfvkJ3et .image-wrapper .img-absolute {
    max-width: 250px;
  }
}
.cid-v7NfvkJ3et .mbr-desc {
  color: #FFFFFF;
}
.cid-v7NfvkJ3et .mbr-text {
  color: #FFFFFF;
}
.cid-v7Ngf98BiH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7Ngf98BiH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Ngf98BiH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Ngf98BiH .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-v7Ngf98BiH .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7Ngf98BiH .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7Ngf98BiH .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-v7Ngf98BiH .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7Ngf98BiH .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7Ngf98BiH .title-container {
  display: flex;
  justify-content: space-between;
  margin: 0 160px 110px;
  padding: 20px 40px 0 0;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7Ngf98BiH .title-container {
    display: block;
    margin: 0 30px 60px;
    padding: 12px 0 0 0;
  }
}
.cid-v7Ngf98BiH .title-container .title-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7Ngf98BiH .title-container .title-wrapper {
    width: 100%;
  }
}
.cid-v7Ngf98BiH .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7Ngf98BiH .title-container .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7Ngf98BiH .cards {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-v7Ngf98BiH .cards {
    margin: 0 30px;
  }
}
.cid-v7Ngf98BiH .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v7Ngf98BiH .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-v7Ngf98BiH .cards .card {
    margin-bottom: 40px;
  }
}
.cid-v7Ngf98BiH .cards .card .mbr-iconfont {
  width: 100%;
  height: 70px;
  font-size: 70px;
  color: #124ad6;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7Ngf98BiH .cards .card .mbr-iconfont {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .cid-v7Ngf98BiH .cards .card .mbr-iconfont {
    margin-bottom: 20px;
  }
}
.cid-v7Ngf98BiH .cards .card .card-title {
  margin-bottom: 0;
}
.cid-v7Ngf98BiH .cards .card .mbr-text {
  margin: 20px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v7Ngf98BiH .cards .card .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7Ngf98BiH .mbr-section-title {
  color: #000000;
}
.cid-v7Ngf98BiH .card-title {
  color: #000000;
}
.cid-v7Ngf98BiH .mbr-text {
  color: #000000;
}
.cid-v7NgCFlGOY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-v7NgCFlGOY .card-subtitle {
  text-align: left;
  margin-left: -15px;
  color: #000000;
}
.cid-v7NgCFlGOY .flex-column {
  transition: all 300ms ease;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
  border: 2px solid #000000;
}
.cid-v7NgCFlGOY .flex-column:hover {
  box-shadow: 5px 5px 0 0 #000000 !important;
  background-color: #124ad6;
}
.cid-v7NgCFlGOY .flex-column .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-v7NgCFlGOY .flex-column .iconfont-wrapper .mbr-iconfont {
  color: #000000;
}
.cid-v7NgCFlGOY .card-text {
  margin-bottom: 2rem;
  text-align: left;
  color: #000000;
}
.cid-v7NgCFlGOY .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-v7NgCFlGOY .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-v7NgCFlGOY img {
  border-radius: 10%;
  height: 65px;
  width: auto;
  margin: 0;
}
.cid-v7NgCFlGOY .flex-column .mbr-iconfont::before {
  font-size: 25px;
}
.cid-v7NgCFlGOY .card-title {
  margin-bottom: 4px;
  padding: 0;
  margin-left: -15px;
}
.cid-v7NgCFlGOY .col-12.col-md-6.col-lg-4 {
  margin-top: 30px;
}
.cid-v7NgCFlGOY .col-12.col-md-6.col-lg-4:nth-child(1) {
  margin-top: 0px;
}
.cid-v7NgCFlGOY .col-12.col-md-6.col-lg-4:nth-child(2) {
  margin-top: 0px;
}
.cid-v7NgCFlGOY .col-12.col-md-6.col-lg-4:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-v7NgCFlGOY .col-12.col-md-6.col-lg-4:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-v7NgCFlGOY .col-12.col-md-6.col-lg-4:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-v7NgCFlGOY .align {
  display: flex;
  align-items: center;
}
.cid-v7NgCFlGOY .mbr-section-title {
  margin-bottom: 56px;
  color: #000000;
  text-align: center;
}
.cid-v7NgCFlGOY .btn {
  margin-top: 20px;
  padding: 1rem 2rem;
}
.cid-v7NgCFlGOY .card-text,
.cid-v7NgCFlGOY .iconfont-wrapper {
  color: #000000;
}
.cid-v7NgCFlGOY .item-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-v7Nfvm0xsD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fbfbfb;
}
@media (max-width: 992px) {
  .cid-v7Nfvm0xsD .form-title,
  .cid-v7Nfvm0xsD .form-wrapper {
    padding: 0;
  }
}
.cid-v7Nfvm0xsD .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7Nfvm0xsD .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7Nfvm0xsD .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-v7Nfvm0xsD .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7Nfvm0xsD .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7Nfvm0xsD .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7Nfvm0xsD .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-v7Nfvm0xsD .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7Nfvm0xsD .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7Nfvm0xsD .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7Nfvm0xsD .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7Nfvm0xsD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7Nfvm0xsD .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7Nfvm0xsD .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7Nfvm0xsD .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7Nfvm0xsD .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7Nfvm0xsD .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7Nfvm0xsD .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7Nfvm0xsD .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7Nfvm0xsD .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7Nfvm0xsD .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7Nfvm0xsD .mbr-section-title {
  color: #000000;
}
.cid-v7Nfvm0xsD .mbr-section-subtitle {
  color: #000000;
  text-align: left;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7Njf2oFK8 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7Njf2oFK8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7Njf2oFK8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7Njf2oFK8 .menu_box .navbar.opened,
  .cid-v7Njf2oFK8 .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7Njf2oFK8 .navbar-dropdown {
  position: relative !important;
}
.cid-v7Njf2oFK8 nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7Njf2oFK8 .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7Njf2oFK8 .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7Njf2oFK8 .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7Njf2oFK8 .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7Njf2oFK8 .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7Njf2oFK8 .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7Njf2oFK8 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7Njf2oFK8 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7Njf2oFK8 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7Njf2oFK8 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7Njf2oFK8 .offcanvas-body .mbr-text,
  .cid-v7Njf2oFK8 .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7Njf2oFK8 .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7Njf2oFK8 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7Njf2oFK8 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7Njf2oFK8 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7Njf2oFK8 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7Njf2oFK8 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7Njf2oFK8 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7Njf2oFK8 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7Njf2oFK8 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7Njf2oFK8 .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-v7Njf2oFK8 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7Njf2oFK8 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7Njf2oFK8 .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7Njf2oFK8 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7Njf2oFK8 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7Njf2oFK8 .nav-item {
    margin: 0 !important;
  }
}
.cid-v7Njf2oFK8 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7Njf2oFK8 .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7Njf2oFK8 .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7Njf2oFK8 .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7Njf2oFK8 .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7Njf2oFK8 .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7Njf2oFK8 .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7Njf2oFK8 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7Njf2oFK8 .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-v7Njf2oFK8 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7Njf2oFK8 .offcanvas_box {
    display: none;
  }
}
.cid-v7Njf2oFK8 .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7Njf2oFK8 .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7Njf2oFK8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7Njf2oFK8 .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7Njf2oFK8 .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7Njf2oFK8 .container {
  display: flex;
  margin: auto;
}
.cid-v7Njf2oFK8 .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-v7Njf2oFK8 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7Njf2oFK8 .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7Njf2oFK8 .navbar-caption {
  color: #000000;
}
.cid-v7Njf2oFK8 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7Njf2oFK8 .navbar-nav {
    margin: 0;
  }
}
.cid-v7Njf2oFK8 .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7Njf2oFK8 .dropdown-menu,
.cid-v7Njf2oFK8 .navbar.opened {
  background-color: false !important;
}
.cid-v7Njf2oFK8 .nav-item:focus,
.cid-v7Njf2oFK8 .nav-link:focus {
  outline: none;
}
.cid-v7Njf2oFK8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7Njf2oFK8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7Njf2oFK8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7Njf2oFK8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7Njf2oFK8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7Njf2oFK8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7Njf2oFK8 .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7Njf2oFK8 .navbar.opened {
  transition: all 0.3s;
}
.cid-v7Njf2oFK8 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7Njf2oFK8 .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7Njf2oFK8 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7Njf2oFK8 .navbar.collapsed {
  justify-content: center;
}
.cid-v7Njf2oFK8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7Njf2oFK8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7Njf2oFK8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7Njf2oFK8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7Njf2oFK8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7Njf2oFK8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7Njf2oFK8 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7Njf2oFK8 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7Njf2oFK8 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7Njf2oFK8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7Njf2oFK8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7Njf2oFK8 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7Njf2oFK8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7Njf2oFK8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7Njf2oFK8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7Njf2oFK8 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7Njf2oFK8 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7Njf2oFK8 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7Njf2oFK8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7Njf2oFK8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7Njf2oFK8 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7Njf2oFK8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7Njf2oFK8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7Njf2oFK8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7Njf2oFK8 .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-v7Njf2oFK8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7Njf2oFK8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7Njf2oFK8 .dropdown-item.active,
.cid-v7Njf2oFK8 .dropdown-item:active {
  background-color: transparent;
}
.cid-v7Njf2oFK8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7Njf2oFK8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7Njf2oFK8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7Njf2oFK8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7Njf2oFK8 ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7Njf2oFK8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7Njf2oFK8 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-v7Njf2oFK8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7Njf2oFK8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7Njf2oFK8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7Njf2oFK8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7Njf2oFK8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7Njf2oFK8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7Njf2oFK8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7Njf2oFK8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7Njf2oFK8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7Njf2oFK8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7Njf2oFK8 .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-v7Njf2oFK8 .navbar {
    height: 70px;
  }
  .cid-v7Njf2oFK8 .navbar.opened {
    height: auto;
  }
  .cid-v7Njf2oFK8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7Njf2oFK8 .mbr-section-btn .btn,
.cid-v7Njf2oFK8 .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-v7Njf2oFK8 .mbr-section-btn .btn:first-child,
.cid-v7Njf2oFK8 .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7Njf2oFK8 .mbr-section-btn .btn:focus,
.cid-v7Njf2oFK8 .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7Njf2oFK8 .mbr-section-btn .btn span,
.cid-v7Njf2oFK8 .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-v7Njf2oFK8 .mbr-section-btn .btn:hover,
.cid-v7Njf2oFK8 .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7Njf2oFK8 .mbr-section-btn .btn:hover span,
.cid-v7Njf2oFK8 .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7Njf2oFK8 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7Njf2oFK8 .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7Njf2oFK8 .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7Njf2oFK8 .nav-link:hover {
  color: #124ad6;
}
.cid-v7Njf2oFK8 .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7Njf2oFK8 .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7Njf2oFK8 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7Njf2oFK8 .mbr-section-subtitle,
.cid-v7Njf2oFK8 .text_widget {
  text-align: left;
}
.cid-v7Njf2oFK8 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NjwXCnak {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/11173-1-1500x1000.jpg");
}
.cid-v7NjwXCnak .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NjwXCnak .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NjwXCnak .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-v7NjwXCnak .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NjwXCnak .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NjwXCnak .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-v7NjwXCnak .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NjwXCnak .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NjwXCnak .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NjwXCnak .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-v7NjwXCnak .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-v7NjwXCnak .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7NjwXCnak .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-v7NjwXCnak .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-v7NjwXCnak .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-v7NjwXCnak .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-v7NjwXCnak .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NjwXCnak .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v7NjwXCnak .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-v7NjwXCnak .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-v7NjwXCnak .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-v7NjwXCnak .mbr-link,
.cid-v7NjwXCnak .mbr-iconfont {
  color: #8c8c8c;
}
.cid-v7NjwXCnak .mbr-section-title {
  color: #000000;
}
.cid-v7NjwXCnak .mbr-text {
  color: #000000;
}
.cid-v7NjEaVcti {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7NjEaVcti .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NjEaVcti .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NjEaVcti .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-v7NjEaVcti .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NjEaVcti .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NjEaVcti .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: #ffffff;
  color: #124ad6;
  margin: 2px 0 0 12px;
  padding-left: 2px;
  transition: all .33s ease;
}
.cid-v7NjEaVcti .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #ffffff !important;
}
.cid-v7NjEaVcti .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NjEaVcti .text-wrapper {
  margin-right: 160px;
  padding: 60px;
  background-color: #124ad6;
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v7NjEaVcti .text-wrapper {
    margin: 0 30px 30px;
    padding: 30px;
  }
}
.cid-v7NjEaVcti .text-wrapper .mbr-desc {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7NjEaVcti .text-wrapper .mbr-desc {
    margin-bottom: 12px;
  }
}
.cid-v7NjEaVcti .text-wrapper .mbr-text {
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .cid-v7NjEaVcti .text-wrapper .mbr-text {
    margin-bottom: 15px;
  }
}
.cid-v7NjEaVcti .image-wrapper {
  margin: -28rem 160px 13rem;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NjEaVcti .image-wrapper {
    margin: 0 30px 5rem;
  }
}
.cid-v7NjEaVcti .image-wrapper img {
  width: 420px;
  height: 560px;
  object-fit: cover;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NjEaVcti .image-wrapper img {
    width: 210px;
    height: 280px;
  }
}
.cid-v7NjEaVcti .image-wrapper .img-absolute {
  position: absolute;
  right: -8rem;
  bottom: -13rem;
  width: 878px;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NjEaVcti .image-wrapper .img-absolute {
    max-width: 450px;
    height: 300px;
    right: 0;
    bottom: -5px;
  }
}
@media (max-width: 600px) {
  .cid-v7NjEaVcti .image-wrapper .img-absolute {
    max-width: 250px;
  }
}
.cid-v7NjEaVcti .mbr-desc {
  color: #FFFFFF;
}
.cid-v7NjEaVcti .mbr-text {
  color: #FFFFFF;
}
.cid-v7NjQrpDw9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7NjQrpDw9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NjQrpDw9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NjQrpDw9 .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-v7NjQrpDw9 .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NjQrpDw9 .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NjQrpDw9 .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-v7NjQrpDw9 .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NjQrpDw9 .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NjQrpDw9 .title-container {
  display: flex;
  justify-content: space-between;
  margin: 0 160px 110px;
  padding: 20px 40px 0 0;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NjQrpDw9 .title-container {
    display: block;
    margin: 0 30px 60px;
    padding: 12px 0 0 0;
  }
}
.cid-v7NjQrpDw9 .title-container .title-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7NjQrpDw9 .title-container .title-wrapper {
    width: 100%;
  }
}
.cid-v7NjQrpDw9 .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7NjQrpDw9 .title-container .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NjQrpDw9 .cards {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-v7NjQrpDw9 .cards {
    margin: 0 30px;
  }
}
.cid-v7NjQrpDw9 .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v7NjQrpDw9 .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-v7NjQrpDw9 .cards .card {
    margin-bottom: 40px;
  }
}
.cid-v7NjQrpDw9 .cards .card .mbr-iconfont {
  width: 100%;
  height: 70px;
  font-size: 70px;
  color: #124ad6;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NjQrpDw9 .cards .card .mbr-iconfont {
    margin-bottom: 25px;
  }
}
@media (max-width: 768px) {
  .cid-v7NjQrpDw9 .cards .card .mbr-iconfont {
    margin-bottom: 20px;
  }
}
.cid-v7NjQrpDw9 .cards .card .card-title {
  margin-bottom: 0;
}
.cid-v7NjQrpDw9 .cards .card .mbr-text {
  margin: 20px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v7NjQrpDw9 .cards .card .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NjQrpDw9 .mbr-section-title {
  color: #000000;
}
.cid-v7NjQrpDw9 .card-title {
  color: #000000;
}
.cid-v7NjQrpDw9 .mbr-text {
  color: #000000;
}
.cid-v7Nk4IPHcD {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #124ad6;
}
.cid-v7Nk4IPHcD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7Nk4IPHcD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7Nk4IPHcD .title-wrapper {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
  margin: 0 160px 200px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7Nk4IPHcD .title-wrapper {
    padding-top: 12px;
    margin: 0 30px 100px;
  }
}
.cid-v7Nk4IPHcD .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7Nk4IPHcD .cards {
  padding: 0 175px;
  margin: 0;
}
@media (max-width: 992px) {
  .cid-v7Nk4IPHcD .cards {
    padding: 0 43px;
  }
}
.cid-v7Nk4IPHcD .cards .card:first-child {
  padding: 0 35px 0 0;
}
@media (min-width: 1400px) {
  .cid-v7Nk4IPHcD .cards .card:first-child {
    padding: 0 85px 0 0;
  }
}
@media (max-width: 992px) {
  .cid-v7Nk4IPHcD .cards .card:first-child {
    padding: 0;
  }
}
.cid-v7Nk4IPHcD .cards .card:nth-child(2) {
  padding: 0 20px;
}
@media (min-width: 1400px) {
  .cid-v7Nk4IPHcD .cards .card:nth-child(2) {
    padding: 0 55px;
  }
}
@media (max-width: 992px) {
  .cid-v7Nk4IPHcD .cards .card:nth-child(2) {
    padding: 0;
  }
}
.cid-v7Nk4IPHcD .cards .card:last-child {
  padding: 0 0 0 35px;
}
@media (min-width: 1400px) {
  .cid-v7Nk4IPHcD .cards .card:last-child {
    padding: 0 0 0 85px;
  }
}
@media (max-width: 992px) {
  .cid-v7Nk4IPHcD .cards .card:last-child {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-v7Nk4IPHcD .cards .card {
    margin-bottom: 60px;
  }
}
.cid-v7Nk4IPHcD .cards .card .card-wrapper {
  padding-top: 20px;
  border-top: 2px solid #ffffff;
}
@media (max-width: 992px) {
  .cid-v7Nk4IPHcD .cards .card .card-wrapper {
    padding-top: 12px;
  }
}
.cid-v7Nk4IPHcD .cards .card .card-wrapper .mbr-text {
  margin: 0;
}
.cid-v7Nk4IPHcD .mbr-section-title {
  color: #FFFFFF;
}
.cid-v7Nk4IPHcD .mbr-text {
  color: #FFFFFF;
}
.cid-v7NkmGWbki {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NkmGWbki .form-title,
  .cid-v7NkmGWbki .form-wrapper {
    padding: 0;
  }
}
.cid-v7NkmGWbki .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NkmGWbki .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NkmGWbki .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-v7NkmGWbki .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NkmGWbki .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NkmGWbki .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NkmGWbki .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-v7NkmGWbki .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NkmGWbki .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NkmGWbki .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NkmGWbki .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NkmGWbki .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NkmGWbki .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NkmGWbki .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NkmGWbki .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NkmGWbki .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NkmGWbki .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NkmGWbki .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NkmGWbki .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NkmGWbki .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NkmGWbki .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NkmGWbki .mbr-section-title {
  color: #000000;
}
.cid-v7NkmGWbki .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NkCLddkw .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NkCLddkw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NkCLddkw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NkCLddkw .menu_box .navbar.opened,
  .cid-v7NkCLddkw .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NkCLddkw .navbar-dropdown {
  position: relative !important;
}
.cid-v7NkCLddkw nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NkCLddkw .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NkCLddkw .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NkCLddkw .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NkCLddkw .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NkCLddkw .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NkCLddkw .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NkCLddkw .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NkCLddkw .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NkCLddkw .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NkCLddkw .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NkCLddkw .offcanvas-body .mbr-text,
  .cid-v7NkCLddkw .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NkCLddkw .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NkCLddkw .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NkCLddkw .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NkCLddkw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NkCLddkw .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NkCLddkw .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NkCLddkw .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NkCLddkw ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NkCLddkw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NkCLddkw .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-v7NkCLddkw .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NkCLddkw li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NkCLddkw .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NkCLddkw .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NkCLddkw .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NkCLddkw .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NkCLddkw .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NkCLddkw .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NkCLddkw .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NkCLddkw .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NkCLddkw .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NkCLddkw .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NkCLddkw .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NkCLddkw .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NkCLddkw .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-v7NkCLddkw .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NkCLddkw .offcanvas_box {
    display: none;
  }
}
.cid-v7NkCLddkw .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NkCLddkw .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NkCLddkw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NkCLddkw .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NkCLddkw .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NkCLddkw .container {
  display: flex;
  margin: auto;
}
.cid-v7NkCLddkw .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-v7NkCLddkw .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NkCLddkw .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NkCLddkw .navbar-caption {
  color: #000000;
}
.cid-v7NkCLddkw .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NkCLddkw .navbar-nav {
    margin: 0;
  }
}
.cid-v7NkCLddkw .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NkCLddkw .dropdown-menu,
.cid-v7NkCLddkw .navbar.opened {
  background-color: false !important;
}
.cid-v7NkCLddkw .nav-item:focus,
.cid-v7NkCLddkw .nav-link:focus {
  outline: none;
}
.cid-v7NkCLddkw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NkCLddkw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NkCLddkw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NkCLddkw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NkCLddkw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NkCLddkw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NkCLddkw .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NkCLddkw .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NkCLddkw .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NkCLddkw .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NkCLddkw .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NkCLddkw .navbar.collapsed {
  justify-content: center;
}
.cid-v7NkCLddkw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NkCLddkw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NkCLddkw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NkCLddkw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NkCLddkw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NkCLddkw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NkCLddkw .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NkCLddkw .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NkCLddkw .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NkCLddkw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NkCLddkw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NkCLddkw .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NkCLddkw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NkCLddkw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NkCLddkw .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NkCLddkw .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NkCLddkw .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NkCLddkw .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NkCLddkw .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NkCLddkw .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NkCLddkw .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NkCLddkw .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NkCLddkw .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NkCLddkw .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NkCLddkw .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-v7NkCLddkw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NkCLddkw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NkCLddkw .dropdown-item.active,
.cid-v7NkCLddkw .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NkCLddkw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NkCLddkw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NkCLddkw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NkCLddkw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NkCLddkw ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NkCLddkw .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NkCLddkw 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-v7NkCLddkw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NkCLddkw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NkCLddkw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NkCLddkw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NkCLddkw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NkCLddkw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NkCLddkw nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NkCLddkw nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NkCLddkw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NkCLddkw a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NkCLddkw .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-v7NkCLddkw .navbar {
    height: 70px;
  }
  .cid-v7NkCLddkw .navbar.opened {
    height: auto;
  }
  .cid-v7NkCLddkw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NkCLddkw .mbr-section-btn .btn,
.cid-v7NkCLddkw .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-v7NkCLddkw .mbr-section-btn .btn:first-child,
.cid-v7NkCLddkw .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NkCLddkw .mbr-section-btn .btn:focus,
.cid-v7NkCLddkw .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NkCLddkw .mbr-section-btn .btn span,
.cid-v7NkCLddkw .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-v7NkCLddkw .mbr-section-btn .btn:hover,
.cid-v7NkCLddkw .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NkCLddkw .mbr-section-btn .btn:hover span,
.cid-v7NkCLddkw .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NkCLddkw .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NkCLddkw .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NkCLddkw .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NkCLddkw .nav-link:hover {
  color: #124ad6;
}
.cid-v7NkCLddkw .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NkCLddkw .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NkCLddkw .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NkCLddkw .mbr-section-subtitle,
.cid-v7NkCLddkw .text_widget {
  text-align: left;
}
.cid-v7NkCLddkw a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NlTvWo5s {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/39826-1-1500x1000.jpg");
}
.cid-v7NlTvWo5s .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NlTvWo5s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NlTvWo5s .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-v7NlTvWo5s .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NlTvWo5s .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NlTvWo5s .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-v7NlTvWo5s .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NlTvWo5s .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NlTvWo5s .title-wrapper {
  position: relative;
  margin-top: 20rem;
  padding: 80px 160px 80px 100px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NlTvWo5s .title-wrapper {
    padding: 60px 60px 60px 60px;
  }
}
@media (max-width: 768px) {
  .cid-v7NlTvWo5s .title-wrapper {
    padding: 40px 30px 40px 30px;
  }
}
.cid-v7NlTvWo5s .title-wrapper .title-link-wrap {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .cid-v7NlTvWo5s .title-wrapper .title-link-wrap {
    margin-bottom: 12px;
  }
}
.cid-v7NlTvWo5s .title-wrapper .title-link-wrap .title-link {
  display: inline-flex;
}
.cid-v7NlTvWo5s .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-v7NlTvWo5s .title-wrapper .title-link-wrap .title-link .mbr-link {
  margin: 0;
}
.cid-v7NlTvWo5s .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NlTvWo5s .title-wrapper .mbr-section-title {
    margin-bottom: 25px;
  }
}
.cid-v7NlTvWo5s .title-wrapper .mbr-text {
  margin-bottom: 10px;
}
@media (max-width: 992px) {
  .cid-v7NlTvWo5s .title-wrapper .mbr-text {
    margin-bottom: 5px;
  }
}
.cid-v7NlTvWo5s .title-link:hover .title-link span {
  transform: translate(-5px, 0);
}
.cid-v7NlTvWo5s .mbr-link,
.cid-v7NlTvWo5s .mbr-iconfont {
  color: #8c8c8c;
}
.cid-v7NlTvWo5s .mbr-section-title {
  color: #000000;
}
.cid-v7NlTvWo5s .mbr-text {
  color: #000000;
}
.cid-v7NmaaQTvk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7NmaaQTvk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NmaaQTvk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NmaaQTvk .mbr-section-btn .btn {
  height: 21px;
  min-width: 70px;
  position: relative;
  overflow: visible;
  padding: 0 12px 0 0;
  justify-content: flex-start;
  margin-top: 0;
  margin-left: 28px;
  box-shadow: none;
}
.cid-v7NmaaQTvk .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NmaaQTvk .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NmaaQTvk .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-v7NmaaQTvk .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NmaaQTvk .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NmaaQTvk .title-container {
  display: flex;
  justify-content: space-between;
  margin: 0 160px 200px;
  padding: 20px 40px 0 0;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NmaaQTvk .title-container {
    display: block;
    margin: 0 30px 100px;
    padding: 12px 0 0 0;
  }
}
.cid-v7NmaaQTvk .title-container .title-wrapper {
  width: 50%;
}
@media (max-width: 992px) {
  .cid-v7NmaaQTvk .title-container .title-wrapper {
    width: 100%;
  }
}
.cid-v7NmaaQTvk .title-container .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7NmaaQTvk .title-container .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NmaaQTvk .cards {
  margin: 0 160px;
}
@media (max-width: 992px) {
  .cid-v7NmaaQTvk .cards {
    margin: 0 16px;
  }
}
@media (max-width: 1040px) {
  .cid-v7NmaaQTvk .cards .card {
    padding: 0 12px;
  }
}
.cid-v7NmaaQTvk .cards .card .mbr-amount {
  margin: 0;
  padding-bottom: 20px;
  border-bottom: 2px solid #124ad6;
}
@media (max-width: 992px) {
  .cid-v7NmaaQTvk .cards .card .mbr-amount {
    padding-bottom: 12px;
  }
}
.cid-v7NmaaQTvk .cards .card .mbr-desc {
  margin: 20px 0 0 0;
}
@media (max-width: 992px) {
  .cid-v7NmaaQTvk .cards .card .mbr-desc {
    margin: 12px 0 0 0;
  }
}
.cid-v7NmaaQTvk .mbr-section-title {
  color: #000000;
}
.cid-v7NmaaQTvk .mbr-amount {
  color: #124ad6;
}
.cid-v7NmaaQTvk .mbr-desc {
  color: #000000;
}
.cid-v7NkCPeNZg {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NkCPeNZg .form-title,
  .cid-v7NkCPeNZg .form-wrapper {
    padding: 0;
  }
}
.cid-v7NkCPeNZg .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NkCPeNZg .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NkCPeNZg .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-v7NkCPeNZg .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NkCPeNZg .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NkCPeNZg .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NkCPeNZg .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-v7NkCPeNZg .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NkCPeNZg .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NkCPeNZg .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NkCPeNZg .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NkCPeNZg .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NkCPeNZg .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NkCPeNZg .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NkCPeNZg .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NkCPeNZg .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NkCPeNZg .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NkCPeNZg .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NkCPeNZg .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NkCPeNZg .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NkCPeNZg .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NkCPeNZg .mbr-section-title {
  color: #000000;
}
.cid-v7NkCPeNZg .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7Nn6lpzoc .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7Nn6lpzoc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7Nn6lpzoc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7Nn6lpzoc .menu_box .navbar.opened,
  .cid-v7Nn6lpzoc .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7Nn6lpzoc .navbar-dropdown {
  position: relative !important;
}
.cid-v7Nn6lpzoc nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7Nn6lpzoc .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7Nn6lpzoc .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7Nn6lpzoc .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7Nn6lpzoc .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7Nn6lpzoc .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7Nn6lpzoc .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7Nn6lpzoc .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7Nn6lpzoc .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7Nn6lpzoc .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7Nn6lpzoc .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7Nn6lpzoc .offcanvas-body .mbr-text,
  .cid-v7Nn6lpzoc .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7Nn6lpzoc .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7Nn6lpzoc .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7Nn6lpzoc .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7Nn6lpzoc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7Nn6lpzoc .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7Nn6lpzoc .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7Nn6lpzoc .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7Nn6lpzoc ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7Nn6lpzoc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7Nn6lpzoc .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-v7Nn6lpzoc .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7Nn6lpzoc li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7Nn6lpzoc .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7Nn6lpzoc .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7Nn6lpzoc .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7Nn6lpzoc .nav-item {
    margin: 0 !important;
  }
}
.cid-v7Nn6lpzoc .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7Nn6lpzoc .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7Nn6lpzoc .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7Nn6lpzoc .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7Nn6lpzoc .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7Nn6lpzoc .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7Nn6lpzoc .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7Nn6lpzoc .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7Nn6lpzoc .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-v7Nn6lpzoc .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7Nn6lpzoc .offcanvas_box {
    display: none;
  }
}
.cid-v7Nn6lpzoc .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7Nn6lpzoc .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7Nn6lpzoc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7Nn6lpzoc .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7Nn6lpzoc .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7Nn6lpzoc .container {
  display: flex;
  margin: auto;
}
.cid-v7Nn6lpzoc .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-v7Nn6lpzoc .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7Nn6lpzoc .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7Nn6lpzoc .navbar-caption {
  color: #000000;
}
.cid-v7Nn6lpzoc .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7Nn6lpzoc .navbar-nav {
    margin: 0;
  }
}
.cid-v7Nn6lpzoc .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7Nn6lpzoc .dropdown-menu,
.cid-v7Nn6lpzoc .navbar.opened {
  background-color: false !important;
}
.cid-v7Nn6lpzoc .nav-item:focus,
.cid-v7Nn6lpzoc .nav-link:focus {
  outline: none;
}
.cid-v7Nn6lpzoc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7Nn6lpzoc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7Nn6lpzoc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7Nn6lpzoc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7Nn6lpzoc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7Nn6lpzoc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7Nn6lpzoc .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7Nn6lpzoc .navbar.opened {
  transition: all 0.3s;
}
.cid-v7Nn6lpzoc .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7Nn6lpzoc .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7Nn6lpzoc .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7Nn6lpzoc .navbar.collapsed {
  justify-content: center;
}
.cid-v7Nn6lpzoc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7Nn6lpzoc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7Nn6lpzoc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7Nn6lpzoc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7Nn6lpzoc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7Nn6lpzoc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7Nn6lpzoc .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7Nn6lpzoc .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7Nn6lpzoc .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7Nn6lpzoc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7Nn6lpzoc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7Nn6lpzoc .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7Nn6lpzoc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7Nn6lpzoc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7Nn6lpzoc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7Nn6lpzoc .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7Nn6lpzoc .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7Nn6lpzoc .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7Nn6lpzoc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7Nn6lpzoc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7Nn6lpzoc .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7Nn6lpzoc .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7Nn6lpzoc .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7Nn6lpzoc .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7Nn6lpzoc .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-v7Nn6lpzoc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7Nn6lpzoc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7Nn6lpzoc .dropdown-item.active,
.cid-v7Nn6lpzoc .dropdown-item:active {
  background-color: transparent;
}
.cid-v7Nn6lpzoc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7Nn6lpzoc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7Nn6lpzoc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7Nn6lpzoc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7Nn6lpzoc ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7Nn6lpzoc .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7Nn6lpzoc 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-v7Nn6lpzoc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7Nn6lpzoc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7Nn6lpzoc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7Nn6lpzoc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7Nn6lpzoc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7Nn6lpzoc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7Nn6lpzoc nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7Nn6lpzoc nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7Nn6lpzoc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7Nn6lpzoc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7Nn6lpzoc .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-v7Nn6lpzoc .navbar {
    height: 70px;
  }
  .cid-v7Nn6lpzoc .navbar.opened {
    height: auto;
  }
  .cid-v7Nn6lpzoc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7Nn6lpzoc .mbr-section-btn .btn,
.cid-v7Nn6lpzoc .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-v7Nn6lpzoc .mbr-section-btn .btn:first-child,
.cid-v7Nn6lpzoc .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7Nn6lpzoc .mbr-section-btn .btn:focus,
.cid-v7Nn6lpzoc .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7Nn6lpzoc .mbr-section-btn .btn span,
.cid-v7Nn6lpzoc .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-v7Nn6lpzoc .mbr-section-btn .btn:hover,
.cid-v7Nn6lpzoc .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7Nn6lpzoc .mbr-section-btn .btn:hover span,
.cid-v7Nn6lpzoc .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7Nn6lpzoc .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7Nn6lpzoc .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7Nn6lpzoc .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7Nn6lpzoc .nav-link:hover {
  color: #124ad6;
}
.cid-v7Nn6lpzoc .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7Nn6lpzoc .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7Nn6lpzoc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7Nn6lpzoc .mbr-section-subtitle,
.cid-v7Nn6lpzoc .text_widget {
  text-align: left;
}
.cid-v7Nn6lpzoc a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NBaYEMAz {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NBaYEMAz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NBaYEMAz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NBaYEMAz .row {
  justify-content: space-between;
}
.cid-v7NBaYEMAz .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NBaYEMAz .content-wrapper {
    padding: 0;
  }
}
.cid-v7NBaYEMAz .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NBaYEMAz .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NBaYEMAz .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NBaYEMAz .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NBaYEMAz .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NBaYEMAz .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NBaYEMAz .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NBaYEMAz .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NBaYEMAz .mbr-section-title {
  color: #000000;
}
.cid-v7NBaYEMAz .mbr-desc {
  color: #000000;
}
.cid-v7NBaYEMAz .mbr-text {
  color: #000000;
}
.cid-v7Nn6nGlem {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7Nn6nGlem .form-title,
  .cid-v7Nn6nGlem .form-wrapper {
    padding: 0;
  }
}
.cid-v7Nn6nGlem .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7Nn6nGlem .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7Nn6nGlem .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-v7Nn6nGlem .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7Nn6nGlem .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7Nn6nGlem .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7Nn6nGlem .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-v7Nn6nGlem .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7Nn6nGlem .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7Nn6nGlem .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7Nn6nGlem .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7Nn6nGlem .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7Nn6nGlem .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7Nn6nGlem .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7Nn6nGlem .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7Nn6nGlem .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7Nn6nGlem .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7Nn6nGlem .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7Nn6nGlem .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7Nn6nGlem .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7Nn6nGlem .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7Nn6nGlem .mbr-section-title {
  color: #000000;
}
.cid-v7Nn6nGlem .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NC7gAMbX .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NC7gAMbX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NC7gAMbX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NC7gAMbX .menu_box .navbar.opened,
  .cid-v7NC7gAMbX .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NC7gAMbX .navbar-dropdown {
  position: relative !important;
}
.cid-v7NC7gAMbX nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NC7gAMbX .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NC7gAMbX .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NC7gAMbX .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NC7gAMbX .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NC7gAMbX .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NC7gAMbX .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NC7gAMbX .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NC7gAMbX .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NC7gAMbX .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NC7gAMbX .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NC7gAMbX .offcanvas-body .mbr-text,
  .cid-v7NC7gAMbX .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NC7gAMbX .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NC7gAMbX .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NC7gAMbX .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NC7gAMbX .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NC7gAMbX .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NC7gAMbX .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NC7gAMbX .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NC7gAMbX ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NC7gAMbX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NC7gAMbX .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-v7NC7gAMbX .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NC7gAMbX li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NC7gAMbX .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NC7gAMbX .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NC7gAMbX .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NC7gAMbX .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NC7gAMbX .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NC7gAMbX .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NC7gAMbX .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NC7gAMbX .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NC7gAMbX .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NC7gAMbX .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NC7gAMbX .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NC7gAMbX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NC7gAMbX .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-v7NC7gAMbX .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NC7gAMbX .offcanvas_box {
    display: none;
  }
}
.cid-v7NC7gAMbX .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NC7gAMbX .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NC7gAMbX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NC7gAMbX .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NC7gAMbX .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NC7gAMbX .container {
  display: flex;
  margin: auto;
}
.cid-v7NC7gAMbX .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-v7NC7gAMbX .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NC7gAMbX .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NC7gAMbX .navbar-caption {
  color: #000000;
}
.cid-v7NC7gAMbX .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NC7gAMbX .navbar-nav {
    margin: 0;
  }
}
.cid-v7NC7gAMbX .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NC7gAMbX .dropdown-menu,
.cid-v7NC7gAMbX .navbar.opened {
  background-color: false !important;
}
.cid-v7NC7gAMbX .nav-item:focus,
.cid-v7NC7gAMbX .nav-link:focus {
  outline: none;
}
.cid-v7NC7gAMbX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NC7gAMbX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NC7gAMbX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NC7gAMbX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NC7gAMbX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NC7gAMbX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NC7gAMbX .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NC7gAMbX .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NC7gAMbX .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NC7gAMbX .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NC7gAMbX .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NC7gAMbX .navbar.collapsed {
  justify-content: center;
}
.cid-v7NC7gAMbX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NC7gAMbX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NC7gAMbX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NC7gAMbX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NC7gAMbX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NC7gAMbX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NC7gAMbX .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NC7gAMbX .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NC7gAMbX .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NC7gAMbX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NC7gAMbX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NC7gAMbX .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NC7gAMbX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NC7gAMbX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NC7gAMbX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NC7gAMbX .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NC7gAMbX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NC7gAMbX .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NC7gAMbX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NC7gAMbX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NC7gAMbX .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NC7gAMbX .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NC7gAMbX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NC7gAMbX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NC7gAMbX .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-v7NC7gAMbX .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NC7gAMbX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NC7gAMbX .dropdown-item.active,
.cid-v7NC7gAMbX .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NC7gAMbX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NC7gAMbX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NC7gAMbX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NC7gAMbX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NC7gAMbX ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NC7gAMbX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NC7gAMbX 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-v7NC7gAMbX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NC7gAMbX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NC7gAMbX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NC7gAMbX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NC7gAMbX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NC7gAMbX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NC7gAMbX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NC7gAMbX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NC7gAMbX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NC7gAMbX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NC7gAMbX .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-v7NC7gAMbX .navbar {
    height: 70px;
  }
  .cid-v7NC7gAMbX .navbar.opened {
    height: auto;
  }
  .cid-v7NC7gAMbX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NC7gAMbX .mbr-section-btn .btn,
.cid-v7NC7gAMbX .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-v7NC7gAMbX .mbr-section-btn .btn:first-child,
.cid-v7NC7gAMbX .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NC7gAMbX .mbr-section-btn .btn:focus,
.cid-v7NC7gAMbX .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NC7gAMbX .mbr-section-btn .btn span,
.cid-v7NC7gAMbX .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-v7NC7gAMbX .mbr-section-btn .btn:hover,
.cid-v7NC7gAMbX .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NC7gAMbX .mbr-section-btn .btn:hover span,
.cid-v7NC7gAMbX .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NC7gAMbX .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NC7gAMbX .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NC7gAMbX .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NC7gAMbX .nav-link:hover {
  color: #124ad6;
}
.cid-v7NC7gAMbX .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NC7gAMbX .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NC7gAMbX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NC7gAMbX .mbr-section-subtitle,
.cid-v7NC7gAMbX .text_widget {
  text-align: left;
}
.cid-v7NC7gAMbX a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NC7hEOQh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NC7hEOQh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NC7hEOQh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NC7hEOQh .row {
  justify-content: space-between;
}
.cid-v7NC7hEOQh .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NC7hEOQh .content-wrapper {
    padding: 0;
  }
}
.cid-v7NC7hEOQh .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NC7hEOQh .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NC7hEOQh .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NC7hEOQh .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NC7hEOQh .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NC7hEOQh .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NC7hEOQh .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NC7hEOQh .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NC7hEOQh .mbr-section-title {
  color: #000000;
}
.cid-v7NC7hEOQh .mbr-desc {
  color: #000000;
}
.cid-v7NC7hEOQh .mbr-text {
  color: #000000;
}
.cid-v7NC7i7kNH {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NC7i7kNH .form-title,
  .cid-v7NC7i7kNH .form-wrapper {
    padding: 0;
  }
}
.cid-v7NC7i7kNH .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NC7i7kNH .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NC7i7kNH .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-v7NC7i7kNH .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NC7i7kNH .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NC7i7kNH .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NC7i7kNH .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-v7NC7i7kNH .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NC7i7kNH .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NC7i7kNH .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NC7i7kNH .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NC7i7kNH .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NC7i7kNH .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NC7i7kNH .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NC7i7kNH .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NC7i7kNH .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NC7i7kNH .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NC7i7kNH .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NC7i7kNH .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NC7i7kNH .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NC7i7kNH .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NC7i7kNH .mbr-section-title {
  color: #000000;
}
.cid-v7NC7i7kNH .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NCmR5BTp .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NCmR5BTp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NCmR5BTp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NCmR5BTp .menu_box .navbar.opened,
  .cid-v7NCmR5BTp .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NCmR5BTp .navbar-dropdown {
  position: relative !important;
}
.cid-v7NCmR5BTp nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NCmR5BTp .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NCmR5BTp .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NCmR5BTp .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NCmR5BTp .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NCmR5BTp .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NCmR5BTp .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NCmR5BTp .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NCmR5BTp .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NCmR5BTp .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NCmR5BTp .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NCmR5BTp .offcanvas-body .mbr-text,
  .cid-v7NCmR5BTp .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NCmR5BTp .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NCmR5BTp .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NCmR5BTp .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NCmR5BTp .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NCmR5BTp .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NCmR5BTp .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NCmR5BTp .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NCmR5BTp ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NCmR5BTp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NCmR5BTp .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-v7NCmR5BTp .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NCmR5BTp li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NCmR5BTp .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NCmR5BTp .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NCmR5BTp .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NCmR5BTp .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NCmR5BTp .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NCmR5BTp .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NCmR5BTp .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NCmR5BTp .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NCmR5BTp .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NCmR5BTp .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NCmR5BTp .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NCmR5BTp .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NCmR5BTp .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-v7NCmR5BTp .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NCmR5BTp .offcanvas_box {
    display: none;
  }
}
.cid-v7NCmR5BTp .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NCmR5BTp .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NCmR5BTp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NCmR5BTp .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NCmR5BTp .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NCmR5BTp .container {
  display: flex;
  margin: auto;
}
.cid-v7NCmR5BTp .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-v7NCmR5BTp .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NCmR5BTp .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NCmR5BTp .navbar-caption {
  color: #000000;
}
.cid-v7NCmR5BTp .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NCmR5BTp .navbar-nav {
    margin: 0;
  }
}
.cid-v7NCmR5BTp .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NCmR5BTp .dropdown-menu,
.cid-v7NCmR5BTp .navbar.opened {
  background-color: false !important;
}
.cid-v7NCmR5BTp .nav-item:focus,
.cid-v7NCmR5BTp .nav-link:focus {
  outline: none;
}
.cid-v7NCmR5BTp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NCmR5BTp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NCmR5BTp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NCmR5BTp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NCmR5BTp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NCmR5BTp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NCmR5BTp .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NCmR5BTp .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NCmR5BTp .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NCmR5BTp .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NCmR5BTp .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NCmR5BTp .navbar.collapsed {
  justify-content: center;
}
.cid-v7NCmR5BTp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NCmR5BTp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NCmR5BTp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NCmR5BTp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NCmR5BTp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NCmR5BTp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NCmR5BTp .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NCmR5BTp .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NCmR5BTp .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NCmR5BTp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NCmR5BTp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NCmR5BTp .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NCmR5BTp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NCmR5BTp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NCmR5BTp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NCmR5BTp .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NCmR5BTp .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NCmR5BTp .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NCmR5BTp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NCmR5BTp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NCmR5BTp .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NCmR5BTp .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NCmR5BTp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NCmR5BTp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NCmR5BTp .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-v7NCmR5BTp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NCmR5BTp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NCmR5BTp .dropdown-item.active,
.cid-v7NCmR5BTp .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NCmR5BTp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NCmR5BTp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NCmR5BTp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NCmR5BTp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NCmR5BTp ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NCmR5BTp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NCmR5BTp 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-v7NCmR5BTp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NCmR5BTp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NCmR5BTp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NCmR5BTp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NCmR5BTp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NCmR5BTp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NCmR5BTp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NCmR5BTp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NCmR5BTp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NCmR5BTp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NCmR5BTp .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-v7NCmR5BTp .navbar {
    height: 70px;
  }
  .cid-v7NCmR5BTp .navbar.opened {
    height: auto;
  }
  .cid-v7NCmR5BTp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NCmR5BTp .mbr-section-btn .btn,
.cid-v7NCmR5BTp .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-v7NCmR5BTp .mbr-section-btn .btn:first-child,
.cid-v7NCmR5BTp .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NCmR5BTp .mbr-section-btn .btn:focus,
.cid-v7NCmR5BTp .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NCmR5BTp .mbr-section-btn .btn span,
.cid-v7NCmR5BTp .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-v7NCmR5BTp .mbr-section-btn .btn:hover,
.cid-v7NCmR5BTp .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NCmR5BTp .mbr-section-btn .btn:hover span,
.cid-v7NCmR5BTp .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NCmR5BTp .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NCmR5BTp .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NCmR5BTp .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NCmR5BTp .nav-link:hover {
  color: #124ad6;
}
.cid-v7NCmR5BTp .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NCmR5BTp .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NCmR5BTp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NCmR5BTp .mbr-section-subtitle,
.cid-v7NCmR5BTp .text_widget {
  text-align: left;
}
.cid-v7NCmR5BTp a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NCmS0XvQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NCmS0XvQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NCmS0XvQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NCmS0XvQ .row {
  justify-content: space-between;
}
.cid-v7NCmS0XvQ .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NCmS0XvQ .content-wrapper {
    padding: 0;
  }
}
.cid-v7NCmS0XvQ .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NCmS0XvQ .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NCmS0XvQ .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NCmS0XvQ .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NCmS0XvQ .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NCmS0XvQ .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NCmS0XvQ .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NCmS0XvQ .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NCmS0XvQ .mbr-section-title {
  color: #000000;
}
.cid-v7NCmS0XvQ .mbr-desc {
  color: #000000;
}
.cid-v7NCmS0XvQ .mbr-text {
  color: #000000;
}
.cid-v7NCmTal6j {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NCmTal6j .form-title,
  .cid-v7NCmTal6j .form-wrapper {
    padding: 0;
  }
}
.cid-v7NCmTal6j .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NCmTal6j .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NCmTal6j .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-v7NCmTal6j .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NCmTal6j .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NCmTal6j .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NCmTal6j .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-v7NCmTal6j .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NCmTal6j .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NCmTal6j .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NCmTal6j .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NCmTal6j .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NCmTal6j .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NCmTal6j .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NCmTal6j .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NCmTal6j .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NCmTal6j .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NCmTal6j .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NCmTal6j .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NCmTal6j .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NCmTal6j .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NCmTal6j .mbr-section-title {
  color: #000000;
}
.cid-v7NCmTal6j .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NCQJWtAM .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NCQJWtAM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NCQJWtAM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NCQJWtAM .menu_box .navbar.opened,
  .cid-v7NCQJWtAM .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NCQJWtAM .navbar-dropdown {
  position: relative !important;
}
.cid-v7NCQJWtAM nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NCQJWtAM .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NCQJWtAM .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NCQJWtAM .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NCQJWtAM .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NCQJWtAM .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NCQJWtAM .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NCQJWtAM .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NCQJWtAM .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NCQJWtAM .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NCQJWtAM .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NCQJWtAM .offcanvas-body .mbr-text,
  .cid-v7NCQJWtAM .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NCQJWtAM .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NCQJWtAM .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NCQJWtAM .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NCQJWtAM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NCQJWtAM .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NCQJWtAM .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NCQJWtAM .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NCQJWtAM ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NCQJWtAM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NCQJWtAM .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-v7NCQJWtAM .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NCQJWtAM li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NCQJWtAM .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NCQJWtAM .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NCQJWtAM .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NCQJWtAM .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NCQJWtAM .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NCQJWtAM .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NCQJWtAM .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NCQJWtAM .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NCQJWtAM .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NCQJWtAM .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NCQJWtAM .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NCQJWtAM .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NCQJWtAM .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-v7NCQJWtAM .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NCQJWtAM .offcanvas_box {
    display: none;
  }
}
.cid-v7NCQJWtAM .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NCQJWtAM .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NCQJWtAM .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NCQJWtAM .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NCQJWtAM .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NCQJWtAM .container {
  display: flex;
  margin: auto;
}
.cid-v7NCQJWtAM .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-v7NCQJWtAM .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NCQJWtAM .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NCQJWtAM .navbar-caption {
  color: #000000;
}
.cid-v7NCQJWtAM .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NCQJWtAM .navbar-nav {
    margin: 0;
  }
}
.cid-v7NCQJWtAM .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NCQJWtAM .dropdown-menu,
.cid-v7NCQJWtAM .navbar.opened {
  background-color: false !important;
}
.cid-v7NCQJWtAM .nav-item:focus,
.cid-v7NCQJWtAM .nav-link:focus {
  outline: none;
}
.cid-v7NCQJWtAM .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NCQJWtAM .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NCQJWtAM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NCQJWtAM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NCQJWtAM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NCQJWtAM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NCQJWtAM .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NCQJWtAM .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NCQJWtAM .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NCQJWtAM .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NCQJWtAM .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NCQJWtAM .navbar.collapsed {
  justify-content: center;
}
.cid-v7NCQJWtAM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NCQJWtAM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NCQJWtAM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NCQJWtAM .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NCQJWtAM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NCQJWtAM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NCQJWtAM .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NCQJWtAM .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NCQJWtAM .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NCQJWtAM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NCQJWtAM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NCQJWtAM .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NCQJWtAM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NCQJWtAM .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NCQJWtAM .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NCQJWtAM .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NCQJWtAM .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NCQJWtAM .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NCQJWtAM .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NCQJWtAM .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NCQJWtAM .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NCQJWtAM .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NCQJWtAM .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NCQJWtAM .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NCQJWtAM .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-v7NCQJWtAM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NCQJWtAM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NCQJWtAM .dropdown-item.active,
.cid-v7NCQJWtAM .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NCQJWtAM .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NCQJWtAM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NCQJWtAM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NCQJWtAM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NCQJWtAM ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NCQJWtAM .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NCQJWtAM 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-v7NCQJWtAM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NCQJWtAM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NCQJWtAM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NCQJWtAM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NCQJWtAM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NCQJWtAM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NCQJWtAM nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NCQJWtAM nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NCQJWtAM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NCQJWtAM a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NCQJWtAM .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-v7NCQJWtAM .navbar {
    height: 70px;
  }
  .cid-v7NCQJWtAM .navbar.opened {
    height: auto;
  }
  .cid-v7NCQJWtAM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NCQJWtAM .mbr-section-btn .btn,
.cid-v7NCQJWtAM .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-v7NCQJWtAM .mbr-section-btn .btn:first-child,
.cid-v7NCQJWtAM .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NCQJWtAM .mbr-section-btn .btn:focus,
.cid-v7NCQJWtAM .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NCQJWtAM .mbr-section-btn .btn span,
.cid-v7NCQJWtAM .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-v7NCQJWtAM .mbr-section-btn .btn:hover,
.cid-v7NCQJWtAM .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NCQJWtAM .mbr-section-btn .btn:hover span,
.cid-v7NCQJWtAM .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NCQJWtAM .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NCQJWtAM .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NCQJWtAM .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NCQJWtAM .nav-link:hover {
  color: #124ad6;
}
.cid-v7NCQJWtAM .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NCQJWtAM .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NCQJWtAM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NCQJWtAM .mbr-section-subtitle,
.cid-v7NCQJWtAM .text_widget {
  text-align: left;
}
.cid-v7NCQJWtAM a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NDuRd9Zj {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDuRd9Zj .row {
    flex-direction: column-reverse;
  }
}
.cid-v7NDuRd9Zj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDuRd9Zj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDuRd9Zj .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-v7NDuRd9Zj .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDuRd9Zj .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NDuRd9Zj .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-v7NDuRd9Zj .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDuRd9Zj .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDuRd9Zj .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NDuRd9Zj .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NDuRd9Zj .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v7NDuRd9Zj .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDuRd9Zj .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDuRd9Zj .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-v7NDuRd9Zj .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-v7NDuRd9Zj .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NDuRd9Zj .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDuRd9Zj .image-wrapper img {
    min-height: 100%;
  }
}
.cid-v7NDuRd9Zj .mbr-section-title {
  color: #000000;
}
.cid-v7NDuRd9Zj .mbr-text {
  color: #000000;
}
.cid-v7NCQKPIcC {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NCQKPIcC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NCQKPIcC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NCQKPIcC .row {
  justify-content: space-between;
}
.cid-v7NCQKPIcC .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NCQKPIcC .content-wrapper {
    padding: 0;
  }
}
.cid-v7NCQKPIcC .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NCQKPIcC .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NCQKPIcC .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NCQKPIcC .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NCQKPIcC .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NCQKPIcC .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NCQKPIcC .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NCQKPIcC .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NCQKPIcC .mbr-section-title {
  color: #000000;
}
.cid-v7NCQKPIcC .mbr-desc {
  color: #000000;
}
.cid-v7NCQKPIcC .mbr-text {
  color: #000000;
}
.cid-v7NCQL8DKq {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NCQL8DKq .form-title,
  .cid-v7NCQL8DKq .form-wrapper {
    padding: 0;
  }
}
.cid-v7NCQL8DKq .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NCQL8DKq .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NCQL8DKq .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-v7NCQL8DKq .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NCQL8DKq .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NCQL8DKq .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NCQL8DKq .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-v7NCQL8DKq .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NCQL8DKq .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NCQL8DKq .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NCQL8DKq .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NCQL8DKq .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NCQL8DKq .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NCQL8DKq .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NCQL8DKq .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NCQL8DKq .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NCQL8DKq .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NCQL8DKq .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NCQL8DKq .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NCQL8DKq .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NCQL8DKq .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NCQL8DKq .mbr-section-title {
  color: #000000;
}
.cid-v7NCQL8DKq .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NDUR2X3F .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NDUR2X3F .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NDUR2X3F .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NDUR2X3F .menu_box .navbar.opened,
  .cid-v7NDUR2X3F .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NDUR2X3F .navbar-dropdown {
  position: relative !important;
}
.cid-v7NDUR2X3F nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NDUR2X3F .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NDUR2X3F .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NDUR2X3F .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NDUR2X3F .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NDUR2X3F .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NDUR2X3F .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NDUR2X3F .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NDUR2X3F .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NDUR2X3F .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NDUR2X3F .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NDUR2X3F .offcanvas-body .mbr-text,
  .cid-v7NDUR2X3F .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NDUR2X3F .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NDUR2X3F .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NDUR2X3F .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NDUR2X3F .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NDUR2X3F .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NDUR2X3F .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NDUR2X3F .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NDUR2X3F ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NDUR2X3F .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDUR2X3F .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-v7NDUR2X3F .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NDUR2X3F li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NDUR2X3F .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NDUR2X3F .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NDUR2X3F .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NDUR2X3F .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NDUR2X3F .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NDUR2X3F .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NDUR2X3F .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NDUR2X3F .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NDUR2X3F .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NDUR2X3F .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NDUR2X3F .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NDUR2X3F .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDUR2X3F .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-v7NDUR2X3F .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NDUR2X3F .offcanvas_box {
    display: none;
  }
}
.cid-v7NDUR2X3F .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NDUR2X3F .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NDUR2X3F .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NDUR2X3F .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NDUR2X3F .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NDUR2X3F .container {
  display: flex;
  margin: auto;
}
.cid-v7NDUR2X3F .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-v7NDUR2X3F .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NDUR2X3F .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NDUR2X3F .navbar-caption {
  color: #000000;
}
.cid-v7NDUR2X3F .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NDUR2X3F .navbar-nav {
    margin: 0;
  }
}
.cid-v7NDUR2X3F .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NDUR2X3F .dropdown-menu,
.cid-v7NDUR2X3F .navbar.opened {
  background-color: false !important;
}
.cid-v7NDUR2X3F .nav-item:focus,
.cid-v7NDUR2X3F .nav-link:focus {
  outline: none;
}
.cid-v7NDUR2X3F .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NDUR2X3F .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NDUR2X3F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NDUR2X3F .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NDUR2X3F .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NDUR2X3F .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NDUR2X3F .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NDUR2X3F .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NDUR2X3F .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NDUR2X3F .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NDUR2X3F .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NDUR2X3F .navbar.collapsed {
  justify-content: center;
}
.cid-v7NDUR2X3F .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NDUR2X3F .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NDUR2X3F .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NDUR2X3F .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NDUR2X3F .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NDUR2X3F .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NDUR2X3F .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NDUR2X3F .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NDUR2X3F .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NDUR2X3F .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NDUR2X3F .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NDUR2X3F .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NDUR2X3F .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NDUR2X3F .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NDUR2X3F .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NDUR2X3F .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NDUR2X3F .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NDUR2X3F .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NDUR2X3F .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NDUR2X3F .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NDUR2X3F .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NDUR2X3F .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NDUR2X3F .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NDUR2X3F .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NDUR2X3F .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-v7NDUR2X3F .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NDUR2X3F .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NDUR2X3F .dropdown-item.active,
.cid-v7NDUR2X3F .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NDUR2X3F .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NDUR2X3F .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NDUR2X3F .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NDUR2X3F .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NDUR2X3F ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NDUR2X3F .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NDUR2X3F 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-v7NDUR2X3F button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NDUR2X3F button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NDUR2X3F button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDUR2X3F button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDUR2X3F button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NDUR2X3F nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDUR2X3F nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NDUR2X3F nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NDUR2X3F nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDUR2X3F a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NDUR2X3F .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-v7NDUR2X3F .navbar {
    height: 70px;
  }
  .cid-v7NDUR2X3F .navbar.opened {
    height: auto;
  }
  .cid-v7NDUR2X3F .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NDUR2X3F .mbr-section-btn .btn,
.cid-v7NDUR2X3F .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-v7NDUR2X3F .mbr-section-btn .btn:first-child,
.cid-v7NDUR2X3F .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDUR2X3F .mbr-section-btn .btn:focus,
.cid-v7NDUR2X3F .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NDUR2X3F .mbr-section-btn .btn span,
.cid-v7NDUR2X3F .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-v7NDUR2X3F .mbr-section-btn .btn:hover,
.cid-v7NDUR2X3F .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDUR2X3F .mbr-section-btn .btn:hover span,
.cid-v7NDUR2X3F .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDUR2X3F .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NDUR2X3F .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NDUR2X3F .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NDUR2X3F .nav-link:hover {
  color: #124ad6;
}
.cid-v7NDUR2X3F .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NDUR2X3F .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NDUR2X3F .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NDUR2X3F .mbr-section-subtitle,
.cid-v7NDUR2X3F .text_widget {
  text-align: left;
}
.cid-v7NDUR2X3F a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NDURS2FA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDURS2FA .row {
    flex-direction: column-reverse;
  }
}
.cid-v7NDURS2FA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDURS2FA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDURS2FA .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-v7NDURS2FA .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDURS2FA .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NDURS2FA .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-v7NDURS2FA .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDURS2FA .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDURS2FA .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NDURS2FA .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NDURS2FA .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v7NDURS2FA .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDURS2FA .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDURS2FA .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-v7NDURS2FA .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-v7NDURS2FA .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NDURS2FA .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDURS2FA .image-wrapper img {
    min-height: 100%;
  }
}
.cid-v7NDURS2FA .mbr-section-title {
  color: #000000;
}
.cid-v7NDURS2FA .mbr-text {
  color: #000000;
}
.cid-v7NDUSbyt1 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NDUSbyt1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDUSbyt1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDUSbyt1 .row {
  justify-content: space-between;
}
.cid-v7NDUSbyt1 .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NDUSbyt1 .content-wrapper {
    padding: 0;
  }
}
.cid-v7NDUSbyt1 .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDUSbyt1 .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NDUSbyt1 .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDUSbyt1 .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDUSbyt1 .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NDUSbyt1 .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NDUSbyt1 .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NDUSbyt1 .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NDUSbyt1 .mbr-section-title {
  color: #000000;
}
.cid-v7NDUSbyt1 .mbr-desc {
  color: #000000;
}
.cid-v7NDUSbyt1 .mbr-text {
  color: #000000;
}
.cid-v7NDUSp5fV {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDUSp5fV .form-title,
  .cid-v7NDUSp5fV .form-wrapper {
    padding: 0;
  }
}
.cid-v7NDUSp5fV .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NDUSp5fV .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NDUSp5fV .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-v7NDUSp5fV .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDUSp5fV .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NDUSp5fV .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NDUSp5fV .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-v7NDUSp5fV .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDUSp5fV .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDUSp5fV .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NDUSp5fV .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NDUSp5fV .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NDUSp5fV .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NDUSp5fV .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NDUSp5fV .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NDUSp5fV .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NDUSp5fV .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NDUSp5fV .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NDUSp5fV .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NDUSp5fV .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDUSp5fV .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDUSp5fV .mbr-section-title {
  color: #000000;
}
.cid-v7NDUSp5fV .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NDRT0Ypr .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NDRT0Ypr .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NDRT0Ypr .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NDRT0Ypr .menu_box .navbar.opened,
  .cid-v7NDRT0Ypr .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NDRT0Ypr .navbar-dropdown {
  position: relative !important;
}
.cid-v7NDRT0Ypr nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NDRT0Ypr .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NDRT0Ypr .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NDRT0Ypr .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NDRT0Ypr .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NDRT0Ypr .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NDRT0Ypr .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NDRT0Ypr .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NDRT0Ypr .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NDRT0Ypr .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NDRT0Ypr .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NDRT0Ypr .offcanvas-body .mbr-text,
  .cid-v7NDRT0Ypr .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NDRT0Ypr .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NDRT0Ypr .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NDRT0Ypr .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NDRT0Ypr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NDRT0Ypr .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NDRT0Ypr .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NDRT0Ypr .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NDRT0Ypr ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NDRT0Ypr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDRT0Ypr .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-v7NDRT0Ypr .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NDRT0Ypr li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NDRT0Ypr .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NDRT0Ypr .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NDRT0Ypr .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NDRT0Ypr .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NDRT0Ypr .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NDRT0Ypr .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NDRT0Ypr .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NDRT0Ypr .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NDRT0Ypr .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NDRT0Ypr .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NDRT0Ypr .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NDRT0Ypr .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDRT0Ypr .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-v7NDRT0Ypr .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NDRT0Ypr .offcanvas_box {
    display: none;
  }
}
.cid-v7NDRT0Ypr .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NDRT0Ypr .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NDRT0Ypr .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NDRT0Ypr .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NDRT0Ypr .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NDRT0Ypr .container {
  display: flex;
  margin: auto;
}
.cid-v7NDRT0Ypr .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-v7NDRT0Ypr .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NDRT0Ypr .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NDRT0Ypr .navbar-caption {
  color: #000000;
}
.cid-v7NDRT0Ypr .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NDRT0Ypr .navbar-nav {
    margin: 0;
  }
}
.cid-v7NDRT0Ypr .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NDRT0Ypr .dropdown-menu,
.cid-v7NDRT0Ypr .navbar.opened {
  background-color: false !important;
}
.cid-v7NDRT0Ypr .nav-item:focus,
.cid-v7NDRT0Ypr .nav-link:focus {
  outline: none;
}
.cid-v7NDRT0Ypr .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NDRT0Ypr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NDRT0Ypr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NDRT0Ypr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NDRT0Ypr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NDRT0Ypr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NDRT0Ypr .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NDRT0Ypr .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NDRT0Ypr .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NDRT0Ypr .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NDRT0Ypr .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NDRT0Ypr .navbar.collapsed {
  justify-content: center;
}
.cid-v7NDRT0Ypr .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NDRT0Ypr .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NDRT0Ypr .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NDRT0Ypr .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NDRT0Ypr .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NDRT0Ypr .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NDRT0Ypr .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NDRT0Ypr .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NDRT0Ypr .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NDRT0Ypr .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NDRT0Ypr .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NDRT0Ypr .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NDRT0Ypr .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NDRT0Ypr .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NDRT0Ypr .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NDRT0Ypr .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NDRT0Ypr .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NDRT0Ypr .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NDRT0Ypr .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NDRT0Ypr .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NDRT0Ypr .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NDRT0Ypr .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NDRT0Ypr .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NDRT0Ypr .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NDRT0Ypr .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-v7NDRT0Ypr .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NDRT0Ypr .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NDRT0Ypr .dropdown-item.active,
.cid-v7NDRT0Ypr .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NDRT0Ypr .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NDRT0Ypr .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NDRT0Ypr .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NDRT0Ypr .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NDRT0Ypr ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NDRT0Ypr .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NDRT0Ypr 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-v7NDRT0Ypr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NDRT0Ypr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NDRT0Ypr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDRT0Ypr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDRT0Ypr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NDRT0Ypr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDRT0Ypr nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NDRT0Ypr nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NDRT0Ypr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDRT0Ypr a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NDRT0Ypr .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-v7NDRT0Ypr .navbar {
    height: 70px;
  }
  .cid-v7NDRT0Ypr .navbar.opened {
    height: auto;
  }
  .cid-v7NDRT0Ypr .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NDRT0Ypr .mbr-section-btn .btn,
.cid-v7NDRT0Ypr .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-v7NDRT0Ypr .mbr-section-btn .btn:first-child,
.cid-v7NDRT0Ypr .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDRT0Ypr .mbr-section-btn .btn:focus,
.cid-v7NDRT0Ypr .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NDRT0Ypr .mbr-section-btn .btn span,
.cid-v7NDRT0Ypr .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-v7NDRT0Ypr .mbr-section-btn .btn:hover,
.cid-v7NDRT0Ypr .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDRT0Ypr .mbr-section-btn .btn:hover span,
.cid-v7NDRT0Ypr .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDRT0Ypr .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NDRT0Ypr .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NDRT0Ypr .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NDRT0Ypr .nav-link:hover {
  color: #124ad6;
}
.cid-v7NDRT0Ypr .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NDRT0Ypr .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NDRT0Ypr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NDRT0Ypr .mbr-section-subtitle,
.cid-v7NDRT0Ypr .text_widget {
  text-align: left;
}
.cid-v7NDRT0Ypr a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NDRTM9Ah {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDRTM9Ah .row {
    flex-direction: column-reverse;
  }
}
.cid-v7NDRTM9Ah .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDRTM9Ah .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDRTM9Ah .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-v7NDRTM9Ah .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDRTM9Ah .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NDRTM9Ah .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-v7NDRTM9Ah .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDRTM9Ah .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDRTM9Ah .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NDRTM9Ah .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NDRTM9Ah .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v7NDRTM9Ah .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDRTM9Ah .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDRTM9Ah .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-v7NDRTM9Ah .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-v7NDRTM9Ah .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NDRTM9Ah .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDRTM9Ah .image-wrapper img {
    min-height: 100%;
  }
}
.cid-v7NDRTM9Ah .mbr-section-title {
  color: #000000;
}
.cid-v7NDRTM9Ah .mbr-text {
  color: #000000;
}
.cid-v7NDRU3Qkh {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NDRU3Qkh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDRU3Qkh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDRU3Qkh .row {
  justify-content: space-between;
}
.cid-v7NDRU3Qkh .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NDRU3Qkh .content-wrapper {
    padding: 0;
  }
}
.cid-v7NDRU3Qkh .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDRU3Qkh .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NDRU3Qkh .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDRU3Qkh .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDRU3Qkh .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NDRU3Qkh .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NDRU3Qkh .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NDRU3Qkh .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NDRU3Qkh .mbr-section-title {
  color: #000000;
}
.cid-v7NDRU3Qkh .mbr-desc {
  color: #000000;
}
.cid-v7NDRU3Qkh .mbr-text {
  color: #000000;
}
.cid-v7NDRUm0Dx {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDRUm0Dx .form-title,
  .cid-v7NDRUm0Dx .form-wrapper {
    padding: 0;
  }
}
.cid-v7NDRUm0Dx .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NDRUm0Dx .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NDRUm0Dx .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-v7NDRUm0Dx .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDRUm0Dx .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NDRUm0Dx .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NDRUm0Dx .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-v7NDRUm0Dx .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDRUm0Dx .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDRUm0Dx .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NDRUm0Dx .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NDRUm0Dx .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NDRUm0Dx .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NDRUm0Dx .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NDRUm0Dx .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NDRUm0Dx .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NDRUm0Dx .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NDRUm0Dx .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NDRUm0Dx .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NDRUm0Dx .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDRUm0Dx .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDRUm0Dx .mbr-section-title {
  color: #000000;
}
.cid-v7NDRUm0Dx .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NDP9Nt2C .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NDP9Nt2C .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NDP9Nt2C .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NDP9Nt2C .menu_box .navbar.opened,
  .cid-v7NDP9Nt2C .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NDP9Nt2C .navbar-dropdown {
  position: relative !important;
}
.cid-v7NDP9Nt2C nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NDP9Nt2C .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NDP9Nt2C .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NDP9Nt2C .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NDP9Nt2C .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NDP9Nt2C .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NDP9Nt2C .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NDP9Nt2C .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NDP9Nt2C .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NDP9Nt2C .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NDP9Nt2C .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NDP9Nt2C .offcanvas-body .mbr-text,
  .cid-v7NDP9Nt2C .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NDP9Nt2C .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NDP9Nt2C .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NDP9Nt2C .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NDP9Nt2C .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NDP9Nt2C .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NDP9Nt2C .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NDP9Nt2C .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NDP9Nt2C ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NDP9Nt2C .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDP9Nt2C .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-v7NDP9Nt2C .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NDP9Nt2C li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NDP9Nt2C .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NDP9Nt2C .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NDP9Nt2C .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NDP9Nt2C .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NDP9Nt2C .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NDP9Nt2C .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NDP9Nt2C .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NDP9Nt2C .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NDP9Nt2C .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NDP9Nt2C .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NDP9Nt2C .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NDP9Nt2C .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDP9Nt2C .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-v7NDP9Nt2C .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NDP9Nt2C .offcanvas_box {
    display: none;
  }
}
.cid-v7NDP9Nt2C .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NDP9Nt2C .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NDP9Nt2C .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NDP9Nt2C .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NDP9Nt2C .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NDP9Nt2C .container {
  display: flex;
  margin: auto;
}
.cid-v7NDP9Nt2C .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-v7NDP9Nt2C .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NDP9Nt2C .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NDP9Nt2C .navbar-caption {
  color: #000000;
}
.cid-v7NDP9Nt2C .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NDP9Nt2C .navbar-nav {
    margin: 0;
  }
}
.cid-v7NDP9Nt2C .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NDP9Nt2C .dropdown-menu,
.cid-v7NDP9Nt2C .navbar.opened {
  background-color: false !important;
}
.cid-v7NDP9Nt2C .nav-item:focus,
.cid-v7NDP9Nt2C .nav-link:focus {
  outline: none;
}
.cid-v7NDP9Nt2C .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NDP9Nt2C .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NDP9Nt2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NDP9Nt2C .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NDP9Nt2C .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NDP9Nt2C .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NDP9Nt2C .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NDP9Nt2C .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NDP9Nt2C .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NDP9Nt2C .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NDP9Nt2C .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NDP9Nt2C .navbar.collapsed {
  justify-content: center;
}
.cid-v7NDP9Nt2C .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NDP9Nt2C .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NDP9Nt2C .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NDP9Nt2C .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NDP9Nt2C .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NDP9Nt2C .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NDP9Nt2C .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NDP9Nt2C .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NDP9Nt2C .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NDP9Nt2C .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NDP9Nt2C .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NDP9Nt2C .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NDP9Nt2C .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NDP9Nt2C .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NDP9Nt2C .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NDP9Nt2C .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NDP9Nt2C .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NDP9Nt2C .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NDP9Nt2C .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NDP9Nt2C .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NDP9Nt2C .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NDP9Nt2C .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NDP9Nt2C .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NDP9Nt2C .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NDP9Nt2C .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-v7NDP9Nt2C .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NDP9Nt2C .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NDP9Nt2C .dropdown-item.active,
.cid-v7NDP9Nt2C .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NDP9Nt2C .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NDP9Nt2C .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NDP9Nt2C .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NDP9Nt2C .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NDP9Nt2C ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NDP9Nt2C .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NDP9Nt2C 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-v7NDP9Nt2C button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NDP9Nt2C button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NDP9Nt2C button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDP9Nt2C button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDP9Nt2C button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NDP9Nt2C nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDP9Nt2C nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NDP9Nt2C nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NDP9Nt2C nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDP9Nt2C a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NDP9Nt2C .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-v7NDP9Nt2C .navbar {
    height: 70px;
  }
  .cid-v7NDP9Nt2C .navbar.opened {
    height: auto;
  }
  .cid-v7NDP9Nt2C .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NDP9Nt2C .mbr-section-btn .btn,
.cid-v7NDP9Nt2C .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-v7NDP9Nt2C .mbr-section-btn .btn:first-child,
.cid-v7NDP9Nt2C .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDP9Nt2C .mbr-section-btn .btn:focus,
.cid-v7NDP9Nt2C .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NDP9Nt2C .mbr-section-btn .btn span,
.cid-v7NDP9Nt2C .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-v7NDP9Nt2C .mbr-section-btn .btn:hover,
.cid-v7NDP9Nt2C .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDP9Nt2C .mbr-section-btn .btn:hover span,
.cid-v7NDP9Nt2C .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDP9Nt2C .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NDP9Nt2C .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NDP9Nt2C .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NDP9Nt2C .nav-link:hover {
  color: #124ad6;
}
.cid-v7NDP9Nt2C .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NDP9Nt2C .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NDP9Nt2C .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NDP9Nt2C .mbr-section-subtitle,
.cid-v7NDP9Nt2C .text_widget {
  text-align: left;
}
.cid-v7NDP9Nt2C a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NDPaKK4L {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDPaKK4L .row {
    flex-direction: column-reverse;
  }
}
.cid-v7NDPaKK4L .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDPaKK4L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDPaKK4L .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-v7NDPaKK4L .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDPaKK4L .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NDPaKK4L .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-v7NDPaKK4L .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDPaKK4L .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDPaKK4L .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NDPaKK4L .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NDPaKK4L .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v7NDPaKK4L .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDPaKK4L .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDPaKK4L .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-v7NDPaKK4L .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-v7NDPaKK4L .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NDPaKK4L .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDPaKK4L .image-wrapper img {
    min-height: 100%;
  }
}
.cid-v7NDPaKK4L .mbr-section-title {
  color: #000000;
}
.cid-v7NDPaKK4L .mbr-text {
  color: #000000;
}
.cid-v7NDPb23GS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NDPb23GS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDPb23GS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDPb23GS .row {
  justify-content: space-between;
}
.cid-v7NDPb23GS .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NDPb23GS .content-wrapper {
    padding: 0;
  }
}
.cid-v7NDPb23GS .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDPb23GS .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NDPb23GS .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDPb23GS .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDPb23GS .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NDPb23GS .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NDPb23GS .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NDPb23GS .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NDPb23GS .mbr-section-title {
  color: #000000;
}
.cid-v7NDPb23GS .mbr-desc {
  color: #000000;
}
.cid-v7NDPb23GS .mbr-text {
  color: #000000;
}
.cid-v7NDPbgvyU {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDPbgvyU .form-title,
  .cid-v7NDPbgvyU .form-wrapper {
    padding: 0;
  }
}
.cid-v7NDPbgvyU .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NDPbgvyU .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NDPbgvyU .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-v7NDPbgvyU .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDPbgvyU .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NDPbgvyU .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NDPbgvyU .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-v7NDPbgvyU .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDPbgvyU .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDPbgvyU .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NDPbgvyU .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NDPbgvyU .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NDPbgvyU .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NDPbgvyU .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NDPbgvyU .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NDPbgvyU .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NDPbgvyU .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NDPbgvyU .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NDPbgvyU .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NDPbgvyU .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDPbgvyU .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDPbgvyU .mbr-section-title {
  color: #000000;
}
.cid-v7NDPbgvyU .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NDLjOjCh .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NDLjOjCh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NDLjOjCh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NDLjOjCh .menu_box .navbar.opened,
  .cid-v7NDLjOjCh .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NDLjOjCh .navbar-dropdown {
  position: relative !important;
}
.cid-v7NDLjOjCh nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NDLjOjCh .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NDLjOjCh .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NDLjOjCh .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NDLjOjCh .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NDLjOjCh .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NDLjOjCh .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NDLjOjCh .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NDLjOjCh .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NDLjOjCh .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NDLjOjCh .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NDLjOjCh .offcanvas-body .mbr-text,
  .cid-v7NDLjOjCh .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NDLjOjCh .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NDLjOjCh .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NDLjOjCh .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NDLjOjCh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NDLjOjCh .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NDLjOjCh .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NDLjOjCh .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NDLjOjCh ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NDLjOjCh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDLjOjCh .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-v7NDLjOjCh .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NDLjOjCh li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NDLjOjCh .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NDLjOjCh .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NDLjOjCh .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NDLjOjCh .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NDLjOjCh .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NDLjOjCh .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NDLjOjCh .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NDLjOjCh .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NDLjOjCh .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NDLjOjCh .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NDLjOjCh .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NDLjOjCh .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDLjOjCh .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-v7NDLjOjCh .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NDLjOjCh .offcanvas_box {
    display: none;
  }
}
.cid-v7NDLjOjCh .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NDLjOjCh .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NDLjOjCh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NDLjOjCh .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NDLjOjCh .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NDLjOjCh .container {
  display: flex;
  margin: auto;
}
.cid-v7NDLjOjCh .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-v7NDLjOjCh .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NDLjOjCh .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NDLjOjCh .navbar-caption {
  color: #000000;
}
.cid-v7NDLjOjCh .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NDLjOjCh .navbar-nav {
    margin: 0;
  }
}
.cid-v7NDLjOjCh .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NDLjOjCh .dropdown-menu,
.cid-v7NDLjOjCh .navbar.opened {
  background-color: false !important;
}
.cid-v7NDLjOjCh .nav-item:focus,
.cid-v7NDLjOjCh .nav-link:focus {
  outline: none;
}
.cid-v7NDLjOjCh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NDLjOjCh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NDLjOjCh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NDLjOjCh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NDLjOjCh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NDLjOjCh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NDLjOjCh .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NDLjOjCh .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NDLjOjCh .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NDLjOjCh .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NDLjOjCh .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NDLjOjCh .navbar.collapsed {
  justify-content: center;
}
.cid-v7NDLjOjCh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NDLjOjCh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NDLjOjCh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NDLjOjCh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NDLjOjCh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NDLjOjCh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NDLjOjCh .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NDLjOjCh .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NDLjOjCh .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NDLjOjCh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NDLjOjCh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NDLjOjCh .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NDLjOjCh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NDLjOjCh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NDLjOjCh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NDLjOjCh .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NDLjOjCh .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NDLjOjCh .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NDLjOjCh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NDLjOjCh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NDLjOjCh .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NDLjOjCh .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NDLjOjCh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NDLjOjCh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NDLjOjCh .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-v7NDLjOjCh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NDLjOjCh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NDLjOjCh .dropdown-item.active,
.cid-v7NDLjOjCh .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NDLjOjCh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NDLjOjCh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NDLjOjCh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NDLjOjCh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NDLjOjCh ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NDLjOjCh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NDLjOjCh 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-v7NDLjOjCh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NDLjOjCh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NDLjOjCh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDLjOjCh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDLjOjCh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NDLjOjCh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDLjOjCh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NDLjOjCh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NDLjOjCh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDLjOjCh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NDLjOjCh .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-v7NDLjOjCh .navbar {
    height: 70px;
  }
  .cid-v7NDLjOjCh .navbar.opened {
    height: auto;
  }
  .cid-v7NDLjOjCh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NDLjOjCh .mbr-section-btn .btn,
.cid-v7NDLjOjCh .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-v7NDLjOjCh .mbr-section-btn .btn:first-child,
.cid-v7NDLjOjCh .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDLjOjCh .mbr-section-btn .btn:focus,
.cid-v7NDLjOjCh .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NDLjOjCh .mbr-section-btn .btn span,
.cid-v7NDLjOjCh .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-v7NDLjOjCh .mbr-section-btn .btn:hover,
.cid-v7NDLjOjCh .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDLjOjCh .mbr-section-btn .btn:hover span,
.cid-v7NDLjOjCh .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDLjOjCh .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NDLjOjCh .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NDLjOjCh .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NDLjOjCh .nav-link:hover {
  color: #124ad6;
}
.cid-v7NDLjOjCh .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NDLjOjCh .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NDLjOjCh .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NDLjOjCh .mbr-section-subtitle,
.cid-v7NDLjOjCh .text_widget {
  text-align: left;
}
.cid-v7NDLjOjCh a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NDLkEK7m {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDLkEK7m .row {
    flex-direction: column-reverse;
  }
}
.cid-v7NDLkEK7m .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDLkEK7m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDLkEK7m .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-v7NDLkEK7m .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDLkEK7m .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NDLkEK7m .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-v7NDLkEK7m .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDLkEK7m .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDLkEK7m .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NDLkEK7m .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NDLkEK7m .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v7NDLkEK7m .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDLkEK7m .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDLkEK7m .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-v7NDLkEK7m .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-v7NDLkEK7m .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NDLkEK7m .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDLkEK7m .image-wrapper img {
    min-height: 100%;
  }
}
.cid-v7NDLkEK7m .mbr-section-title {
  color: #000000;
}
.cid-v7NDLkEK7m .mbr-text {
  color: #000000;
}
.cid-v7NDLkVRIS {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NDLkVRIS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDLkVRIS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDLkVRIS .row {
  justify-content: space-between;
}
.cid-v7NDLkVRIS .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NDLkVRIS .content-wrapper {
    padding: 0;
  }
}
.cid-v7NDLkVRIS .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDLkVRIS .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NDLkVRIS .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDLkVRIS .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDLkVRIS .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NDLkVRIS .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NDLkVRIS .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NDLkVRIS .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NDLkVRIS .mbr-section-title {
  color: #000000;
}
.cid-v7NDLkVRIS .mbr-desc {
  color: #000000;
}
.cid-v7NDLkVRIS .mbr-text {
  color: #000000;
}
.cid-v7NDLl91si {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDLl91si .form-title,
  .cid-v7NDLl91si .form-wrapper {
    padding: 0;
  }
}
.cid-v7NDLl91si .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NDLl91si .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NDLl91si .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-v7NDLl91si .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDLl91si .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NDLl91si .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NDLl91si .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-v7NDLl91si .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDLl91si .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDLl91si .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NDLl91si .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NDLl91si .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NDLl91si .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NDLl91si .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NDLl91si .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NDLl91si .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NDLl91si .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NDLl91si .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NDLl91si .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NDLl91si .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDLl91si .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDLl91si .mbr-section-title {
  color: #000000;
}
.cid-v7NDLl91si .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NDH6pSAo .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NDH6pSAo .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NDH6pSAo .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NDH6pSAo .menu_box .navbar.opened,
  .cid-v7NDH6pSAo .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NDH6pSAo .navbar-dropdown {
  position: relative !important;
}
.cid-v7NDH6pSAo nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NDH6pSAo .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NDH6pSAo .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NDH6pSAo .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NDH6pSAo .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NDH6pSAo .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NDH6pSAo .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NDH6pSAo .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NDH6pSAo .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NDH6pSAo .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NDH6pSAo .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NDH6pSAo .offcanvas-body .mbr-text,
  .cid-v7NDH6pSAo .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NDH6pSAo .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NDH6pSAo .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NDH6pSAo .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NDH6pSAo .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NDH6pSAo .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NDH6pSAo .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NDH6pSAo .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NDH6pSAo ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NDH6pSAo .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDH6pSAo .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-v7NDH6pSAo .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NDH6pSAo li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NDH6pSAo .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NDH6pSAo .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NDH6pSAo .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NDH6pSAo .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NDH6pSAo .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NDH6pSAo .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NDH6pSAo .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NDH6pSAo .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NDH6pSAo .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NDH6pSAo .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NDH6pSAo .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NDH6pSAo .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NDH6pSAo .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-v7NDH6pSAo .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NDH6pSAo .offcanvas_box {
    display: none;
  }
}
.cid-v7NDH6pSAo .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NDH6pSAo .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NDH6pSAo .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NDH6pSAo .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NDH6pSAo .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NDH6pSAo .container {
  display: flex;
  margin: auto;
}
.cid-v7NDH6pSAo .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-v7NDH6pSAo .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NDH6pSAo .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NDH6pSAo .navbar-caption {
  color: #000000;
}
.cid-v7NDH6pSAo .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NDH6pSAo .navbar-nav {
    margin: 0;
  }
}
.cid-v7NDH6pSAo .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NDH6pSAo .dropdown-menu,
.cid-v7NDH6pSAo .navbar.opened {
  background-color: false !important;
}
.cid-v7NDH6pSAo .nav-item:focus,
.cid-v7NDH6pSAo .nav-link:focus {
  outline: none;
}
.cid-v7NDH6pSAo .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NDH6pSAo .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NDH6pSAo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NDH6pSAo .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NDH6pSAo .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NDH6pSAo .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NDH6pSAo .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NDH6pSAo .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NDH6pSAo .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NDH6pSAo .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NDH6pSAo .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NDH6pSAo .navbar.collapsed {
  justify-content: center;
}
.cid-v7NDH6pSAo .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NDH6pSAo .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NDH6pSAo .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NDH6pSAo .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NDH6pSAo .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NDH6pSAo .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NDH6pSAo .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NDH6pSAo .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NDH6pSAo .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NDH6pSAo .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NDH6pSAo .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NDH6pSAo .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NDH6pSAo .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NDH6pSAo .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NDH6pSAo .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NDH6pSAo .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NDH6pSAo .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NDH6pSAo .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NDH6pSAo .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NDH6pSAo .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NDH6pSAo .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NDH6pSAo .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NDH6pSAo .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NDH6pSAo .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NDH6pSAo .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-v7NDH6pSAo .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NDH6pSAo .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NDH6pSAo .dropdown-item.active,
.cid-v7NDH6pSAo .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NDH6pSAo .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NDH6pSAo .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NDH6pSAo .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NDH6pSAo .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NDH6pSAo ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NDH6pSAo .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NDH6pSAo 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-v7NDH6pSAo button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NDH6pSAo button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NDH6pSAo button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDH6pSAo button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NDH6pSAo button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NDH6pSAo nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDH6pSAo nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NDH6pSAo nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NDH6pSAo nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NDH6pSAo a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NDH6pSAo .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-v7NDH6pSAo .navbar {
    height: 70px;
  }
  .cid-v7NDH6pSAo .navbar.opened {
    height: auto;
  }
  .cid-v7NDH6pSAo .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NDH6pSAo .mbr-section-btn .btn,
.cid-v7NDH6pSAo .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-v7NDH6pSAo .mbr-section-btn .btn:first-child,
.cid-v7NDH6pSAo .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDH6pSAo .mbr-section-btn .btn:focus,
.cid-v7NDH6pSAo .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NDH6pSAo .mbr-section-btn .btn span,
.cid-v7NDH6pSAo .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-v7NDH6pSAo .mbr-section-btn .btn:hover,
.cid-v7NDH6pSAo .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDH6pSAo .mbr-section-btn .btn:hover span,
.cid-v7NDH6pSAo .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDH6pSAo .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NDH6pSAo .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NDH6pSAo .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NDH6pSAo .nav-link:hover {
  color: #124ad6;
}
.cid-v7NDH6pSAo .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NDH6pSAo .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NDH6pSAo .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NDH6pSAo .mbr-section-subtitle,
.cid-v7NDH6pSAo .text_widget {
  text-align: left;
}
.cid-v7NDH6pSAo a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NDH7gvhC {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDH7gvhC .row {
    flex-direction: column-reverse;
  }
}
.cid-v7NDH7gvhC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDH7gvhC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDH7gvhC .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-v7NDH7gvhC .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDH7gvhC .mbr-section-btn .btn:focus {
  box-shadow: none;
}
.cid-v7NDH7gvhC .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-v7NDH7gvhC .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDH7gvhC .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDH7gvhC .text-wrapper {
  margin-left: 160px;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NDH7gvhC .text-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NDH7gvhC .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-v7NDH7gvhC .text-wrapper .mbr-section-title {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDH7gvhC .text-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDH7gvhC .image-wrapper {
  margin-left: 200px;
}
@media (max-width: 992px) {
  .cid-v7NDH7gvhC .image-wrapper {
    margin: 0 30px 30px;
  }
}
.cid-v7NDH7gvhC .image-wrapper img {
  width: 100%;
  min-height: 760px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-v7NDH7gvhC .image-wrapper img {
    min-height: 650px;
  }
}
@media (max-width: 768px) {
  .cid-v7NDH7gvhC .image-wrapper img {
    min-height: 100%;
  }
}
.cid-v7NDH7gvhC .mbr-section-title {
  color: #000000;
}
.cid-v7NDH7gvhC .mbr-text {
  color: #000000;
}
.cid-v7NDH7xpUL {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NDH7xpUL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NDH7xpUL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NDH7xpUL .row {
  justify-content: space-between;
}
.cid-v7NDH7xpUL .content-wrapper {
  padding: 0 105px;
}
@media (max-width: 992px) {
  .cid-v7NDH7xpUL .content-wrapper {
    padding: 0;
  }
}
.cid-v7NDH7xpUL .content-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDH7xpUL .content-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-v7NDH7xpUL .content-wrapper .mbr-text {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v7NDH7xpUL .content-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-v7NDH7xpUL .content-wrapper .logo-wrapper .logo-wrap {
  display: inline-flex;
  align-items: center;
}
.cid-v7NDH7xpUL .content-wrapper .logo-wrapper .logo-wrap .image-wrap {
  margin-right: 12px;
}
.cid-v7NDH7xpUL .content-wrapper .logo-wrapper .logo-wrap .image-wrap img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.cid-v7NDH7xpUL .content-wrapper .logo-wrapper .logo-wrap .mbr-desc {
  margin-bottom: 0;
}
.cid-v7NDH7xpUL .mbr-section-title {
  color: #000000;
}
.cid-v7NDH7xpUL .mbr-desc {
  color: #000000;
}
.cid-v7NDH7xpUL .mbr-text {
  color: #000000;
}
.cid-v7NDH7KPCM {
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-v7NDH7KPCM .form-title,
  .cid-v7NDH7KPCM .form-wrapper {
    padding: 0;
  }
}
.cid-v7NDH7KPCM .mbr-section-btn {
  margin-top: 60px;
}
@media (max-width: 992px) {
  .cid-v7NDH7KPCM .mbr-section-btn {
    margin-top: 30px;
  }
}
.cid-v7NDH7KPCM .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-v7NDH7KPCM .mbr-section-btn .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NDH7KPCM .mbr-section-btn .btn:focus {
  box-shadow: none;
}
@media (max-width: 768px) {
  .cid-v7NDH7KPCM .mbr-section-btn .btn {
    max-width: 85px;
  }
}
.cid-v7NDH7KPCM .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-v7NDH7KPCM .mbr-section-btn .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NDH7KPCM .mbr-section-btn .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NDH7KPCM .title-wrapper {
  margin-left: 160px;
  margin-right: 30px;
}
@media (max-width: 992px) {
  .cid-v7NDH7KPCM .title-wrapper {
    margin: 0 30px 25px;
  }
}
.cid-v7NDH7KPCM .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NDH7KPCM .mbr-form {
  margin-right: 160px;
}
@media (max-width: 992px) {
  .cid-v7NDH7KPCM .mbr-form {
    margin: 0 30px;
  }
}
.cid-v7NDH7KPCM .mbr-form .dragArea .mbr-section-subtitle {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v7NDH7KPCM .mbr-form .dragArea .mbr-section-subtitle {
    margin-bottom: 20px;
  }
}
.cid-v7NDH7KPCM .mbr-form .dragArea .form-group {
  margin-bottom: 20px !important;
}
@media (max-width: 992px) {
  .cid-v7NDH7KPCM .mbr-form .dragArea .form-group {
    margin-bottom: 12px !important;
  }
}
.cid-v7NDH7KPCM .mbr-form .dragArea .form-group .form-control {
  min-height: 50px;
  padding: 10px 25px;
  background: transparent;
  box-shadow: none;
  border: none !important;
  border-bottom: 2px solid #272727 !important;
  border-radius: 0;
}
.cid-v7NDH7KPCM .mbr-form .dragArea .form-group .form-control:hover {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDH7KPCM .mbr-form .dragArea .form-group .form-control:focus {
  border: none !important;
  border-bottom: 2px solid #124ad6 !important;
}
.cid-v7NDH7KPCM .mbr-section-title {
  color: #000000;
}
.cid-v7NDH7KPCM .mbr-section-subtitle {
  color: #000000;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
.cid-v7NiQPuBGP .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-v7NiQPuBGP .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-v7NiQPuBGP .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-v7NiQPuBGP .menu_box .navbar.opened,
  .cid-v7NiQPuBGP .menu_box .navbar-collapse {
    background-color: transparent !important;
    transition: all 0s ease 0s;
  }
}
.cid-v7NiQPuBGP .navbar-dropdown {
  position: relative !important;
}
.cid-v7NiQPuBGP nav.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.cid-v7NiQPuBGP .icons-menu-main {
  display: flex;
  flex-wrap: wrap;
  max-width: 150px;
}
@media (max-width: 991px) {
  .cid-v7NiQPuBGP .icons-menu-main {
    max-width: 100%;
    margin: 1rem 0 1rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v7NiQPuBGP .mbr-section-btn-main {
    margin-top: 1rem;
  }
}
.cid-v7NiQPuBGP .btn {
  min-height: 24px;
  border: none;
  box-shadow: none;
  margin-top: 0;
}
.cid-v7NiQPuBGP .btn:hover {
  border: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v7NiQPuBGP .offcanvas {
    padding: 120px 60px 35px;
    width: 480px;
    background-color: #ffffff;
  }
  .cid-v7NiQPuBGP .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v7NiQPuBGP .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v7NiQPuBGP .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v7NiQPuBGP .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v7NiQPuBGP .offcanvas-body .mbr-text,
  .cid-v7NiQPuBGP .offcanvas-body .mbr-section-subtitle {
    margin-top: 14px;
  }
  .cid-v7NiQPuBGP .offcanvas-body .offcanvas_contact {
    margin: 35px 0;
  }
  .cid-v7NiQPuBGP .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v7NiQPuBGP .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #124ad6;
  }
  .cid-v7NiQPuBGP .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v7NiQPuBGP .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v7NiQPuBGP .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v7NiQPuBGP .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v7NiQPuBGP ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v7NiQPuBGP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NiQPuBGP .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-v7NiQPuBGP .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v7NiQPuBGP li.nav-item {
    position: relative;
    display: inline-block;
    padding: 5px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
  }
  .cid-v7NiQPuBGP .lg_brand {
    margin: 0 1rem;
  }
}
.cid-v7NiQPuBGP .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v7NiQPuBGP .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v7NiQPuBGP .nav-item {
    margin: 0 !important;
  }
}
.cid-v7NiQPuBGP .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v7NiQPuBGP .dropdown-menu {
    padding: 12px 4px;
    min-width: 200px;
    left: -40px !important;
  }
  .cid-v7NiQPuBGP .dropdown-menu.dropdown-submenu {
    left: 105% !important;
    top: -50% !important;
  }
  .cid-v7NiQPuBGP .dropdown-menu .dropdown-toggle::before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    right: -30px;
    width: 40px;
    height: 100%;
    background: transparent;
    pointer-events: auto;
  }
  .cid-v7NiQPuBGP .dropdown-menu .dropdown-item {
    padding: 0 12px !important;
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .cid-v7NiQPuBGP .dropdown-menu .dropdown-item:hover {
    color: #124ad6;
  }
  .cid-v7NiQPuBGP .dropdown-menu .dropdown-item::after {
    position: static;
    margin: 0;
    display: inline-block;
  }
}
@media (max-width: 991px) {
  .cid-v7NiQPuBGP .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v7NiQPuBGP .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-v7NiQPuBGP .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v7NiQPuBGP .offcanvas_box {
    display: none;
  }
}
.cid-v7NiQPuBGP .dropdown-item {
  border: none;
  font-weight: 400 !important;
}
.cid-v7NiQPuBGP .nav-dropdown .link {
  font-weight: 600 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v7NiQPuBGP .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v7NiQPuBGP .nav-link {
  position: relative;
  color: #000000;
}
.cid-v7NiQPuBGP .nav-link::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  bottom: -4px;
  background-color: transparent;
  height: 2px;
  transition: all .3s ease;
}
.cid-v7NiQPuBGP .container {
  display: flex;
  margin: auto;
}
.cid-v7NiQPuBGP .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-v7NiQPuBGP .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v7NiQPuBGP .iconfont-wrapper:hover {
  color: #124ad6;
}
.cid-v7NiQPuBGP .navbar-caption {
  color: #000000;
}
.cid-v7NiQPuBGP .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v7NiQPuBGP .navbar-nav {
    margin: 0;
  }
}
.cid-v7NiQPuBGP .navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}
.cid-v7NiQPuBGP .dropdown-menu,
.cid-v7NiQPuBGP .navbar.opened {
  background-color: false !important;
}
.cid-v7NiQPuBGP .nav-item:focus,
.cid-v7NiQPuBGP .nav-link:focus {
  outline: none;
}
.cid-v7NiQPuBGP .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v7NiQPuBGP .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v7NiQPuBGP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v7NiQPuBGP .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v7NiQPuBGP .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v7NiQPuBGP .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v7NiQPuBGP .navbar {
  min-height: 120px;
  transition: all 0.3s;
  border-bottom-width: 0px;
  border-bottom: 1px solid #e5e5e5;
}
.cid-v7NiQPuBGP .navbar.opened {
  transition: all 0.3s;
}
.cid-v7NiQPuBGP .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v7NiQPuBGP .navbar .navbar-logo img {
  object-fit: cover;
}
.cid-v7NiQPuBGP .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-v7NiQPuBGP .navbar.collapsed {
  justify-content: center;
}
.cid-v7NiQPuBGP .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v7NiQPuBGP .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v7NiQPuBGP .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v7NiQPuBGP .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v7NiQPuBGP .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v7NiQPuBGP .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v7NiQPuBGP .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v7NiQPuBGP .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v7NiQPuBGP .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v7NiQPuBGP .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v7NiQPuBGP .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v7NiQPuBGP .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v7NiQPuBGP .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v7NiQPuBGP .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v7NiQPuBGP .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v7NiQPuBGP .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v7NiQPuBGP .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v7NiQPuBGP .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v7NiQPuBGP .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v7NiQPuBGP .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v7NiQPuBGP .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v7NiQPuBGP .navbar.navbar-short {
  min-height: 60px;
}
.cid-v7NiQPuBGP .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v7NiQPuBGP .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v7NiQPuBGP .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-v7NiQPuBGP .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v7NiQPuBGP .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v7NiQPuBGP .dropdown-item.active,
.cid-v7NiQPuBGP .dropdown-item:active {
  background-color: transparent;
}
.cid-v7NiQPuBGP .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v7NiQPuBGP .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v7NiQPuBGP .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v7NiQPuBGP .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v7NiQPuBGP ul.navbar-nav {
  flex-wrap: wrap;
  padding-bottom: 0;
}
.cid-v7NiQPuBGP .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v7NiQPuBGP 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-v7NiQPuBGP button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #124ad6;
}
.cid-v7NiQPuBGP button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v7NiQPuBGP button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NiQPuBGP button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v7NiQPuBGP button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v7NiQPuBGP nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NiQPuBGP nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v7NiQPuBGP nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v7NiQPuBGP nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v7NiQPuBGP a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v7NiQPuBGP .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-v7NiQPuBGP .navbar {
    height: 70px;
  }
  .cid-v7NiQPuBGP .navbar.opened {
    height: auto;
  }
  .cid-v7NiQPuBGP .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v7NiQPuBGP .mbr-section-btn .btn,
.cid-v7NiQPuBGP .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-v7NiQPuBGP .mbr-section-btn .btn:first-child,
.cid-v7NiQPuBGP .mbr-section-btn-main .btn:first-child {
  margin-left: 9.6px;
}
.cid-v7NiQPuBGP .mbr-section-btn .btn:focus,
.cid-v7NiQPuBGP .mbr-section-btn-main .btn:focus {
  box-shadow: none;
}
.cid-v7NiQPuBGP .mbr-section-btn .btn span,
.cid-v7NiQPuBGP .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-v7NiQPuBGP .mbr-section-btn .btn:hover,
.cid-v7NiQPuBGP .mbr-section-btn-main .btn:hover {
  transform: scale(1) !important;
  color: #124ad6 !important;
}
.cid-v7NiQPuBGP .mbr-section-btn .btn:hover span,
.cid-v7NiQPuBGP .mbr-section-btn-main .btn:hover span {
  width: 28px;
  border-radius: 22px;
  right: -28px;
}
.cid-v7NiQPuBGP .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v7NiQPuBGP .container-fluid {
    padding-left: 60px;
    padding-right: 60px;
  }
}
.cid-v7NiQPuBGP .navbar-caption:hover {
  color: #124ad6;
}
.cid-v7NiQPuBGP .nav-link:hover {
  color: #124ad6;
}
.cid-v7NiQPuBGP .nav-link:hover::before {
  background-color: #000000;
}
.cid-v7NiQPuBGP .mbr-section-subtitle {
  color: #124ad6;
}
.cid-v7NiQPuBGP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-v7NiQPuBGP .mbr-section-subtitle,
.cid-v7NiQPuBGP .text_widget {
  text-align: left;
}
.cid-v7NiQPuBGP a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v7NOFlNqNF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v7NOFlNqNF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NOFlNqNF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NOFlNqNF .title-wrapper {
  margin: 0 160px;
  border-top: 2px solid #e5e5e5;
  position: relative;
}
@media (max-width: 992px) {
  .cid-v7NOFlNqNF .title-wrapper {
    margin: 0 30px;
  }
}
.cid-v7NOFlNqNF .title-wrapper .mbr-section-title {
  padding-top: 20px;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v7NOFlNqNF .title-wrapper .mbr-section-title {
    padding-top: 12px;
    margin-bottom: 60px;
  }
}
@media (max-width: 768px) {
  .cid-v7NOFlNqNF .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-v7NOFlNqNF .cards {
  margin: 0 144px;
}
@media (max-width: 992px) {
  .cid-v7NOFlNqNF .cards {
    margin: 0 18px;
  }
}
@media (max-width: 768px) {
  .cid-v7NOFlNqNF .cards {
    margin: 0 30px;
  }
}
.cid-v7NOFlNqNF .cards .card {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v7NOFlNqNF .cards .card {
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .cid-v7NOFlNqNF .cards .card {
    padding: 0;
  }
}
.cid-v7NOFlNqNF .cards .card .card-wrapper {
  position: relative;
  width: 100%;
  min-height: 510px;
}
.cid-v7NOFlNqNF .cards .card .card-wrapper .card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  background: #124ad6;
  opacity: 0;
  transition: all .3s ease;
  z-index: 1;
  pointer-events: none;
}
@media (max-width: 992px) {
  .cid-v7NOFlNqNF .cards .card .card-wrapper .card-overlay {
    z-index: 0;
  }
}
.cid-v7NOFlNqNF .cards .card .card-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 510px;
  object-fit: cover;
  pointer-events: visible;
}
.cid-v7NOFlNqNF .cards .card .card-wrap {
  margin-top: 40px;
  display: flex;
  transform: translate(-36px, 0);
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NOFlNqNF .cards .card .card-wrap {
    margin-top: 25px;
    transform: none;
  }
}
.cid-v7NOFlNqNF .cards .card .card-wrap span {
  display: flex;
  align-items: center;
  font-size: 22px;
  margin-right: 12px;
  opacity: 0;
  transition: all .4s ease;
}
@media (max-width: 992px) {
  .cid-v7NOFlNqNF .cards .card .card-wrap span {
    opacity: 1;
  }
}
.cid-v7NOFlNqNF .cards .card .card-wrap .card-title {
  margin: 0;
}
.cid-v7NOFlNqNF .card-link:hover .card-wrapper .card-overlay {
  opacity: .7;
}
.cid-v7NOFlNqNF .card-link:hover .card-wrap {
  transform: translate(0, 0);
}
.cid-v7NOFlNqNF .card-link:hover .card-wrap span {
  opacity: 1;
  color: #124ad6;
}
.cid-v7NOFlNqNF .mbr-section-title {
  color: #000000;
}
.cid-v7NOFlNqNF .card-title,
.cid-v7NOFlNqNF .mbr-iconfont {
  color: #000000;
}
.cid-v7NOFlNqNF .card-link:hover .card-wrap .card-title {
  color: #124ad6;
}
.cid-v7NUPfslyb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #e5e5e5;
}
.cid-v7NUPfslyb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7NUPfslyb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7NUPfslyb .row-main {
  margin-bottom: 200px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 140px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .row-main {
    margin-bottom: 60px;
  }
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .title {
    display: none;
  }
}
.cid-v7NUPfslyb .title-wrapper {
  display: flex;
}
.cid-v7NUPfslyb .title-wrapper img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 12px;
  border-radius: 15%;
}
.cid-v7NUPfslyb .title-wrapper .mbr-section-title {
  margin: 0;
}
.cid-v7NUPfslyb .list {
  list-style: none;
  padding-left: 0;
  color: #000000;
}
@media (max-width: 991px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-v7NUPfslyb .list {
    margin-bottom: 0;
  }
}
.cid-v7NUPfslyb .social-wrapper {
  width: 100%;
}
.cid-v7NUPfslyb .social-row {
  display: inline-flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .social-row {
    margin-top: 12px;
  }
}
.cid-v7NUPfslyb .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  margin-bottom: 20px;
  height: 18px;
  width: 18px;
}
.cid-v7NUPfslyb .soc-item a span {
  font-size: 18px;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .card-list {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-section-subtitle {
  margin-bottom: 20px;
  color: #8c8c8c;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .mbr-section-subtitle {
    display: none;
  }
}
.cid-v7NUPfslyb .mbr-text {
  margin-bottom: 20px;
  transition: all .3s ease;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-text {
    margin-bottom: 12px;
  }
}
.cid-v7NUPfslyb .mbr-contact {
  margin-bottom: 0;
  padding-bottom: 6px;
  transition: all .3s ease;
  color: #000000;
}
@media (max-width: 992px) {
  .cid-v7NUPfslyb .mbr-contact {
    padding-bottom: 4px;
  }
}
.cid-v7NUPfslyb .copyright-container {
  display: flex;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container {
    display: block;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-wrapper {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-wrapper .copyright {
  margin-bottom: 20px;
}
.cid-v7NUPfslyb .copyright-container .copyright-list {
  width: 50%;
}
@media (max-width: 768px) {
  .cid-v7NUPfslyb .copyright-container .copyright-list {
    width: 100%;
  }
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul {
  display: inline-flex;
}
.cid-v7NUPfslyb .copyright-container .copyright-list ul .mbr-copy {
  margin: 0 30px 0 0;
  transition: all .3s ease;
}
.cid-v7NUPfslyb .item-wrap:hover,
.cid-v7NUPfslyb p:hover,
.cid-v7NUPfslyb .mbr-iconfont:hover {
  color: #124ad6;
}
.cid-v7NUPfslyb .mbr-section-title,
.cid-v7NUPfslyb .mbr-iconfont {
  color: #000000;
}
.cid-v7NUPfslyb .copyright {
  color: #000000;
}
.cid-v7NUPfslyb .list-copy {
  color: #000000;
  text-align: right;
}
