.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 4rem;
}
.display-2 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 2.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.75rem;
}
.display-4 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.125rem;
}
.display-5 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.56rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.24rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #fafafa !important;
}
.bg-info {
  background-color: #7d818f !important;
}
.bg-warning {
  background-color: #232323 !important;
}
.bg-danger {
  background-color: #bbbbbb !important;
}
.btn-primary,
.btn-primary: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-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #575a65 !important;
  border-color: #575a65 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #2f3036 !important;
  border-color: #2f3036 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2f3036 !important;
  border-color: #2f3036 !important;
}
.btn-info,
.btn-info:active {
  background-color: #7d818f !important;
  border-color: #7d818f !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #545761 !important;
  border-color: #545761 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #545761 !important;
  border-color: #545761 !important;
}
.btn-success,
.btn-success: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-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-warning,
.btn-warning: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-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #909090 !important;
  border-color: #909090 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: #d4d4d4 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #575a65;
  color: #575a65;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2f3036 !important;
  background-color: transparent!important;
  border-color: #2f3036 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #575a65 !important;
  border-color: #575a65 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #7d818f;
  color: #7d818f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #545761 !important;
  background-color: transparent!important;
  border-color: #545761 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #7d818f !important;
  border-color: #7d818f !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #bbbbbb;
  color: #bbbbbb;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #909090 !important;
  background-color: transparent!important;
  border-color: #909090 !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #bbbbbb !important;
  border-color: #bbbbbb !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  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: #000000 !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: #fafafa;
  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: #cfcfcf !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: #ffffff !important;
}
.text-secondary {
  color: #575a65 !important;
}
.text-success {
  color: #fafafa !important;
}
.text-info {
  color: #7d818f !important;
}
.text-warning {
  color: #232323 !important;
}
.text-danger {
  color: #bbbbbb !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #28292e !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #c7c7c7 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #4d5059 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #888888 !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: #ffffff;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #7d818f;
}
.alert-warning {
  background-color: #232323;
}
.alert-danger {
  background-color: #bbbbbb;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #c1c3ca;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d5d5d5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fbfbfb;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.125rem;
}
.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: #ffffff !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Noto Sans TC', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.125rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ffffff;
}
.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: #ffffff;
  border-bottom-color: #ffffff;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #000000 !important;
  background-color: #ffffff !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: #575a65 !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='%23ffffff' %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;
}
.cid-uKp7Nc5tvU .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKp7Nc5tvU .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKp7Nc5tvU .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKp7Nc5tvU .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKp7Nc5tvU .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKp7Nc5tvU .menu_box .navbar.opened,
  .cid-uKp7Nc5tvU .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKp7Nc5tvU .navbar-dropdown {
  position: relative !important;
}
.cid-uKp7Nc5tvU .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKp7Nc5tvU .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKp7Nc5tvU .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKp7Nc5tvU .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKp7Nc5tvU .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKp7Nc5tvU .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKp7Nc5tvU .offcanvas-body .mbr-text,
  .cid-uKp7Nc5tvU .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKp7Nc5tvU .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKp7Nc5tvU .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKp7Nc5tvU .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKp7Nc5tvU .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKp7Nc5tvU .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKp7Nc5tvU .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKp7Nc5tvU .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKp7Nc5tvU ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKp7Nc5tvU .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKp7Nc5tvU .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-uKp7Nc5tvU .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKp7Nc5tvU li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKp7Nc5tvU .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKp7Nc5tvU .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKp7Nc5tvU .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKp7Nc5tvU .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKp7Nc5tvU .nav-item {
    margin: 0 !important;
  }
}
.cid-uKp7Nc5tvU .nav-item .nav-link {
  position: relative;
}
.cid-uKp7Nc5tvU .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKp7Nc5tvU .nav-item .nav-link:hover,
.cid-uKp7Nc5tvU .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKp7Nc5tvU .nav-item .nav-link:hover::before,
.cid-uKp7Nc5tvU .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKp7Nc5tvU .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKp7Nc5tvU .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKp7Nc5tvU .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKp7Nc5tvU .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKp7Nc5tvU .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-uKp7Nc5tvU .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKp7Nc5tvU .offcanvas_box {
    display: none;
  }
}
.cid-uKp7Nc5tvU .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKp7Nc5tvU .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKp7Nc5tvU .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKp7Nc5tvU .container {
  display: flex;
  margin: auto;
}
.cid-uKp7Nc5tvU .iconfont-wrapper {
  color: #1b1b1b;
  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-uKp7Nc5tvU .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKp7Nc5tvU .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKp7Nc5tvU .navbar-caption {
  color: #ffffff;
}
.cid-uKp7Nc5tvU .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKp7Nc5tvU .navbar-nav {
    margin: 0;
  }
}
.cid-uKp7Nc5tvU .dropdown-menu,
.cid-uKp7Nc5tvU .navbar.opened {
  background-color: false !important;
}
.cid-uKp7Nc5tvU .nav-item:focus,
.cid-uKp7Nc5tvU .nav-link:focus {
  outline: none;
}
.cid-uKp7Nc5tvU .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKp7Nc5tvU .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKp7Nc5tvU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKp7Nc5tvU .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKp7Nc5tvU .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKp7Nc5tvU .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKp7Nc5tvU .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKp7Nc5tvU .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKp7Nc5tvU .navbar.opened {
  transition: all 0.3s;
}
.cid-uKp7Nc5tvU .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKp7Nc5tvU .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKp7Nc5tvU .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKp7Nc5tvU .navbar.collapsed {
  justify-content: center;
}
.cid-uKp7Nc5tvU .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKp7Nc5tvU .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKp7Nc5tvU .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKp7Nc5tvU .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKp7Nc5tvU .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKp7Nc5tvU .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKp7Nc5tvU .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKp7Nc5tvU .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKp7Nc5tvU .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKp7Nc5tvU .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKp7Nc5tvU .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKp7Nc5tvU .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKp7Nc5tvU .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKp7Nc5tvU .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKp7Nc5tvU .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKp7Nc5tvU .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKp7Nc5tvU .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKp7Nc5tvU .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKp7Nc5tvU .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKp7Nc5tvU .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKp7Nc5tvU .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKp7Nc5tvU .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKp7Nc5tvU .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKp7Nc5tvU .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKp7Nc5tvU .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-uKp7Nc5tvU .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKp7Nc5tvU .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKp7Nc5tvU .dropdown-item.active,
.cid-uKp7Nc5tvU .dropdown-item:active {
  background-color: transparent;
}
.cid-uKp7Nc5tvU .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKp7Nc5tvU .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKp7Nc5tvU .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKp7Nc5tvU .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKp7Nc5tvU .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKp7Nc5tvU ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKp7Nc5tvU .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKp7Nc5tvU button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKp7Nc5tvU button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKp7Nc5tvU button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKp7Nc5tvU button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKp7Nc5tvU button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKp7Nc5tvU button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKp7Nc5tvU nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKp7Nc5tvU nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKp7Nc5tvU nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKp7Nc5tvU nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKp7Nc5tvU a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKp7Nc5tvU .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-uKp7Nc5tvU .navbar {
    height: 70px;
  }
  .cid-uKp7Nc5tvU .navbar.opened {
    height: auto;
  }
  .cid-uKp7Nc5tvU .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKp7Nc5tvU .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKp7Nc5tvU .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKp7Nc5tvU .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKp7Nc5tvU .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKp7Nc5tvU .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKp7Nc5tvU .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKp7Nc5tvU .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKp7Nc5tvU .text_widget {
  margin-bottom: 32px;
}
.cid-uKp7Nc5tvU .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKp7Nc5tvU .text_widget a:hover {
  opacity: .5;
}
.cid-uKp7Nc5tvU .icons-menu-main {
  display: flex;
}
.cid-uKp7Nc5tvU .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKp7Nc5tvU .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKp7Nc5tvU .mbr-section-subtitle,
.cid-uKp7Nc5tvU .text_widget,
.cid-uKp7Nc5tvU .mbr-section-btn {
  text-align: center;
}
.cid-uKp7Nc5tvU a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uIAjMSW9t9 {
  padding-top: 0;
  padding-bottom: 0;
  background-color: #232323;
}
.cid-uIAjMSW9t9 .carousel {
  width: 100%;
}
.cid-uIAjMSW9t9 .carousel-inner {
  display: flex;
  align-content: center;
  align-items: center;
}
.cid-uIAjMSW9t9 .carousel-item img {
  height: 100vh;
  object-fit: cover;
}
.cid-uIAjMSW9t9 .carousel-caption {
  bottom: 40px;
}
.cid-uIAjMSW9t9 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-uIAjMSW9t9 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-uIAjMSW9t9 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-uIAjMSW9t9 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uIAjMSW9t9 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-uIAjMSW9t9 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-uIAjMSW9t9 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-uIAjMSW9t9 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uIAjMSW9t9 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uIAjMSW9t9 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uIAjMSW9t9 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uIAjMSW9t9 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-uIAjMSW9t9 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uIAjMSW9t9 .carousel-indicators li.active,
.cid-uIAjMSW9t9 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uIAjMSW9t9 .carousel-indicators li::after,
.cid-uIAjMSW9t9 .carousel-indicators li::before {
  content: none;
}
.cid-uIAjMSW9t9 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uIAjMSW9t9 .carousel-indicators {
    display: none !important;
  }
}
.cid-uIAjMSW9t9 DIV {
  text-align: left;
}
.cid-uIAjMSW9t9 H5 {
  text-align: left;
  color: #ffffff;
}
.cid-uMyeCAb4zS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #5c5c5c;
}
.cid-uMyeCAb4zS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMyeCAb4zS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMyd2s7qXd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #5c5c5c;
}
.cid-uMyd2s7qXd .title {
  background: #ffffff;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.cid-uMyd2s7qXd .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-uMyd2s7qXd .card-title {
  color: #353535;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-uMyd2s7qXd .card-img {
  overflow: hidden;
}
.cid-uMyd2s7qXd .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-uMyd2s7qXd img {
  transition: all 0.3s;
}
.cid-uMyd2s7qXd .card-box {
  padding: 2rem;
}
.cid-uMyd2s7qXd .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #656565;
}
.cid-uMyd2s7qXd .mbr-section-title,
.cid-uMyd2s7qXd .title DIV {
  text-align: center;
  color: #656565;
}
.cid-uMyd2s7qXd .card-box > p,
.cid-uMyd2s7qXd .mbr-section-btn {
  color: #353535;
}
.cid-uMyd2s7qXd .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMyd2s7qXd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMy45dUlvt {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #5c5c5c;
}
.cid-uMy45dUlvt .title {
  background: #fafafa;
  width: fit-content;
  display: inline-block;
  padding: 1rem 2rem;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
}
.cid-uMy45dUlvt .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #fafafa;
  color: #444444;
  box-shadow: 0 1px 6px 0 rgba(0, 0, 0, 0.08);
  padding: 0;
}
.cid-uMy45dUlvt .card-title {
  color: #353535;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-uMy45dUlvt .card-img {
  overflow: hidden;
}
.cid-uMy45dUlvt .card-img:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
.cid-uMy45dUlvt img {
  transition: all 0.3s;
}
.cid-uMy45dUlvt .card-box {
  padding: 2rem;
}
.cid-uMy45dUlvt .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #656565;
}
.cid-uMy45dUlvt .mbr-section-title,
.cid-uMy45dUlvt .title DIV {
  text-align: center;
  color: #656565;
}
.cid-uMy45dUlvt .card-box > p,
.cid-uMy45dUlvt .mbr-section-btn {
  color: #353535;
}
.cid-uMy45dUlvt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMy45dUlvt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKpmZxo83V .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKpmZxo83V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKpmZxo83V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKpmZxo83V .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKpmZxo83V .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKpmZxo83V .menu_box .navbar.opened,
  .cid-uKpmZxo83V .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKpmZxo83V .navbar-dropdown {
  position: relative !important;
}
.cid-uKpmZxo83V .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKpmZxo83V .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKpmZxo83V .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKpmZxo83V .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKpmZxo83V .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKpmZxo83V .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKpmZxo83V .offcanvas-body .mbr-text,
  .cid-uKpmZxo83V .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKpmZxo83V .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKpmZxo83V .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKpmZxo83V .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKpmZxo83V .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKpmZxo83V .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKpmZxo83V .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKpmZxo83V .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKpmZxo83V ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKpmZxo83V .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKpmZxo83V .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-uKpmZxo83V .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKpmZxo83V li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKpmZxo83V .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKpmZxo83V .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKpmZxo83V .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKpmZxo83V .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKpmZxo83V .nav-item {
    margin: 0 !important;
  }
}
.cid-uKpmZxo83V .nav-item .nav-link {
  position: relative;
}
.cid-uKpmZxo83V .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKpmZxo83V .nav-item .nav-link:hover,
.cid-uKpmZxo83V .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKpmZxo83V .nav-item .nav-link:hover::before,
.cid-uKpmZxo83V .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKpmZxo83V .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKpmZxo83V .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKpmZxo83V .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKpmZxo83V .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKpmZxo83V .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-uKpmZxo83V .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKpmZxo83V .offcanvas_box {
    display: none;
  }
}
.cid-uKpmZxo83V .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKpmZxo83V .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKpmZxo83V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKpmZxo83V .container {
  display: flex;
  margin: auto;
}
.cid-uKpmZxo83V .iconfont-wrapper {
  color: #1b1b1b;
  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-uKpmZxo83V .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKpmZxo83V .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKpmZxo83V .navbar-caption {
  color: #ffffff;
}
.cid-uKpmZxo83V .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKpmZxo83V .navbar-nav {
    margin: 0;
  }
}
.cid-uKpmZxo83V .dropdown-menu,
.cid-uKpmZxo83V .navbar.opened {
  background-color: false !important;
}
.cid-uKpmZxo83V .nav-item:focus,
.cid-uKpmZxo83V .nav-link:focus {
  outline: none;
}
.cid-uKpmZxo83V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKpmZxo83V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKpmZxo83V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKpmZxo83V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKpmZxo83V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKpmZxo83V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKpmZxo83V .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKpmZxo83V .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKpmZxo83V .navbar.opened {
  transition: all 0.3s;
}
.cid-uKpmZxo83V .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKpmZxo83V .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKpmZxo83V .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKpmZxo83V .navbar.collapsed {
  justify-content: center;
}
.cid-uKpmZxo83V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKpmZxo83V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKpmZxo83V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKpmZxo83V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKpmZxo83V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKpmZxo83V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKpmZxo83V .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKpmZxo83V .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKpmZxo83V .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKpmZxo83V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKpmZxo83V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKpmZxo83V .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKpmZxo83V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKpmZxo83V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKpmZxo83V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKpmZxo83V .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKpmZxo83V .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKpmZxo83V .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKpmZxo83V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKpmZxo83V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKpmZxo83V .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKpmZxo83V .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKpmZxo83V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKpmZxo83V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKpmZxo83V .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-uKpmZxo83V .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKpmZxo83V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKpmZxo83V .dropdown-item.active,
.cid-uKpmZxo83V .dropdown-item:active {
  background-color: transparent;
}
.cid-uKpmZxo83V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKpmZxo83V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKpmZxo83V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKpmZxo83V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKpmZxo83V .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKpmZxo83V ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKpmZxo83V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKpmZxo83V button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKpmZxo83V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKpmZxo83V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKpmZxo83V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKpmZxo83V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKpmZxo83V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKpmZxo83V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKpmZxo83V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKpmZxo83V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKpmZxo83V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKpmZxo83V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKpmZxo83V .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-uKpmZxo83V .navbar {
    height: 70px;
  }
  .cid-uKpmZxo83V .navbar.opened {
    height: auto;
  }
  .cid-uKpmZxo83V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKpmZxo83V .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKpmZxo83V .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKpmZxo83V .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKpmZxo83V .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKpmZxo83V .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKpmZxo83V .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKpmZxo83V .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKpmZxo83V .text_widget {
  margin-bottom: 32px;
}
.cid-uKpmZxo83V .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKpmZxo83V .text_widget a:hover {
  opacity: .5;
}
.cid-uKpmZxo83V .icons-menu-main {
  display: flex;
}
.cid-uKpmZxo83V .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKpmZxo83V .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKpmZxo83V .mbr-section-subtitle,
.cid-uKpmZxo83V .text_widget,
.cid-uKpmZxo83V .mbr-section-btn {
  text-align: center;
}
.cid-uKpmZxo83V a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOsgV02Vod {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uOsgV02Vod .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsgV02Vod .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uKpqQpNISs {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-color: #5c5c5c;
}
.cid-uKpqQpNISs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKpqQpNISs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL3zFuQbyy {
  padding-top: 0rem;
  padding-bottom: 7rem;
  background-color: #5c5c5c;
}
.cid-uL3zFuQbyy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL3zFuQbyy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uL3zFuQbyy .container {
    padding: 0 22px;
  }
}
.cid-uL3zFuQbyy .row {
  justify-content: center;
  margin: 0 -6px;
}
.cid-uL3zFuQbyy .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 480px;
  padding: 32px;
}
@media (max-width: 768px) {
  .cid-uL3zFuQbyy .item .item-wrapper .item-img {
    height: 400px;
  }
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img:hover::before,
.cid-uL3zFuQbyy .item .item-wrapper .item-img:focus::before {
  opacity: 0;
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img:hover .item-content,
.cid-uL3zFuQbyy .item .item-wrapper .item-img:focus .item-content {
  transform: translateY(-2rem);
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #353535;
  opacity: .5;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img .item-content .card-title {
  margin-bottom: 16px;
}
.cid-uL3zFuQbyy .item .item-wrapper .item-img .item-content .card-text {
  margin-bottom: 0;
}
.cid-uL3zFuQbyy .card-title {
  color: #232323;
}
.cid-uL3zFuQbyy .card-text {
  color: #424242;
}
.cid-uOsxMpwjHT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uOsxMpwjHT .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsxMpwjHT .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKppbpA8uz .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKppbpA8uz .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKppbpA8uz .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKppbpA8uz .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKppbpA8uz .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKppbpA8uz .menu_box .navbar.opened,
  .cid-uKppbpA8uz .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKppbpA8uz .navbar-dropdown {
  position: relative !important;
}
.cid-uKppbpA8uz .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKppbpA8uz .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKppbpA8uz .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKppbpA8uz .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKppbpA8uz .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKppbpA8uz .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKppbpA8uz .offcanvas-body .mbr-text,
  .cid-uKppbpA8uz .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKppbpA8uz .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKppbpA8uz .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKppbpA8uz .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKppbpA8uz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKppbpA8uz .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKppbpA8uz .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKppbpA8uz .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKppbpA8uz ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKppbpA8uz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKppbpA8uz .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-uKppbpA8uz .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKppbpA8uz li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKppbpA8uz .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKppbpA8uz .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKppbpA8uz .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKppbpA8uz .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKppbpA8uz .nav-item {
    margin: 0 !important;
  }
}
.cid-uKppbpA8uz .nav-item .nav-link {
  position: relative;
}
.cid-uKppbpA8uz .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKppbpA8uz .nav-item .nav-link:hover,
.cid-uKppbpA8uz .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKppbpA8uz .nav-item .nav-link:hover::before,
.cid-uKppbpA8uz .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKppbpA8uz .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKppbpA8uz .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKppbpA8uz .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKppbpA8uz .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKppbpA8uz .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-uKppbpA8uz .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKppbpA8uz .offcanvas_box {
    display: none;
  }
}
.cid-uKppbpA8uz .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKppbpA8uz .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKppbpA8uz .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKppbpA8uz .container {
  display: flex;
  margin: auto;
}
.cid-uKppbpA8uz .iconfont-wrapper {
  color: #1b1b1b;
  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-uKppbpA8uz .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKppbpA8uz .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKppbpA8uz .navbar-caption {
  color: #ffffff;
}
.cid-uKppbpA8uz .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKppbpA8uz .navbar-nav {
    margin: 0;
  }
}
.cid-uKppbpA8uz .dropdown-menu,
.cid-uKppbpA8uz .navbar.opened {
  background-color: false !important;
}
.cid-uKppbpA8uz .nav-item:focus,
.cid-uKppbpA8uz .nav-link:focus {
  outline: none;
}
.cid-uKppbpA8uz .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKppbpA8uz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKppbpA8uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKppbpA8uz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKppbpA8uz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKppbpA8uz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKppbpA8uz .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKppbpA8uz .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKppbpA8uz .navbar.opened {
  transition: all 0.3s;
}
.cid-uKppbpA8uz .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKppbpA8uz .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKppbpA8uz .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKppbpA8uz .navbar.collapsed {
  justify-content: center;
}
.cid-uKppbpA8uz .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKppbpA8uz .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKppbpA8uz .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKppbpA8uz .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKppbpA8uz .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKppbpA8uz .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKppbpA8uz .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKppbpA8uz .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKppbpA8uz .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKppbpA8uz .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKppbpA8uz .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKppbpA8uz .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKppbpA8uz .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKppbpA8uz .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKppbpA8uz .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKppbpA8uz .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKppbpA8uz .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKppbpA8uz .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKppbpA8uz .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKppbpA8uz .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKppbpA8uz .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKppbpA8uz .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKppbpA8uz .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKppbpA8uz .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKppbpA8uz .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-uKppbpA8uz .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKppbpA8uz .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKppbpA8uz .dropdown-item.active,
.cid-uKppbpA8uz .dropdown-item:active {
  background-color: transparent;
}
.cid-uKppbpA8uz .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKppbpA8uz .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKppbpA8uz .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKppbpA8uz .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKppbpA8uz .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKppbpA8uz ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKppbpA8uz .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKppbpA8uz button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKppbpA8uz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKppbpA8uz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKppbpA8uz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKppbpA8uz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKppbpA8uz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKppbpA8uz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKppbpA8uz nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKppbpA8uz nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKppbpA8uz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKppbpA8uz a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKppbpA8uz .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-uKppbpA8uz .navbar {
    height: 70px;
  }
  .cid-uKppbpA8uz .navbar.opened {
    height: auto;
  }
  .cid-uKppbpA8uz .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKppbpA8uz .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKppbpA8uz .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKppbpA8uz .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKppbpA8uz .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKppbpA8uz .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKppbpA8uz .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKppbpA8uz .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKppbpA8uz .text_widget {
  margin-bottom: 32px;
}
.cid-uKppbpA8uz .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKppbpA8uz .text_widget a:hover {
  opacity: .5;
}
.cid-uKppbpA8uz .icons-menu-main {
  display: flex;
}
.cid-uKppbpA8uz .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKppbpA8uz .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKppbpA8uz .mbr-section-subtitle,
.cid-uKppbpA8uz .text_widget,
.cid-uKppbpA8uz .mbr-section-btn {
  text-align: center;
}
.cid-uKppbpA8uz a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uQdYkKyzLQ {
  padding-top: 19rem;
  padding-bottom: 12rem;
  background-image: url("../../../assets/images/line-album-250707-3-3.jpg");
}
.cid-uQdYkKyzLQ .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uQdYkKyzLQ .mbr-text,
.cid-uQdYkKyzLQ .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uQdYkKyzLQ .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOswyMWSyc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOswyMWSyc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOswyMWSyc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOswyMWSyc .mbr-section-title {
  color: #7d818f;
  text-align: left;
}
.cid-uKppwN7jUb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKppwN7jUb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKppwN7jUb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKppwN7jUb .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKppwN7jUb .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uKppwN7jUb .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKppwN7jUb .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKppwN7jUb .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKppwN7jUb .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uKppwN7jUb .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uKppwN7jUb .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKppwN7jUb .mbr-text,
.cid-uKppwN7jUb .mbr-section-btn {
  color: #797979;
}
.cid-uKppxG5BPr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKppxG5BPr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKppxG5BPr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKppxG5BPr .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKppxG5BPr .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKppxG5BPr .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKppxG5BPr .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKppxG5BPr .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uKppxG5BPr .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uKppxG5BPr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKppxG5BPr .mbr-text,
.cid-uKppxG5BPr .mbr-section-btn {
  color: #797979;
}
.cid-uKppycXMm3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKppycXMm3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKppycXMm3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKppycXMm3 .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKppycXMm3 .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-uKppycXMm3 .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKppycXMm3 .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKppycXMm3 .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKppycXMm3 .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uKppycXMm3 .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-uKppycXMm3 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKppycXMm3 .mbr-text,
.cid-uKppycXMm3 .mbr-section-btn {
  color: #797979;
}
.cid-uKppyLoTOn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uKppyLoTOn .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKppyLoTOn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKppyLoTOn .content-wrapper {
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-uKppyLoTOn .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uKppyLoTOn .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-uKppyLoTOn .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-uKppyLoTOn .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-uKppyLoTOn .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-uKppyLoTOn .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uKppyLoTOn .mbr-text,
.cid-uKppyLoTOn .mbr-section-btn {
  color: #797979;
}
.cid-uOswAeuqd8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOswAeuqd8 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOswAeuqd8 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKupi1F4CA .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKupi1F4CA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKupi1F4CA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKupi1F4CA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKupi1F4CA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKupi1F4CA .menu_box .navbar.opened,
  .cid-uKupi1F4CA .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKupi1F4CA .navbar-dropdown {
  position: relative !important;
}
.cid-uKupi1F4CA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKupi1F4CA .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKupi1F4CA .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKupi1F4CA .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKupi1F4CA .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKupi1F4CA .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKupi1F4CA .offcanvas-body .mbr-text,
  .cid-uKupi1F4CA .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKupi1F4CA .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKupi1F4CA .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKupi1F4CA .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKupi1F4CA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKupi1F4CA .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKupi1F4CA .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKupi1F4CA .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKupi1F4CA ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKupi1F4CA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKupi1F4CA .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-uKupi1F4CA .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKupi1F4CA li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKupi1F4CA .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKupi1F4CA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKupi1F4CA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKupi1F4CA .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKupi1F4CA .nav-item {
    margin: 0 !important;
  }
}
.cid-uKupi1F4CA .nav-item .nav-link {
  position: relative;
}
.cid-uKupi1F4CA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKupi1F4CA .nav-item .nav-link:hover,
.cid-uKupi1F4CA .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKupi1F4CA .nav-item .nav-link:hover::before,
.cid-uKupi1F4CA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKupi1F4CA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKupi1F4CA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKupi1F4CA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKupi1F4CA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKupi1F4CA .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-uKupi1F4CA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKupi1F4CA .offcanvas_box {
    display: none;
  }
}
.cid-uKupi1F4CA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKupi1F4CA .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKupi1F4CA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKupi1F4CA .container {
  display: flex;
  margin: auto;
}
.cid-uKupi1F4CA .iconfont-wrapper {
  color: #1b1b1b;
  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-uKupi1F4CA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKupi1F4CA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKupi1F4CA .navbar-caption {
  color: #ffffff;
}
.cid-uKupi1F4CA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKupi1F4CA .navbar-nav {
    margin: 0;
  }
}
.cid-uKupi1F4CA .dropdown-menu,
.cid-uKupi1F4CA .navbar.opened {
  background-color: false !important;
}
.cid-uKupi1F4CA .nav-item:focus,
.cid-uKupi1F4CA .nav-link:focus {
  outline: none;
}
.cid-uKupi1F4CA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKupi1F4CA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKupi1F4CA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKupi1F4CA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKupi1F4CA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKupi1F4CA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKupi1F4CA .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKupi1F4CA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKupi1F4CA .navbar.opened {
  transition: all 0.3s;
}
.cid-uKupi1F4CA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKupi1F4CA .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKupi1F4CA .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKupi1F4CA .navbar.collapsed {
  justify-content: center;
}
.cid-uKupi1F4CA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKupi1F4CA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKupi1F4CA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKupi1F4CA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKupi1F4CA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKupi1F4CA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKupi1F4CA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKupi1F4CA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKupi1F4CA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKupi1F4CA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKupi1F4CA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKupi1F4CA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKupi1F4CA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKupi1F4CA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKupi1F4CA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKupi1F4CA .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKupi1F4CA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKupi1F4CA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKupi1F4CA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKupi1F4CA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKupi1F4CA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKupi1F4CA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKupi1F4CA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKupi1F4CA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKupi1F4CA .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-uKupi1F4CA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKupi1F4CA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKupi1F4CA .dropdown-item.active,
.cid-uKupi1F4CA .dropdown-item:active {
  background-color: transparent;
}
.cid-uKupi1F4CA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKupi1F4CA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKupi1F4CA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKupi1F4CA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKupi1F4CA .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKupi1F4CA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKupi1F4CA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKupi1F4CA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKupi1F4CA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKupi1F4CA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKupi1F4CA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKupi1F4CA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKupi1F4CA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKupi1F4CA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKupi1F4CA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKupi1F4CA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKupi1F4CA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKupi1F4CA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKupi1F4CA .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-uKupi1F4CA .navbar {
    height: 70px;
  }
  .cid-uKupi1F4CA .navbar.opened {
    height: auto;
  }
  .cid-uKupi1F4CA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKupi1F4CA .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKupi1F4CA .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKupi1F4CA .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKupi1F4CA .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKupi1F4CA .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKupi1F4CA .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKupi1F4CA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKupi1F4CA .text_widget {
  margin-bottom: 32px;
}
.cid-uKupi1F4CA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKupi1F4CA .text_widget a:hover {
  opacity: .5;
}
.cid-uKupi1F4CA .icons-menu-main {
  display: flex;
}
.cid-uKupi1F4CA .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKupi1F4CA .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKupi1F4CA .mbr-section-subtitle,
.cid-uKupi1F4CA .text_widget,
.cid-uKupi1F4CA .mbr-section-btn {
  text-align: center;
}
.cid-uKupi1F4CA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP1XPZzZti {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP1XPZzZti .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP1XPZzZti .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uKureYekeZ {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uKureYekeZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKureYekeZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uKureYekeZ .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uKureYekeZ .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uKureYekeZ .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uKureYekeZ .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uKureYekeZ .tabs-wrapper {
  padding-bottom: 24px;
  border-bottom: 1px solid #b9b9b9;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uKureYekeZ .tabs-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uKureYekeZ .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uKureYekeZ .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 8px 8px;
}
.cid-uKureYekeZ .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #dbdbdb;
  padding: 14px 32px;
  margin-bottom: 0;
  background-color: #42454e;
  border: none;
}
.cid-uKureYekeZ .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  color: #ffffff;
  background-color: #6e7381;
}
.cid-uKureYekeZ .tab-content .tab-pane .content-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uKureYekeZ .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .text-wrapper .item-title {
  margin-bottom: 24px;
}
.cid-uKureYekeZ .tab-content .tab-pane .content-wrapper .text-wrapper .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uKureYekeZ .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uKureYekeZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKureYekeZ .item-title {
  color: #ffffff;
}
.cid-uKureYekeZ .item-text {
  color: #ffffff;
  text-align: left;
}
.cid-uL3NOV4TZr {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uL3NOV4TZr .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uL3NOV4TZr .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKv3utioad .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKv3utioad .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKv3utioad .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKv3utioad .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKv3utioad .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKv3utioad .menu_box .navbar.opened,
  .cid-uKv3utioad .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKv3utioad .navbar-dropdown {
  position: relative !important;
}
.cid-uKv3utioad .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKv3utioad .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKv3utioad .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKv3utioad .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKv3utioad .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKv3utioad .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKv3utioad .offcanvas-body .mbr-text,
  .cid-uKv3utioad .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKv3utioad .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKv3utioad .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKv3utioad .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKv3utioad .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKv3utioad .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKv3utioad .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKv3utioad .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKv3utioad ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKv3utioad .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKv3utioad .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-uKv3utioad .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKv3utioad li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKv3utioad .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKv3utioad .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKv3utioad .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKv3utioad .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKv3utioad .nav-item {
    margin: 0 !important;
  }
}
.cid-uKv3utioad .nav-item .nav-link {
  position: relative;
}
.cid-uKv3utioad .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKv3utioad .nav-item .nav-link:hover,
.cid-uKv3utioad .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKv3utioad .nav-item .nav-link:hover::before,
.cid-uKv3utioad .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKv3utioad .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKv3utioad .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKv3utioad .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKv3utioad .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKv3utioad .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-uKv3utioad .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKv3utioad .offcanvas_box {
    display: none;
  }
}
.cid-uKv3utioad .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKv3utioad .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKv3utioad .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKv3utioad .container {
  display: flex;
  margin: auto;
}
.cid-uKv3utioad .iconfont-wrapper {
  color: #1b1b1b;
  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-uKv3utioad .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKv3utioad .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKv3utioad .navbar-caption {
  color: #ffffff;
}
.cid-uKv3utioad .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKv3utioad .navbar-nav {
    margin: 0;
  }
}
.cid-uKv3utioad .dropdown-menu,
.cid-uKv3utioad .navbar.opened {
  background-color: false !important;
}
.cid-uKv3utioad .nav-item:focus,
.cid-uKv3utioad .nav-link:focus {
  outline: none;
}
.cid-uKv3utioad .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKv3utioad .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKv3utioad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKv3utioad .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKv3utioad .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKv3utioad .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKv3utioad .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKv3utioad .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKv3utioad .navbar.opened {
  transition: all 0.3s;
}
.cid-uKv3utioad .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKv3utioad .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKv3utioad .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKv3utioad .navbar.collapsed {
  justify-content: center;
}
.cid-uKv3utioad .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKv3utioad .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKv3utioad .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKv3utioad .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKv3utioad .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKv3utioad .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKv3utioad .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKv3utioad .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKv3utioad .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKv3utioad .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKv3utioad .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKv3utioad .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKv3utioad .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKv3utioad .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKv3utioad .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKv3utioad .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKv3utioad .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKv3utioad .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKv3utioad .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKv3utioad .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKv3utioad .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKv3utioad .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKv3utioad .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKv3utioad .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKv3utioad .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-uKv3utioad .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKv3utioad .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKv3utioad .dropdown-item.active,
.cid-uKv3utioad .dropdown-item:active {
  background-color: transparent;
}
.cid-uKv3utioad .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKv3utioad .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKv3utioad .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKv3utioad .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKv3utioad .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKv3utioad ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKv3utioad .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKv3utioad button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKv3utioad button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKv3utioad button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKv3utioad button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKv3utioad button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKv3utioad button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKv3utioad nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKv3utioad nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKv3utioad nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKv3utioad nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKv3utioad a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKv3utioad .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-uKv3utioad .navbar {
    height: 70px;
  }
  .cid-uKv3utioad .navbar.opened {
    height: auto;
  }
  .cid-uKv3utioad .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKv3utioad .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKv3utioad .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKv3utioad .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKv3utioad .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKv3utioad .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKv3utioad .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKv3utioad .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKv3utioad .text_widget {
  margin-bottom: 32px;
}
.cid-uKv3utioad .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKv3utioad .text_widget a:hover {
  opacity: .5;
}
.cid-uKv3utioad .icons-menu-main {
  display: flex;
}
.cid-uKv3utioad .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKv3utioad .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKv3utioad .mbr-section-subtitle,
.cid-uKv3utioad .text_widget,
.cid-uKv3utioad .mbr-section-btn {
  text-align: center;
}
.cid-uKv3utioad a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uKzcpq4aFA {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uKzcpq4aFA .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uKzcpq4aFA .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP1P9S68QH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uP1P9S68QH .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP1P9S68QH .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uKvbqbDXnp {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uKvbqbDXnp .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-uKvbonAbOC {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uKvbonAbOC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKvbonAbOC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uKvbonAbOC .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uKvbonAbOC img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uKvbonAbOC .text-wrapper {
    padding: 2rem;
  }
}
.cid-uLeFd1kx9L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-uLeFd1kx9L .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLeFd1kx9L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLeFd1kx9L .item {
  padding-bottom: 2rem;
}
.cid-uLeFd1kx9L .item-wrapper {
  position: relative;
}
.cid-uLeFd1kx9L .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uLeFd1kx9L .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLeFd1kx9L .carousel-control,
.cid-uLeFd1kx9L .close {
  background: #1b1b1b;
}
.cid-uLeFd1kx9L .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLeFd1kx9L .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLeFd1kx9L .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLeFd1kx9L .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLeFd1kx9L .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uLeFd1kx9L .close::before {
  content: '\e91a';
}
.cid-uLeFd1kx9L .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLeFd1kx9L .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uLeFd1kx9L .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLeFd1kx9L .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLeFd1kx9L .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLeFd1kx9L .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLeFd1kx9L .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uLeFd1kx9L .carousel-indicators li.active,
.cid-uLeFd1kx9L .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLeFd1kx9L .carousel-indicators li::after,
.cid-uLeFd1kx9L .carousel-indicators li::before {
  content: none;
}
.cid-uLeFd1kx9L .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLeFd1kx9L .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLeFd1kx9L .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLeFd1kx9L .carousel-indicators {
    display: none;
  }
}
.cid-uLeFd1kx9L .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLeFd1kx9L .carousel-inner > .active {
  display: block;
}
.cid-uLeFd1kx9L .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLeFd1kx9L .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLeFd1kx9L .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLeFd1kx9L .carousel-control,
  .cid-uLeFd1kx9L .carousel-indicators,
  .cid-uLeFd1kx9L .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLeFd1kx9L .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLeFd1kx9L .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLeFd1kx9L .carousel-indicators .active,
.cid-uLeFd1kx9L .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLeFd1kx9L .carousel-indicators .active {
  background: #fff;
}
.cid-uLeFd1kx9L .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLeFd1kx9L .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLeFd1kx9L .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLeFd1kx9L .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLeFd1kx9L .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLeFd1kx9L .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLeFd1kx9L .carousel {
  width: 100%;
}
.cid-uLeFd1kx9L .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLeFd1kx9L .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLeFd1kx9L .modal.fade .modal-dialog,
.cid-uLeFd1kx9L .modal.in .modal-dialog {
  transform: none;
}
.cid-uLeFd1kx9L .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLeFd1kx9L H6 {
  text-align: center;
  color: #000000;
}
.cid-uLeFd1kx9L H3 {
  color: #000000;
}
.cid-uL3wl66cCS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uL3wl66cCS .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uL3wl66cCS .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKAOB6dzok .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKAOB6dzok .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKAOB6dzok .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKAOB6dzok .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKAOB6dzok .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKAOB6dzok .menu_box .navbar.opened,
  .cid-uKAOB6dzok .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKAOB6dzok .navbar-dropdown {
  position: relative !important;
}
.cid-uKAOB6dzok .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKAOB6dzok .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKAOB6dzok .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKAOB6dzok .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKAOB6dzok .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKAOB6dzok .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKAOB6dzok .offcanvas-body .mbr-text,
  .cid-uKAOB6dzok .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKAOB6dzok .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKAOB6dzok .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKAOB6dzok .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKAOB6dzok .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKAOB6dzok .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKAOB6dzok .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKAOB6dzok .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKAOB6dzok ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKAOB6dzok .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKAOB6dzok .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-uKAOB6dzok .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKAOB6dzok li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKAOB6dzok .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKAOB6dzok .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKAOB6dzok .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKAOB6dzok .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKAOB6dzok .nav-item {
    margin: 0 !important;
  }
}
.cid-uKAOB6dzok .nav-item .nav-link {
  position: relative;
}
.cid-uKAOB6dzok .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKAOB6dzok .nav-item .nav-link:hover,
.cid-uKAOB6dzok .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKAOB6dzok .nav-item .nav-link:hover::before,
.cid-uKAOB6dzok .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKAOB6dzok .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKAOB6dzok .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKAOB6dzok .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKAOB6dzok .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKAOB6dzok .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-uKAOB6dzok .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKAOB6dzok .offcanvas_box {
    display: none;
  }
}
.cid-uKAOB6dzok .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKAOB6dzok .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKAOB6dzok .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKAOB6dzok .container {
  display: flex;
  margin: auto;
}
.cid-uKAOB6dzok .iconfont-wrapper {
  color: #1b1b1b;
  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-uKAOB6dzok .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKAOB6dzok .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKAOB6dzok .navbar-caption {
  color: #ffffff;
}
.cid-uKAOB6dzok .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKAOB6dzok .navbar-nav {
    margin: 0;
  }
}
.cid-uKAOB6dzok .dropdown-menu,
.cid-uKAOB6dzok .navbar.opened {
  background-color: false !important;
}
.cid-uKAOB6dzok .nav-item:focus,
.cid-uKAOB6dzok .nav-link:focus {
  outline: none;
}
.cid-uKAOB6dzok .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKAOB6dzok .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKAOB6dzok .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKAOB6dzok .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKAOB6dzok .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKAOB6dzok .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKAOB6dzok .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKAOB6dzok .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKAOB6dzok .navbar.opened {
  transition: all 0.3s;
}
.cid-uKAOB6dzok .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKAOB6dzok .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKAOB6dzok .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKAOB6dzok .navbar.collapsed {
  justify-content: center;
}
.cid-uKAOB6dzok .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKAOB6dzok .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKAOB6dzok .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKAOB6dzok .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKAOB6dzok .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKAOB6dzok .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKAOB6dzok .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKAOB6dzok .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKAOB6dzok .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKAOB6dzok .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKAOB6dzok .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKAOB6dzok .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKAOB6dzok .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKAOB6dzok .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKAOB6dzok .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKAOB6dzok .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKAOB6dzok .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKAOB6dzok .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKAOB6dzok .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKAOB6dzok .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKAOB6dzok .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKAOB6dzok .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKAOB6dzok .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKAOB6dzok .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKAOB6dzok .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-uKAOB6dzok .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKAOB6dzok .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKAOB6dzok .dropdown-item.active,
.cid-uKAOB6dzok .dropdown-item:active {
  background-color: transparent;
}
.cid-uKAOB6dzok .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKAOB6dzok .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKAOB6dzok .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKAOB6dzok .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKAOB6dzok .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKAOB6dzok ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKAOB6dzok .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKAOB6dzok button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKAOB6dzok button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKAOB6dzok button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKAOB6dzok button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKAOB6dzok button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKAOB6dzok button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKAOB6dzok nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKAOB6dzok nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKAOB6dzok nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKAOB6dzok nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKAOB6dzok a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKAOB6dzok .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-uKAOB6dzok .navbar {
    height: 70px;
  }
  .cid-uKAOB6dzok .navbar.opened {
    height: auto;
  }
  .cid-uKAOB6dzok .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKAOB6dzok .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKAOB6dzok .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKAOB6dzok .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKAOB6dzok .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKAOB6dzok .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKAOB6dzok .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKAOB6dzok .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKAOB6dzok .text_widget {
  margin-bottom: 32px;
}
.cid-uKAOB6dzok .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKAOB6dzok .text_widget a:hover {
  opacity: .5;
}
.cid-uKAOB6dzok .icons-menu-main {
  display: flex;
}
.cid-uKAOB6dzok .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKAOB6dzok .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKAOB6dzok .mbr-section-subtitle,
.cid-uKAOB6dzok .text_widget,
.cid-uKAOB6dzok .mbr-section-btn {
  text-align: center;
}
.cid-uKAOB6dzok a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP6T5N3ekV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP6T5N3ekV .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP6T5N3ekV .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uL3JIoTNYI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #5c5c5c;
}
.cid-uL3JIoTNYI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL3JIoTNYI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL2JCfkTrv {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #5c5c5c;
}
.cid-uL2JCfkTrv .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL2JCfkTrv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uL2JCfkTrv .container {
    padding: 0 22px;
  }
}
.cid-uL2JCfkTrv .row {
  justify-content: center;
  margin: 0 -6px;
}
.cid-uL2JCfkTrv .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 480px;
  padding: 32px;
}
@media (max-width: 768px) {
  .cid-uL2JCfkTrv .item .item-wrapper .item-img {
    height: 400px;
  }
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img:hover::before,
.cid-uL2JCfkTrv .item .item-wrapper .item-img:focus::before {
  opacity: 0;
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img:hover .item-content,
.cid-uL2JCfkTrv .item .item-wrapper .item-img:focus .item-content {
  transform: translateY(-2rem);
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #353535;
  opacity: .5;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img .item-content .card-title {
  margin-bottom: 16px;
}
.cid-uL2JCfkTrv .item .item-wrapper .item-img .item-content .card-text {
  margin-bottom: 0;
}
.cid-uL2JCfkTrv .card-title {
  color: #ffffff;
}
.cid-uL2JCfkTrv .card-text {
  color: #ffffff;
}
.cid-uP6TwZDwO7 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP6TwZDwO7 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uP6TwZDwO7 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKB31XcF1n .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKB31XcF1n .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKB31XcF1n .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKB31XcF1n .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKB31XcF1n .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKB31XcF1n .menu_box .navbar.opened,
  .cid-uKB31XcF1n .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKB31XcF1n .navbar-dropdown {
  position: relative !important;
}
.cid-uKB31XcF1n .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKB31XcF1n .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKB31XcF1n .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKB31XcF1n .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKB31XcF1n .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKB31XcF1n .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKB31XcF1n .offcanvas-body .mbr-text,
  .cid-uKB31XcF1n .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKB31XcF1n .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKB31XcF1n .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKB31XcF1n .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKB31XcF1n .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKB31XcF1n .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKB31XcF1n .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKB31XcF1n .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKB31XcF1n ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKB31XcF1n .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKB31XcF1n .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-uKB31XcF1n .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKB31XcF1n li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKB31XcF1n .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKB31XcF1n .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKB31XcF1n .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKB31XcF1n .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKB31XcF1n .nav-item {
    margin: 0 !important;
  }
}
.cid-uKB31XcF1n .nav-item .nav-link {
  position: relative;
}
.cid-uKB31XcF1n .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKB31XcF1n .nav-item .nav-link:hover,
.cid-uKB31XcF1n .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKB31XcF1n .nav-item .nav-link:hover::before,
.cid-uKB31XcF1n .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKB31XcF1n .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKB31XcF1n .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKB31XcF1n .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKB31XcF1n .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKB31XcF1n .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-uKB31XcF1n .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKB31XcF1n .offcanvas_box {
    display: none;
  }
}
.cid-uKB31XcF1n .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKB31XcF1n .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKB31XcF1n .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKB31XcF1n .container {
  display: flex;
  margin: auto;
}
.cid-uKB31XcF1n .iconfont-wrapper {
  color: #1b1b1b;
  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-uKB31XcF1n .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKB31XcF1n .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKB31XcF1n .navbar-caption {
  color: #ffffff;
}
.cid-uKB31XcF1n .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKB31XcF1n .navbar-nav {
    margin: 0;
  }
}
.cid-uKB31XcF1n .dropdown-menu,
.cid-uKB31XcF1n .navbar.opened {
  background-color: false !important;
}
.cid-uKB31XcF1n .nav-item:focus,
.cid-uKB31XcF1n .nav-link:focus {
  outline: none;
}
.cid-uKB31XcF1n .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKB31XcF1n .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKB31XcF1n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKB31XcF1n .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKB31XcF1n .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKB31XcF1n .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKB31XcF1n .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKB31XcF1n .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKB31XcF1n .navbar.opened {
  transition: all 0.3s;
}
.cid-uKB31XcF1n .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKB31XcF1n .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKB31XcF1n .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKB31XcF1n .navbar.collapsed {
  justify-content: center;
}
.cid-uKB31XcF1n .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKB31XcF1n .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKB31XcF1n .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKB31XcF1n .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKB31XcF1n .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKB31XcF1n .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKB31XcF1n .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKB31XcF1n .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKB31XcF1n .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKB31XcF1n .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKB31XcF1n .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKB31XcF1n .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKB31XcF1n .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKB31XcF1n .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKB31XcF1n .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKB31XcF1n .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKB31XcF1n .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKB31XcF1n .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKB31XcF1n .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKB31XcF1n .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKB31XcF1n .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKB31XcF1n .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKB31XcF1n .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKB31XcF1n .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKB31XcF1n .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-uKB31XcF1n .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKB31XcF1n .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKB31XcF1n .dropdown-item.active,
.cid-uKB31XcF1n .dropdown-item:active {
  background-color: transparent;
}
.cid-uKB31XcF1n .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKB31XcF1n .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKB31XcF1n .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKB31XcF1n .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKB31XcF1n .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKB31XcF1n ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKB31XcF1n .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKB31XcF1n button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKB31XcF1n button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKB31XcF1n button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKB31XcF1n button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKB31XcF1n button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKB31XcF1n button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKB31XcF1n nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKB31XcF1n nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKB31XcF1n nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKB31XcF1n nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKB31XcF1n a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKB31XcF1n .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-uKB31XcF1n .navbar {
    height: 70px;
  }
  .cid-uKB31XcF1n .navbar.opened {
    height: auto;
  }
  .cid-uKB31XcF1n .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKB31XcF1n .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKB31XcF1n .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKB31XcF1n .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKB31XcF1n .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKB31XcF1n .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKB31XcF1n .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKB31XcF1n .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKB31XcF1n .text_widget {
  margin-bottom: 32px;
}
.cid-uKB31XcF1n .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKB31XcF1n .text_widget a:hover {
  opacity: .5;
}
.cid-uKB31XcF1n .icons-menu-main {
  display: flex;
}
.cid-uKB31XcF1n .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKB31XcF1n .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKB31XcF1n .mbr-section-subtitle,
.cid-uKB31XcF1n .text_widget,
.cid-uKB31XcF1n .mbr-section-btn {
  text-align: center;
}
.cid-uKB31XcF1n a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uKB31XD5gG {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uKB31XD5gG .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uKB31XD5gG .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP6Xm2Lhpm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uP6Xm2Lhpm .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP6Xm2Lhpm .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uL2Ox2uvTZ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uL2Ox2uvTZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL2Ox2uvTZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uL2Ox2uvTZ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uL2Ox2uvTZ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uL2Ox2uvTZ .text-wrapper {
    padding: 2rem;
  }
}
.cid-uL3y494Y4y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uL3y494Y4y .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uL3y494Y4y .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uL49Dp1bWZ .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uL49Dp1bWZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uL49Dp1bWZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL49Dp1bWZ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uL49Dp1bWZ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uL49Dp1bWZ .menu_box .navbar.opened,
  .cid-uL49Dp1bWZ .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uL49Dp1bWZ .navbar-dropdown {
  position: relative !important;
}
.cid-uL49Dp1bWZ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uL49Dp1bWZ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uL49Dp1bWZ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uL49Dp1bWZ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uL49Dp1bWZ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uL49Dp1bWZ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uL49Dp1bWZ .offcanvas-body .mbr-text,
  .cid-uL49Dp1bWZ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uL49Dp1bWZ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uL49Dp1bWZ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uL49Dp1bWZ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uL49Dp1bWZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uL49Dp1bWZ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uL49Dp1bWZ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uL49Dp1bWZ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uL49Dp1bWZ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uL49Dp1bWZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uL49Dp1bWZ .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-uL49Dp1bWZ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uL49Dp1bWZ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uL49Dp1bWZ .lg_brand {
    margin: 0 1rem;
  }
  .cid-uL49Dp1bWZ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uL49Dp1bWZ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uL49Dp1bWZ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uL49Dp1bWZ .nav-item {
    margin: 0 !important;
  }
}
.cid-uL49Dp1bWZ .nav-item .nav-link {
  position: relative;
}
.cid-uL49Dp1bWZ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uL49Dp1bWZ .nav-item .nav-link:hover,
.cid-uL49Dp1bWZ .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uL49Dp1bWZ .nav-item .nav-link:hover::before,
.cid-uL49Dp1bWZ .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uL49Dp1bWZ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uL49Dp1bWZ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uL49Dp1bWZ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uL49Dp1bWZ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uL49Dp1bWZ .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-uL49Dp1bWZ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uL49Dp1bWZ .offcanvas_box {
    display: none;
  }
}
.cid-uL49Dp1bWZ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uL49Dp1bWZ .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uL49Dp1bWZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uL49Dp1bWZ .container {
  display: flex;
  margin: auto;
}
.cid-uL49Dp1bWZ .iconfont-wrapper {
  color: #1b1b1b;
  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-uL49Dp1bWZ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uL49Dp1bWZ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uL49Dp1bWZ .navbar-caption {
  color: #ffffff;
}
.cid-uL49Dp1bWZ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uL49Dp1bWZ .navbar-nav {
    margin: 0;
  }
}
.cid-uL49Dp1bWZ .dropdown-menu,
.cid-uL49Dp1bWZ .navbar.opened {
  background-color: false !important;
}
.cid-uL49Dp1bWZ .nav-item:focus,
.cid-uL49Dp1bWZ .nav-link:focus {
  outline: none;
}
.cid-uL49Dp1bWZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL49Dp1bWZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL49Dp1bWZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL49Dp1bWZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL49Dp1bWZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL49Dp1bWZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL49Dp1bWZ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uL49Dp1bWZ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uL49Dp1bWZ .navbar.opened {
  transition: all 0.3s;
}
.cid-uL49Dp1bWZ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uL49Dp1bWZ .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uL49Dp1bWZ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uL49Dp1bWZ .navbar.collapsed {
  justify-content: center;
}
.cid-uL49Dp1bWZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL49Dp1bWZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uL49Dp1bWZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL49Dp1bWZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL49Dp1bWZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL49Dp1bWZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uL49Dp1bWZ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uL49Dp1bWZ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uL49Dp1bWZ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uL49Dp1bWZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL49Dp1bWZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL49Dp1bWZ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uL49Dp1bWZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL49Dp1bWZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uL49Dp1bWZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL49Dp1bWZ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uL49Dp1bWZ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uL49Dp1bWZ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uL49Dp1bWZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uL49Dp1bWZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL49Dp1bWZ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uL49Dp1bWZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL49Dp1bWZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL49Dp1bWZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL49Dp1bWZ .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-uL49Dp1bWZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uL49Dp1bWZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL49Dp1bWZ .dropdown-item.active,
.cid-uL49Dp1bWZ .dropdown-item:active {
  background-color: transparent;
}
.cid-uL49Dp1bWZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL49Dp1bWZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL49Dp1bWZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL49Dp1bWZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL49Dp1bWZ .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uL49Dp1bWZ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uL49Dp1bWZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL49Dp1bWZ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uL49Dp1bWZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uL49Dp1bWZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL49Dp1bWZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL49Dp1bWZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL49Dp1bWZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL49Dp1bWZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL49Dp1bWZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL49Dp1bWZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL49Dp1bWZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL49Dp1bWZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uL49Dp1bWZ .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-uL49Dp1bWZ .navbar {
    height: 70px;
  }
  .cid-uL49Dp1bWZ .navbar.opened {
    height: auto;
  }
  .cid-uL49Dp1bWZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uL49Dp1bWZ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uL49Dp1bWZ .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uL49Dp1bWZ .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uL49Dp1bWZ .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uL49Dp1bWZ .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uL49Dp1bWZ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uL49Dp1bWZ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uL49Dp1bWZ .text_widget {
  margin-bottom: 32px;
}
.cid-uL49Dp1bWZ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uL49Dp1bWZ .text_widget a:hover {
  opacity: .5;
}
.cid-uL49Dp1bWZ .icons-menu-main {
  display: flex;
}
.cid-uL49Dp1bWZ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uL49Dp1bWZ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uL49Dp1bWZ .mbr-section-subtitle,
.cid-uL49Dp1bWZ .text_widget,
.cid-uL49Dp1bWZ .mbr-section-btn {
  text-align: center;
}
.cid-uL49Dp1bWZ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uLa0IAIA8W {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uLa0IAIA8W .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLa0IAIA8W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL9v3k1b7d {
  padding-top: 8rem;
  padding-bottom: 7rem;
  background-color: #fafafa;
}
.cid-uL9v3k1b7d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL9v3k1b7d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uL9v3k1b7d .row {
    padding: 0 13px;
  }
}
.cid-uL9v3k1b7d .row {
  justify-content: center;
}
.cid-uL9v3k1b7d .item {
  position: relative;
  margin-bottom: 30px;
}
.cid-uL9v3k1b7d .item .item-link {
  width: 100%;
  height: 100%;
}
.cid-uL9v3k1b7d .item .item-link img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uL9v3k1b7d .item .item-link .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 510px;
}
.cid-uL9v3k1b7d .item .item-link .item-wrapper:hover .item-content .active-overlay {
  opacity: .4;
}
.cid-uL9v3k1b7d .item .item-link .item-wrapper .item-content {
  padding: 24px 28px;
  z-index: 1;
  position: relative;
}
.cid-uL9v3k1b7d .item .item-link .item-wrapper .item-content .active-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(0deg, #000000 0, rgba(255, 255, 255, 0) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: all 0.3s ease-out;
  pointer-events: none;
}
.cid-uL9v3k1b7d .item .item-link .item-wrapper .item-content .item-date-wrap .item-date {
  padding: 0 10px;
  border: 1px solid #ffffff;
  border-radius: 8px;
  margin-bottom: 0;
  display: inline;
  position: relative;
}
.cid-uL9v3k1b7d .item .item-link .item-wrapper .item-content .item-text {
  margin: 20px 0 0;
  position: relative;
}
.cid-uL9v3k1b7d .item .item-link .item-wrapper .item-content .item-desc {
  margin: 28px 0 0;
  position: relative;
}
.cid-uL9v3k1b7d .item-date {
  color: #ffffff;
}
.cid-uL9v3k1b7d .item-text {
  color: #bbbbbb;
}
.cid-uL9v3k1b7d .item-desc {
  color: #ffffff;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uL9Fd8BwNa .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uL9Fd8BwNa .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uL9Fd8BwNa .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL9Fd8BwNa .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uL9Fd8BwNa .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uL9Fd8BwNa .menu_box .navbar.opened,
  .cid-uL9Fd8BwNa .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uL9Fd8BwNa .navbar-dropdown {
  position: relative !important;
}
.cid-uL9Fd8BwNa .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uL9Fd8BwNa .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uL9Fd8BwNa .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uL9Fd8BwNa .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uL9Fd8BwNa .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uL9Fd8BwNa .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uL9Fd8BwNa .offcanvas-body .mbr-text,
  .cid-uL9Fd8BwNa .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uL9Fd8BwNa .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uL9Fd8BwNa .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uL9Fd8BwNa .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uL9Fd8BwNa .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uL9Fd8BwNa .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uL9Fd8BwNa .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uL9Fd8BwNa .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uL9Fd8BwNa ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uL9Fd8BwNa .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uL9Fd8BwNa .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-uL9Fd8BwNa .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uL9Fd8BwNa li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uL9Fd8BwNa .lg_brand {
    margin: 0 1rem;
  }
  .cid-uL9Fd8BwNa .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uL9Fd8BwNa .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uL9Fd8BwNa .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uL9Fd8BwNa .nav-item {
    margin: 0 !important;
  }
}
.cid-uL9Fd8BwNa .nav-item .nav-link {
  position: relative;
}
.cid-uL9Fd8BwNa .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uL9Fd8BwNa .nav-item .nav-link:hover,
.cid-uL9Fd8BwNa .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uL9Fd8BwNa .nav-item .nav-link:hover::before,
.cid-uL9Fd8BwNa .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uL9Fd8BwNa .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uL9Fd8BwNa .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uL9Fd8BwNa .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uL9Fd8BwNa .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uL9Fd8BwNa .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-uL9Fd8BwNa .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uL9Fd8BwNa .offcanvas_box {
    display: none;
  }
}
.cid-uL9Fd8BwNa .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uL9Fd8BwNa .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uL9Fd8BwNa .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uL9Fd8BwNa .container {
  display: flex;
  margin: auto;
}
.cid-uL9Fd8BwNa .iconfont-wrapper {
  color: #1b1b1b;
  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-uL9Fd8BwNa .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uL9Fd8BwNa .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uL9Fd8BwNa .navbar-caption {
  color: #ffffff;
}
.cid-uL9Fd8BwNa .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uL9Fd8BwNa .navbar-nav {
    margin: 0;
  }
}
.cid-uL9Fd8BwNa .dropdown-menu,
.cid-uL9Fd8BwNa .navbar.opened {
  background-color: false !important;
}
.cid-uL9Fd8BwNa .nav-item:focus,
.cid-uL9Fd8BwNa .nav-link:focus {
  outline: none;
}
.cid-uL9Fd8BwNa .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL9Fd8BwNa .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL9Fd8BwNa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL9Fd8BwNa .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL9Fd8BwNa .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL9Fd8BwNa .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL9Fd8BwNa .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uL9Fd8BwNa .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uL9Fd8BwNa .navbar.opened {
  transition: all 0.3s;
}
.cid-uL9Fd8BwNa .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uL9Fd8BwNa .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uL9Fd8BwNa .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uL9Fd8BwNa .navbar.collapsed {
  justify-content: center;
}
.cid-uL9Fd8BwNa .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL9Fd8BwNa .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uL9Fd8BwNa .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL9Fd8BwNa .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL9Fd8BwNa .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL9Fd8BwNa .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uL9Fd8BwNa .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uL9Fd8BwNa .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uL9Fd8BwNa .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uL9Fd8BwNa .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL9Fd8BwNa .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL9Fd8BwNa .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uL9Fd8BwNa .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL9Fd8BwNa .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uL9Fd8BwNa .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL9Fd8BwNa .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uL9Fd8BwNa .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uL9Fd8BwNa .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uL9Fd8BwNa .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uL9Fd8BwNa .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL9Fd8BwNa .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uL9Fd8BwNa .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL9Fd8BwNa .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL9Fd8BwNa .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL9Fd8BwNa .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-uL9Fd8BwNa .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uL9Fd8BwNa .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL9Fd8BwNa .dropdown-item.active,
.cid-uL9Fd8BwNa .dropdown-item:active {
  background-color: transparent;
}
.cid-uL9Fd8BwNa .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uL9Fd8BwNa .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL9Fd8BwNa .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL9Fd8BwNa .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL9Fd8BwNa .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uL9Fd8BwNa ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uL9Fd8BwNa .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL9Fd8BwNa button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uL9Fd8BwNa button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uL9Fd8BwNa button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL9Fd8BwNa button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL9Fd8BwNa button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL9Fd8BwNa button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL9Fd8BwNa nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL9Fd8BwNa nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL9Fd8BwNa nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL9Fd8BwNa nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL9Fd8BwNa a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uL9Fd8BwNa .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-uL9Fd8BwNa .navbar {
    height: 70px;
  }
  .cid-uL9Fd8BwNa .navbar.opened {
    height: auto;
  }
  .cid-uL9Fd8BwNa .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uL9Fd8BwNa .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uL9Fd8BwNa .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uL9Fd8BwNa .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uL9Fd8BwNa .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uL9Fd8BwNa .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uL9Fd8BwNa .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uL9Fd8BwNa .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uL9Fd8BwNa .text_widget {
  margin-bottom: 32px;
}
.cid-uL9Fd8BwNa .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uL9Fd8BwNa .text_widget a:hover {
  opacity: .5;
}
.cid-uL9Fd8BwNa .icons-menu-main {
  display: flex;
}
.cid-uL9Fd8BwNa .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uL9Fd8BwNa .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uL9Fd8BwNa .mbr-section-subtitle,
.cid-uL9Fd8BwNa .text_widget,
.cid-uL9Fd8BwNa .mbr-section-btn {
  text-align: center;
}
.cid-uL9Fd8BwNa a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uL9Fd9EMkV {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uL9Fd9EMkV .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uL9Fd9EMkV .mbr-text,
.cid-uL9Fd9EMkV .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uL9Fd9EMkV .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uL9MoOgUcI {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-uL9MoOgUcI .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-uL9MoOgUcI .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-uL9MoOgUcI .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-uL9MoOgUcI .google-map[data-state] {
  background: #e9e5dc;
}
.cid-uL9MoOgUcI .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-uL9MoOgUcI .map-placeholder {
  display: none;
}
.cid-uL9MoOgUcI .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-uL9MoOgUcI .card {
  padding: 3rem 8rem;
}
.cid-uL9MoOgUcI .card .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-uL9MoOgUcI .card .mbr-text {
  color: #06182d;
}
.cid-uL9MoOgUcI .card .mbr-text.display-7 {
  letter-spacing: 0;
}
.cid-uL9MoOgUcI .card .items .list-item {
  vertical-align: middle;
  padding-top: 5px;
  padding-bottom: 5px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-uL9MoOgUcI .card .items .list-item .listico {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.3rem;
}
.cid-uL9MoOgUcI .card .items .list-item .text2 {
  display: inline-block;
  color: #000000;
  text-align: left;
}
.cid-uL9MoOgUcI .card .mbr-section-btn .btn {
  margin: 0 !important;
  padding: 7px 39px;
}
.cid-uL9MoOgUcI .card .mbr-section-btn .btn.display-4 {
  letter-spacing: 0;
}
.cid-uL9MoOgUcI .card .mbr-section-btn .btn-success {
  color: #030f1c;
}
.cid-uL9MoOgUcI .card .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.cid-uL9MoOgUcI .card .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-uL9MoOgUcI .card .social-list .soc-item a {
  margin: 0;
  transition: 0.2s linear;
}
.cid-uL9MoOgUcI .card .social-list .soc-item a .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uL9MoOgUcI .card .social-list .soc-item a:hover {
  opacity: 0.4;
}
.cid-uL9MoOgUcI .card .form-group {
  padding-right: 0;
}
.cid-uL9MoOgUcI .card .form-group .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-uL9MoOgUcI .card .btn-primary {
  border: 1px solid #ffffff !important;
}
.cid-uL9MoOgUcI .card .btn-primary:hover {
  border: 1px solid #ffffff !important;
}
@media (max-width: 1200px) {
  .cid-uL9MoOgUcI .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-uL9MoOgUcI .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-uL9MoOgUcI h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .cid-uL9MoOgUcI * {
    text-align: center !important;
  }
  .cid-uL9MoOgUcI .card .social-list {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-uL9MoOgUcI .form-group {
    max-width: 180px;
  }
  .cid-uL9MoOgUcI .card {
    padding: 2rem 1rem;
  }
}
.cid-uL9MoOgUcI .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL9MoOgUcI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL9MoOgUcI .card .items .list-item .text2,
.cid-uL9MoOgUcI .card .items .list-item {
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKunw70i3R .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKunw70i3R .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKunw70i3R .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKunw70i3R .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKunw70i3R .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKunw70i3R .menu_box .navbar.opened,
  .cid-uKunw70i3R .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKunw70i3R .navbar-dropdown {
  position: relative !important;
}
.cid-uKunw70i3R .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKunw70i3R .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKunw70i3R .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKunw70i3R .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKunw70i3R .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKunw70i3R .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKunw70i3R .offcanvas-body .mbr-text,
  .cid-uKunw70i3R .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKunw70i3R .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKunw70i3R .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKunw70i3R .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKunw70i3R .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKunw70i3R .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKunw70i3R .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKunw70i3R .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKunw70i3R ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKunw70i3R .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKunw70i3R .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-uKunw70i3R .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKunw70i3R li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKunw70i3R .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKunw70i3R .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKunw70i3R .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKunw70i3R .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKunw70i3R .nav-item {
    margin: 0 !important;
  }
}
.cid-uKunw70i3R .nav-item .nav-link {
  position: relative;
}
.cid-uKunw70i3R .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKunw70i3R .nav-item .nav-link:hover,
.cid-uKunw70i3R .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKunw70i3R .nav-item .nav-link:hover::before,
.cid-uKunw70i3R .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKunw70i3R .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKunw70i3R .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKunw70i3R .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKunw70i3R .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKunw70i3R .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-uKunw70i3R .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKunw70i3R .offcanvas_box {
    display: none;
  }
}
.cid-uKunw70i3R .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKunw70i3R .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKunw70i3R .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKunw70i3R .container {
  display: flex;
  margin: auto;
}
.cid-uKunw70i3R .iconfont-wrapper {
  color: #1b1b1b;
  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-uKunw70i3R .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKunw70i3R .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKunw70i3R .navbar-caption {
  color: #ffffff;
}
.cid-uKunw70i3R .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKunw70i3R .navbar-nav {
    margin: 0;
  }
}
.cid-uKunw70i3R .dropdown-menu,
.cid-uKunw70i3R .navbar.opened {
  background-color: false !important;
}
.cid-uKunw70i3R .nav-item:focus,
.cid-uKunw70i3R .nav-link:focus {
  outline: none;
}
.cid-uKunw70i3R .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKunw70i3R .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKunw70i3R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKunw70i3R .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKunw70i3R .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKunw70i3R .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKunw70i3R .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKunw70i3R .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKunw70i3R .navbar.opened {
  transition: all 0.3s;
}
.cid-uKunw70i3R .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKunw70i3R .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKunw70i3R .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKunw70i3R .navbar.collapsed {
  justify-content: center;
}
.cid-uKunw70i3R .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKunw70i3R .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKunw70i3R .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKunw70i3R .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKunw70i3R .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKunw70i3R .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKunw70i3R .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKunw70i3R .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKunw70i3R .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKunw70i3R .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKunw70i3R .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKunw70i3R .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKunw70i3R .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKunw70i3R .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKunw70i3R .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKunw70i3R .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKunw70i3R .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKunw70i3R .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKunw70i3R .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKunw70i3R .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKunw70i3R .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKunw70i3R .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKunw70i3R .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKunw70i3R .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKunw70i3R .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-uKunw70i3R .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKunw70i3R .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKunw70i3R .dropdown-item.active,
.cid-uKunw70i3R .dropdown-item:active {
  background-color: transparent;
}
.cid-uKunw70i3R .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKunw70i3R .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKunw70i3R .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKunw70i3R .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKunw70i3R .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKunw70i3R ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKunw70i3R .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKunw70i3R button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKunw70i3R button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKunw70i3R button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKunw70i3R button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKunw70i3R button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKunw70i3R button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKunw70i3R nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKunw70i3R nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKunw70i3R nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKunw70i3R nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKunw70i3R a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKunw70i3R .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-uKunw70i3R .navbar {
    height: 70px;
  }
  .cid-uKunw70i3R .navbar.opened {
    height: auto;
  }
  .cid-uKunw70i3R .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKunw70i3R .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKunw70i3R .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKunw70i3R .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKunw70i3R .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKunw70i3R .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKunw70i3R .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKunw70i3R .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKunw70i3R .text_widget {
  margin-bottom: 32px;
}
.cid-uKunw70i3R .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKunw70i3R .text_widget a:hover {
  opacity: .5;
}
.cid-uKunw70i3R .icons-menu-main {
  display: flex;
}
.cid-uKunw70i3R .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKunw70i3R .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKunw70i3R .mbr-section-subtitle,
.cid-uKunw70i3R .text_widget,
.cid-uKunw70i3R .mbr-section-btn {
  text-align: center;
}
.cid-uKunw70i3R a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOsHFdeJ1t {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsHFdeJ1t .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsHFdeJ1t .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uP67nIBz7c {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uP67nIBz7c .mbr-text {
  text-align: center;
  color: #3f3f3f;
}
.cid-uP67nIBz7c .mbr-section-subtitle {
  color: #3f3f3f;
  text-align: center;
}
.cid-uP67nIBz7c .mbr-section-title {
  text-align: center;
}
.cid-uLjW6xBd57 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uLjW6xBd57 .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uLjW6xBd57 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uLjW6xBd57 .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-uMWiDBWiJr {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMWiDBWiJr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMWiDBWiJr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMWiDBWiJr .row {
  flex-direction: row-reverse;
}
.cid-uMWiDBWiJr .mbr-description {
  text-align: center;
}
.cid-uNkDFWUJ1E {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNkDFWUJ1E .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNkDFWUJ1E .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNkDFWUJ1E .row {
  flex-direction: row-reverse;
}
.cid-uNkDFWUJ1E .mbr-description {
  text-align: center;
}
.cid-uN8v0H6k4X {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uN8v0H6k4X .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN8v0H6k4X .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN8v0H6k4X .row {
  flex-direction: row-reverse;
}
.cid-uN8v0H6k4X .mbr-description {
  text-align: center;
}
.cid-uQey7JcqAy {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQey7JcqAy .mbr-text {
  text-align: center;
  color: #232323;
}
.cid-uQey7JcqAy .mbr-section-title {
  text-align: center;
}
.cid-uQey7JcqAy .mbr-section-subtitle {
  text-align: center;
}
.cid-uQemh4RYMZ {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uQemh4RYMZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQemh4RYMZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQemh4RYMZ .row {
  flex-direction: row-reverse;
}
.cid-uQemh4RYMZ .mbr-description {
  text-align: left;
}
.cid-uN8bySQN7P {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uN8bySQN7P .mbr-fallback-image.disabled {
  display: none;
}
.cid-uN8bySQN7P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uN8bySQN7P .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uN8bySQN7P .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uN8bySQN7P .mbr-text,
.cid-uN8bySQN7P .mbr-section-btn {
  color: #353535;
}
.cid-uN8bySQN7P .mbr-section-title {
  text-align: center;
  color: #353535;
}
.cid-uNADGsjHXK {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uNADGsjHXK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNADGsjHXK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNADGsjHXK .row {
  flex-direction: row-reverse;
}
.cid-uNAGm2lpGc {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uNAGm2lpGc .mbr-text {
  text-align: center;
  color: #353535;
}
.cid-uNAGm2lpGc .mbr-section-subtitle {
  text-align: left;
}
.cid-uNAGm2lpGc .mbr-section-title {
  text-align: center;
}
.cid-uPYaknZwu8 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPYaknZwu8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPYaknZwu8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPYaknZwu8 .row {
  flex-direction: row-reverse;
}
.cid-uPYaknZwu8 .mbr-description {
  text-align: left;
}
.cid-uOsAWIZMZb {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsAWIZMZb .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsAWIZMZb .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKunCr8Dl9 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKunCr8Dl9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKunCr8Dl9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKunCr8Dl9 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKunCr8Dl9 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKunCr8Dl9 .menu_box .navbar.opened,
  .cid-uKunCr8Dl9 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKunCr8Dl9 .navbar-dropdown {
  position: relative !important;
}
.cid-uKunCr8Dl9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKunCr8Dl9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKunCr8Dl9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKunCr8Dl9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKunCr8Dl9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKunCr8Dl9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKunCr8Dl9 .offcanvas-body .mbr-text,
  .cid-uKunCr8Dl9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKunCr8Dl9 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKunCr8Dl9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKunCr8Dl9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKunCr8Dl9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKunCr8Dl9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKunCr8Dl9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKunCr8Dl9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKunCr8Dl9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKunCr8Dl9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKunCr8Dl9 .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-uKunCr8Dl9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKunCr8Dl9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKunCr8Dl9 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKunCr8Dl9 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKunCr8Dl9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKunCr8Dl9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKunCr8Dl9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uKunCr8Dl9 .nav-item .nav-link {
  position: relative;
}
.cid-uKunCr8Dl9 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKunCr8Dl9 .nav-item .nav-link:hover,
.cid-uKunCr8Dl9 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKunCr8Dl9 .nav-item .nav-link:hover::before,
.cid-uKunCr8Dl9 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKunCr8Dl9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKunCr8Dl9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKunCr8Dl9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKunCr8Dl9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKunCr8Dl9 .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-uKunCr8Dl9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKunCr8Dl9 .offcanvas_box {
    display: none;
  }
}
.cid-uKunCr8Dl9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKunCr8Dl9 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKunCr8Dl9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKunCr8Dl9 .container {
  display: flex;
  margin: auto;
}
.cid-uKunCr8Dl9 .iconfont-wrapper {
  color: #1b1b1b;
  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-uKunCr8Dl9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKunCr8Dl9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKunCr8Dl9 .navbar-caption {
  color: #ffffff;
}
.cid-uKunCr8Dl9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKunCr8Dl9 .navbar-nav {
    margin: 0;
  }
}
.cid-uKunCr8Dl9 .dropdown-menu,
.cid-uKunCr8Dl9 .navbar.opened {
  background-color: false !important;
}
.cid-uKunCr8Dl9 .nav-item:focus,
.cid-uKunCr8Dl9 .nav-link:focus {
  outline: none;
}
.cid-uKunCr8Dl9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKunCr8Dl9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKunCr8Dl9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKunCr8Dl9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKunCr8Dl9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKunCr8Dl9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKunCr8Dl9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKunCr8Dl9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKunCr8Dl9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uKunCr8Dl9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKunCr8Dl9 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKunCr8Dl9 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKunCr8Dl9 .navbar.collapsed {
  justify-content: center;
}
.cid-uKunCr8Dl9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKunCr8Dl9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKunCr8Dl9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKunCr8Dl9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKunCr8Dl9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKunCr8Dl9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKunCr8Dl9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKunCr8Dl9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKunCr8Dl9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKunCr8Dl9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKunCr8Dl9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKunCr8Dl9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKunCr8Dl9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKunCr8Dl9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKunCr8Dl9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKunCr8Dl9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKunCr8Dl9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKunCr8Dl9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKunCr8Dl9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKunCr8Dl9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKunCr8Dl9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKunCr8Dl9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKunCr8Dl9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKunCr8Dl9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKunCr8Dl9 .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-uKunCr8Dl9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKunCr8Dl9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKunCr8Dl9 .dropdown-item.active,
.cid-uKunCr8Dl9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKunCr8Dl9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKunCr8Dl9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKunCr8Dl9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKunCr8Dl9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKunCr8Dl9 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKunCr8Dl9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKunCr8Dl9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKunCr8Dl9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKunCr8Dl9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKunCr8Dl9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKunCr8Dl9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKunCr8Dl9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKunCr8Dl9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKunCr8Dl9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKunCr8Dl9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKunCr8Dl9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKunCr8Dl9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKunCr8Dl9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKunCr8Dl9 .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-uKunCr8Dl9 .navbar {
    height: 70px;
  }
  .cid-uKunCr8Dl9 .navbar.opened {
    height: auto;
  }
  .cid-uKunCr8Dl9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKunCr8Dl9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKunCr8Dl9 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKunCr8Dl9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKunCr8Dl9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKunCr8Dl9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKunCr8Dl9 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKunCr8Dl9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKunCr8Dl9 .text_widget {
  margin-bottom: 32px;
}
.cid-uKunCr8Dl9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKunCr8Dl9 .text_widget a:hover {
  opacity: .5;
}
.cid-uKunCr8Dl9 .icons-menu-main {
  display: flex;
}
.cid-uKunCr8Dl9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKunCr8Dl9 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKunCr8Dl9 .mbr-section-subtitle,
.cid-uKunCr8Dl9 .text_widget,
.cid-uKunCr8Dl9 .mbr-section-btn {
  text-align: center;
}
.cid-uKunCr8Dl9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOsHpc9Fgv {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsHpc9Fgv .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsHpc9Fgv .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uP67jHTZVN {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uP67jHTZVN .mbr-text {
  text-align: center;
  color: #3f3f3f;
}
.cid-uP67jHTZVN .mbr-section-subtitle {
  color: #3f3f3f;
  text-align: center;
}
.cid-uP67jHTZVN .mbr-section-title {
  text-align: center;
}
.cid-uPXNSORWko {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uPXNSORWko .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPXNSORWko .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPXNSORWko .row {
  flex-direction: row-reverse;
}
.cid-uPXNSORWko .mbr-description {
  text-align: center;
}
.cid-uPY7HjDmbZ {
  padding-top: 4rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPY7HjDmbZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPY7HjDmbZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPY7HjDmbZ .row {
  flex-direction: row-reverse;
}
.cid-uPY7HjDmbZ .mbr-description {
  text-align: center;
}
.cid-uCo43vuzCA {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/5963745-1-1-2000x1333.png");
}
.cid-uCo43vuzCA .mbr-overlay {
  background: #fafafa;
  opacity: 0.1;
}
.cid-uCo43vuzCA img,
.cid-uCo43vuzCA .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-uCo43vuzCA .item:focus,
.cid-uCo43vuzCA span:focus {
  outline: none;
}
.cid-uCo43vuzCA .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-uCo43vuzCA .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #f6f6f6;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-uCo43vuzCA .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uCo43vuzCA .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-uCo43vuzCA .mbr-section-btn {
  margin-top: auto !important;
}
.cid-uCo43vuzCA .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uCo43vuzCA .mbr-text,
.cid-uCo43vuzCA .mbr-section-btn {
  text-align: left;
  color: #797979;
}
.cid-uCo43vuzCA .item-title {
  text-align: left;
}
.cid-uCo43vuzCA .item-subtitle {
  text-align: left;
}
.cid-uCo43vuzCA .mbr-section-subtitle {
  color: #fff42b;
  text-align: center;
}
.cid-uJE4WyYKkZ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uJE4WyYKkZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJE4WyYKkZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJE4WyYKkZ .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uJE4WyYKkZ .mbr-section-subtitle {
  text-align: left;
  color: #232323;
}
.cid-uPMsw6K3hH {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPMsw6K3hH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPMsw6K3hH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPMsw6K3hH .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPMsw6K3hH .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uPMsw6K3hH .mbr-text,
.cid-uPMsw6K3hH .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-uPMsw6K3hH .mbr-section-title {
  text-align: center;
}
.cid-uPMJcfUwN5 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uPMJcfUwN5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPMJcfUwN5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPMJcfUwN5 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uPMJcfUwN5 .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uPMJcfUwN5 .mbr-text,
.cid-uPMJcfUwN5 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uPMJcfUwN5 .mbr-section-title {
  text-align: center;
}
.cid-v0qHrz0tSL {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v0qHrz0tSL .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qHrz0tSL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0qHrz0tSL .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v0qHrz0tSL .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-v0qHrz0tSL .mbr-text,
.cid-v0qHrz0tSL .mbr-section-btn {
  text-align: center;
  color: #232323;
}
.cid-v0qHrz0tSL .mbr-section-title {
  text-align: center;
}
.cid-uJJSdoKGPj {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uJJSdoKGPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uJJSdoKGPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uJJSdoKGPj .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uJJSdoKGPj .card {
    margin-bottom: 2rem!important;
  }
  .cid-uJJSdoKGPj .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uJJSdoKGPj .link-wrap {
    align-items: center;
  }
}
.cid-uJJSdoKGPj .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uJJSdoKGPj .card-title,
.cid-uJJSdoKGPj .card-box {
  text-align: left;
  color: #232323;
}
.cid-uJJSdoKGPj .mbr-text,
.cid-uJJSdoKGPj .link-wrap,
.cid-uJJSdoKGPj .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uOsEgPl9sc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsEgPl9sc .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsEgPl9sc .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uKuIsisex7 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uKuIsisex7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uKuIsisex7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uKuIsisex7 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uKuIsisex7 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uKuIsisex7 .menu_box .navbar.opened,
  .cid-uKuIsisex7 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uKuIsisex7 .navbar-dropdown {
  position: relative !important;
}
.cid-uKuIsisex7 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uKuIsisex7 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uKuIsisex7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uKuIsisex7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uKuIsisex7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uKuIsisex7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uKuIsisex7 .offcanvas-body .mbr-text,
  .cid-uKuIsisex7 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uKuIsisex7 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uKuIsisex7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uKuIsisex7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uKuIsisex7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uKuIsisex7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uKuIsisex7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uKuIsisex7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uKuIsisex7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uKuIsisex7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKuIsisex7 .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-uKuIsisex7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uKuIsisex7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uKuIsisex7 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uKuIsisex7 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uKuIsisex7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uKuIsisex7 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uKuIsisex7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uKuIsisex7 .nav-item .nav-link {
  position: relative;
}
.cid-uKuIsisex7 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uKuIsisex7 .nav-item .nav-link:hover,
.cid-uKuIsisex7 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uKuIsisex7 .nav-item .nav-link:hover::before,
.cid-uKuIsisex7 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uKuIsisex7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uKuIsisex7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uKuIsisex7 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uKuIsisex7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uKuIsisex7 .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-uKuIsisex7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uKuIsisex7 .offcanvas_box {
    display: none;
  }
}
.cid-uKuIsisex7 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uKuIsisex7 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uKuIsisex7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uKuIsisex7 .container {
  display: flex;
  margin: auto;
}
.cid-uKuIsisex7 .iconfont-wrapper {
  color: #1b1b1b;
  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-uKuIsisex7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uKuIsisex7 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uKuIsisex7 .navbar-caption {
  color: #ffffff;
}
.cid-uKuIsisex7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uKuIsisex7 .navbar-nav {
    margin: 0;
  }
}
.cid-uKuIsisex7 .dropdown-menu,
.cid-uKuIsisex7 .navbar.opened {
  background-color: false !important;
}
.cid-uKuIsisex7 .nav-item:focus,
.cid-uKuIsisex7 .nav-link:focus {
  outline: none;
}
.cid-uKuIsisex7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uKuIsisex7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uKuIsisex7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uKuIsisex7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uKuIsisex7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uKuIsisex7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uKuIsisex7 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uKuIsisex7 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uKuIsisex7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uKuIsisex7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uKuIsisex7 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uKuIsisex7 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uKuIsisex7 .navbar.collapsed {
  justify-content: center;
}
.cid-uKuIsisex7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uKuIsisex7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uKuIsisex7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uKuIsisex7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uKuIsisex7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uKuIsisex7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uKuIsisex7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uKuIsisex7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uKuIsisex7 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uKuIsisex7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uKuIsisex7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uKuIsisex7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uKuIsisex7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uKuIsisex7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uKuIsisex7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uKuIsisex7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uKuIsisex7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uKuIsisex7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uKuIsisex7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uKuIsisex7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uKuIsisex7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uKuIsisex7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uKuIsisex7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uKuIsisex7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uKuIsisex7 .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-uKuIsisex7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uKuIsisex7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uKuIsisex7 .dropdown-item.active,
.cid-uKuIsisex7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uKuIsisex7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uKuIsisex7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uKuIsisex7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uKuIsisex7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uKuIsisex7 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uKuIsisex7 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uKuIsisex7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uKuIsisex7 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uKuIsisex7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uKuIsisex7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uKuIsisex7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKuIsisex7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uKuIsisex7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uKuIsisex7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKuIsisex7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uKuIsisex7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uKuIsisex7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uKuIsisex7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uKuIsisex7 .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-uKuIsisex7 .navbar {
    height: 70px;
  }
  .cid-uKuIsisex7 .navbar.opened {
    height: auto;
  }
  .cid-uKuIsisex7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uKuIsisex7 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uKuIsisex7 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uKuIsisex7 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uKuIsisex7 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uKuIsisex7 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uKuIsisex7 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uKuIsisex7 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uKuIsisex7 .text_widget {
  margin-bottom: 32px;
}
.cid-uKuIsisex7 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uKuIsisex7 .text_widget a:hover {
  opacity: .5;
}
.cid-uKuIsisex7 .icons-menu-main {
  display: flex;
}
.cid-uKuIsisex7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uKuIsisex7 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uKuIsisex7 .mbr-section-subtitle,
.cid-uKuIsisex7 .text_widget,
.cid-uKuIsisex7 .mbr-section-btn {
  text-align: center;
}
.cid-uKuIsisex7 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOsxyDB5GB {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uOsxyDB5GB .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsxyDB5GB .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQjNMH8vKU {
  padding-top: 7rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQjNMH8vKU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQjNMH8vKU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQjNMH8vKU .row {
  flex-direction: row-reverse;
}
.cid-uQjNMH8vKU .mbr-description {
  text-align: center;
}
.cid-uQByeKHO6D {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQByeKHO6D .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQByeKHO6D .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQByeKHO6D .row {
  flex-direction: row-reverse;
}
.cid-uQByeKHO6D .mbr-description {
  text-align: center;
}
.cid-uL3IZ3Uns3 {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uL3IZ3Uns3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL3IZ3Uns3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL3IZ3Uns3 .mbr-section-title {
  color: #232323;
}
.cid-uKuL6icMFC {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-uKuL6icMFC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uKuL6icMFC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uKuL6icMFC .container {
    padding: 0 22px;
  }
}
.cid-uKuL6icMFC .row {
  justify-content: center;
  margin: 0 -6px;
}
.cid-uKuL6icMFC .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
.cid-uKuL6icMFC .item .item-wrapper .item-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 480px;
  padding: 32px;
}
@media (max-width: 768px) {
  .cid-uKuL6icMFC .item .item-wrapper .item-img {
    height: 400px;
  }
}
.cid-uKuL6icMFC .item .item-wrapper .item-img:hover::before,
.cid-uKuL6icMFC .item .item-wrapper .item-img:focus::before {
  opacity: 0;
}
.cid-uKuL6icMFC .item .item-wrapper .item-img:hover .item-content,
.cid-uKuL6icMFC .item .item-wrapper .item-img:focus .item-content {
  transform: translateY(-2rem);
}
.cid-uKuL6icMFC .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uKuL6icMFC .item .item-wrapper .item-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uKuL6icMFC .item .item-wrapper .item-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #424242;
  opacity: .5;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.cid-uKuL6icMFC .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.cid-uKuL6icMFC .item .item-wrapper .item-img .item-content .card-title {
  margin-bottom: 16px;
}
.cid-uKuL6icMFC .item .item-wrapper .item-img .item-content .card-text {
  margin-bottom: 0;
}
.cid-uKuL6icMFC .card-title {
  color: #ffffff;
}
.cid-uKuL6icMFC .card-text {
  color: #ffffff;
  text-align: left;
}
.cid-uOsxEb0OFg {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uOsxEb0OFg .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsxEb0OFg .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLeWLBogzS .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLeWLBogzS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLeWLBogzS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLeWLBogzS .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLeWLBogzS .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLeWLBogzS .menu_box .navbar.opened,
  .cid-uLeWLBogzS .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLeWLBogzS .navbar-dropdown {
  position: relative !important;
}
.cid-uLeWLBogzS .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLeWLBogzS .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLeWLBogzS .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLeWLBogzS .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLeWLBogzS .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLeWLBogzS .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLeWLBogzS .offcanvas-body .mbr-text,
  .cid-uLeWLBogzS .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLeWLBogzS .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLeWLBogzS .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLeWLBogzS .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLeWLBogzS .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLeWLBogzS .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLeWLBogzS .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLeWLBogzS .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLeWLBogzS ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLeWLBogzS .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLeWLBogzS .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-uLeWLBogzS .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLeWLBogzS li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLeWLBogzS .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLeWLBogzS .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLeWLBogzS .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLeWLBogzS .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLeWLBogzS .nav-item {
    margin: 0 !important;
  }
}
.cid-uLeWLBogzS .nav-item .nav-link {
  position: relative;
}
.cid-uLeWLBogzS .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLeWLBogzS .nav-item .nav-link:hover,
.cid-uLeWLBogzS .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLeWLBogzS .nav-item .nav-link:hover::before,
.cid-uLeWLBogzS .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLeWLBogzS .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLeWLBogzS .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLeWLBogzS .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLeWLBogzS .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLeWLBogzS .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-uLeWLBogzS .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLeWLBogzS .offcanvas_box {
    display: none;
  }
}
.cid-uLeWLBogzS .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLeWLBogzS .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLeWLBogzS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLeWLBogzS .container {
  display: flex;
  margin: auto;
}
.cid-uLeWLBogzS .iconfont-wrapper {
  color: #1b1b1b;
  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-uLeWLBogzS .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLeWLBogzS .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLeWLBogzS .navbar-caption {
  color: #ffffff;
}
.cid-uLeWLBogzS .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLeWLBogzS .navbar-nav {
    margin: 0;
  }
}
.cid-uLeWLBogzS .dropdown-menu,
.cid-uLeWLBogzS .navbar.opened {
  background-color: false !important;
}
.cid-uLeWLBogzS .nav-item:focus,
.cid-uLeWLBogzS .nav-link:focus {
  outline: none;
}
.cid-uLeWLBogzS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLeWLBogzS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLeWLBogzS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLeWLBogzS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLeWLBogzS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLeWLBogzS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLeWLBogzS .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLeWLBogzS .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLeWLBogzS .navbar.opened {
  transition: all 0.3s;
}
.cid-uLeWLBogzS .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLeWLBogzS .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLeWLBogzS .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLeWLBogzS .navbar.collapsed {
  justify-content: center;
}
.cid-uLeWLBogzS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLeWLBogzS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLeWLBogzS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLeWLBogzS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLeWLBogzS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLeWLBogzS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLeWLBogzS .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLeWLBogzS .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLeWLBogzS .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLeWLBogzS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLeWLBogzS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLeWLBogzS .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLeWLBogzS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLeWLBogzS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLeWLBogzS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLeWLBogzS .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLeWLBogzS .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLeWLBogzS .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLeWLBogzS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLeWLBogzS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLeWLBogzS .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLeWLBogzS .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLeWLBogzS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLeWLBogzS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLeWLBogzS .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-uLeWLBogzS .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLeWLBogzS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLeWLBogzS .dropdown-item.active,
.cid-uLeWLBogzS .dropdown-item:active {
  background-color: transparent;
}
.cid-uLeWLBogzS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLeWLBogzS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLeWLBogzS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLeWLBogzS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLeWLBogzS .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLeWLBogzS ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLeWLBogzS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLeWLBogzS button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLeWLBogzS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLeWLBogzS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLeWLBogzS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLeWLBogzS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLeWLBogzS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLeWLBogzS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLeWLBogzS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLeWLBogzS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLeWLBogzS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLeWLBogzS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLeWLBogzS .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-uLeWLBogzS .navbar {
    height: 70px;
  }
  .cid-uLeWLBogzS .navbar.opened {
    height: auto;
  }
  .cid-uLeWLBogzS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLeWLBogzS .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLeWLBogzS .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLeWLBogzS .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLeWLBogzS .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLeWLBogzS .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLeWLBogzS .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLeWLBogzS .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLeWLBogzS .text_widget {
  margin-bottom: 32px;
}
.cid-uLeWLBogzS .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLeWLBogzS .text_widget a:hover {
  opacity: .5;
}
.cid-uLeWLBogzS .icons-menu-main {
  display: flex;
}
.cid-uLeWLBogzS .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLeWLBogzS .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLeWLBogzS .mbr-section-subtitle,
.cid-uLeWLBogzS .text_widget,
.cid-uLeWLBogzS .mbr-section-btn {
  text-align: center;
}
.cid-uLeWLBogzS a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uLeWLCgfZB {
  padding-top: 7rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uLeWLCgfZB .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uLeWLCgfZB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP6lkscHVu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uP6lkscHVu .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP6lkscHVu .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uLeWLCrazI {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uLeWLCrazI .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-uLeWLCBlk9 {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uLeWLCBlk9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLeWLCBlk9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uLeWLCBlk9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLeWLCBlk9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uLeWLCBlk9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uLeWLCYerx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-uLeWLCYerx .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLeWLCYerx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLeWLCYerx .item {
  padding-bottom: 2rem;
}
.cid-uLeWLCYerx .item-wrapper {
  position: relative;
}
.cid-uLeWLCYerx .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uLeWLCYerx .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLeWLCYerx .carousel-control,
.cid-uLeWLCYerx .close {
  background: #1b1b1b;
}
.cid-uLeWLCYerx .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLeWLCYerx .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLeWLCYerx .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLeWLCYerx .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLeWLCYerx .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uLeWLCYerx .close::before {
  content: '\e91a';
}
.cid-uLeWLCYerx .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLeWLCYerx .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uLeWLCYerx .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLeWLCYerx .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLeWLCYerx .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLeWLCYerx .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLeWLCYerx .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uLeWLCYerx .carousel-indicators li.active,
.cid-uLeWLCYerx .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLeWLCYerx .carousel-indicators li::after,
.cid-uLeWLCYerx .carousel-indicators li::before {
  content: none;
}
.cid-uLeWLCYerx .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLeWLCYerx .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLeWLCYerx .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLeWLCYerx .carousel-indicators {
    display: none;
  }
}
.cid-uLeWLCYerx .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLeWLCYerx .carousel-inner > .active {
  display: block;
}
.cid-uLeWLCYerx .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLeWLCYerx .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLeWLCYerx .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLeWLCYerx .carousel-control,
  .cid-uLeWLCYerx .carousel-indicators,
  .cid-uLeWLCYerx .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLeWLCYerx .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLeWLCYerx .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLeWLCYerx .carousel-indicators .active,
.cid-uLeWLCYerx .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLeWLCYerx .carousel-indicators .active {
  background: #fff;
}
.cid-uLeWLCYerx .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLeWLCYerx .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLeWLCYerx .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLeWLCYerx .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLeWLCYerx .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLeWLCYerx .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLeWLCYerx .carousel {
  width: 100%;
}
.cid-uLeWLCYerx .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLeWLCYerx .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLeWLCYerx .modal.fade .modal-dialog,
.cid-uLeWLCYerx .modal.in .modal-dialog {
  transform: none;
}
.cid-uLeWLCYerx .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLeWLCYerx H6 {
  text-align: center;
  color: #000000;
}
.cid-uLeWLCYerx H3 {
  color: #000000;
}
.cid-uLeWLDymsc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uLeWLDymsc .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uLeWLDymsc .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLeXmDMojb .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLeXmDMojb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLeXmDMojb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLeXmDMojb .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLeXmDMojb .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLeXmDMojb .menu_box .navbar.opened,
  .cid-uLeXmDMojb .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLeXmDMojb .navbar-dropdown {
  position: relative !important;
}
.cid-uLeXmDMojb .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLeXmDMojb .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLeXmDMojb .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLeXmDMojb .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLeXmDMojb .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLeXmDMojb .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLeXmDMojb .offcanvas-body .mbr-text,
  .cid-uLeXmDMojb .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLeXmDMojb .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLeXmDMojb .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLeXmDMojb .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLeXmDMojb .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLeXmDMojb .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLeXmDMojb .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLeXmDMojb .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLeXmDMojb ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLeXmDMojb .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLeXmDMojb .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-uLeXmDMojb .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLeXmDMojb li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLeXmDMojb .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLeXmDMojb .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLeXmDMojb .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLeXmDMojb .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLeXmDMojb .nav-item {
    margin: 0 !important;
  }
}
.cid-uLeXmDMojb .nav-item .nav-link {
  position: relative;
}
.cid-uLeXmDMojb .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLeXmDMojb .nav-item .nav-link:hover,
.cid-uLeXmDMojb .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLeXmDMojb .nav-item .nav-link:hover::before,
.cid-uLeXmDMojb .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLeXmDMojb .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLeXmDMojb .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLeXmDMojb .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLeXmDMojb .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLeXmDMojb .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-uLeXmDMojb .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLeXmDMojb .offcanvas_box {
    display: none;
  }
}
.cid-uLeXmDMojb .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLeXmDMojb .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLeXmDMojb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLeXmDMojb .container {
  display: flex;
  margin: auto;
}
.cid-uLeXmDMojb .iconfont-wrapper {
  color: #1b1b1b;
  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-uLeXmDMojb .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLeXmDMojb .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLeXmDMojb .navbar-caption {
  color: #ffffff;
}
.cid-uLeXmDMojb .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLeXmDMojb .navbar-nav {
    margin: 0;
  }
}
.cid-uLeXmDMojb .dropdown-menu,
.cid-uLeXmDMojb .navbar.opened {
  background-color: false !important;
}
.cid-uLeXmDMojb .nav-item:focus,
.cid-uLeXmDMojb .nav-link:focus {
  outline: none;
}
.cid-uLeXmDMojb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLeXmDMojb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLeXmDMojb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLeXmDMojb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLeXmDMojb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLeXmDMojb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLeXmDMojb .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLeXmDMojb .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLeXmDMojb .navbar.opened {
  transition: all 0.3s;
}
.cid-uLeXmDMojb .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLeXmDMojb .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLeXmDMojb .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLeXmDMojb .navbar.collapsed {
  justify-content: center;
}
.cid-uLeXmDMojb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLeXmDMojb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLeXmDMojb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLeXmDMojb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLeXmDMojb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLeXmDMojb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLeXmDMojb .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLeXmDMojb .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLeXmDMojb .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLeXmDMojb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLeXmDMojb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLeXmDMojb .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLeXmDMojb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLeXmDMojb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLeXmDMojb .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLeXmDMojb .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLeXmDMojb .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLeXmDMojb .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLeXmDMojb .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLeXmDMojb .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLeXmDMojb .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLeXmDMojb .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLeXmDMojb .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLeXmDMojb .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLeXmDMojb .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-uLeXmDMojb .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLeXmDMojb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLeXmDMojb .dropdown-item.active,
.cid-uLeXmDMojb .dropdown-item:active {
  background-color: transparent;
}
.cid-uLeXmDMojb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLeXmDMojb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLeXmDMojb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLeXmDMojb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLeXmDMojb .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLeXmDMojb ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLeXmDMojb .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLeXmDMojb button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLeXmDMojb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLeXmDMojb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLeXmDMojb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLeXmDMojb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLeXmDMojb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLeXmDMojb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLeXmDMojb nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLeXmDMojb nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLeXmDMojb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLeXmDMojb a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLeXmDMojb .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-uLeXmDMojb .navbar {
    height: 70px;
  }
  .cid-uLeXmDMojb .navbar.opened {
    height: auto;
  }
  .cid-uLeXmDMojb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLeXmDMojb .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLeXmDMojb .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLeXmDMojb .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLeXmDMojb .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLeXmDMojb .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLeXmDMojb .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLeXmDMojb .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLeXmDMojb .text_widget {
  margin-bottom: 32px;
}
.cid-uLeXmDMojb .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLeXmDMojb .text_widget a:hover {
  opacity: .5;
}
.cid-uLeXmDMojb .icons-menu-main {
  display: flex;
}
.cid-uLeXmDMojb .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLeXmDMojb .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLeXmDMojb .mbr-section-subtitle,
.cid-uLeXmDMojb .text_widget,
.cid-uLeXmDMojb .mbr-section-btn {
  text-align: center;
}
.cid-uLeXmDMojb a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uLeXmEGqb6 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uLeXmEGqb6 .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uLeXmEGqb6 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP6Ng3zhDY {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uP6Ng3zhDY .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP6Ng3zhDY .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uLeXmEPYmY {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uLeXmEPYmY .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-uNerrqgMEL {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uNerrqgMEL .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uNerrqgMEL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNerrqgMEL .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-uLeXmFgHrR {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ececec;
}
.cid-uLeXmFgHrR .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLeXmFgHrR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLeXmFgHrR .item {
  padding-bottom: 2rem;
}
.cid-uLeXmFgHrR .item-wrapper {
  position: relative;
}
.cid-uLeXmFgHrR .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uLeXmFgHrR .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLeXmFgHrR .carousel-control,
.cid-uLeXmFgHrR .close {
  background: #1b1b1b;
}
.cid-uLeXmFgHrR .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLeXmFgHrR .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLeXmFgHrR .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLeXmFgHrR .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLeXmFgHrR .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uLeXmFgHrR .close::before {
  content: '\e91a';
}
.cid-uLeXmFgHrR .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLeXmFgHrR .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uLeXmFgHrR .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLeXmFgHrR .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLeXmFgHrR .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLeXmFgHrR .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLeXmFgHrR .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uLeXmFgHrR .carousel-indicators li.active,
.cid-uLeXmFgHrR .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLeXmFgHrR .carousel-indicators li::after,
.cid-uLeXmFgHrR .carousel-indicators li::before {
  content: none;
}
.cid-uLeXmFgHrR .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLeXmFgHrR .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLeXmFgHrR .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLeXmFgHrR .carousel-indicators {
    display: none;
  }
}
.cid-uLeXmFgHrR .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLeXmFgHrR .carousel-inner > .active {
  display: block;
}
.cid-uLeXmFgHrR .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLeXmFgHrR .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLeXmFgHrR .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLeXmFgHrR .carousel-control,
  .cid-uLeXmFgHrR .carousel-indicators,
  .cid-uLeXmFgHrR .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLeXmFgHrR .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLeXmFgHrR .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLeXmFgHrR .carousel-indicators .active,
.cid-uLeXmFgHrR .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLeXmFgHrR .carousel-indicators .active {
  background: #fff;
}
.cid-uLeXmFgHrR .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLeXmFgHrR .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLeXmFgHrR .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLeXmFgHrR .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLeXmFgHrR .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLeXmFgHrR .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLeXmFgHrR .carousel {
  width: 100%;
}
.cid-uLeXmFgHrR .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLeXmFgHrR .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLeXmFgHrR .modal.fade .modal-dialog,
.cid-uLeXmFgHrR .modal.in .modal-dialog {
  transform: none;
}
.cid-uLeXmFgHrR .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLeXmFgHrR H6 {
  text-align: center;
  color: #000000;
}
.cid-uLeXmFgHrR H3 {
  color: #000000;
}
.cid-uLeXmFENAo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uLeXmFENAo .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uLeXmFENAo .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLf038cY81 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLf038cY81 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLf038cY81 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLf038cY81 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLf038cY81 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLf038cY81 .menu_box .navbar.opened,
  .cid-uLf038cY81 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLf038cY81 .navbar-dropdown {
  position: relative !important;
}
.cid-uLf038cY81 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLf038cY81 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLf038cY81 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLf038cY81 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLf038cY81 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLf038cY81 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLf038cY81 .offcanvas-body .mbr-text,
  .cid-uLf038cY81 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLf038cY81 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLf038cY81 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLf038cY81 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLf038cY81 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLf038cY81 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLf038cY81 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLf038cY81 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLf038cY81 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLf038cY81 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf038cY81 .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-uLf038cY81 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLf038cY81 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLf038cY81 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLf038cY81 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLf038cY81 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLf038cY81 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLf038cY81 .nav-item {
    margin: 0 !important;
  }
}
.cid-uLf038cY81 .nav-item .nav-link {
  position: relative;
}
.cid-uLf038cY81 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLf038cY81 .nav-item .nav-link:hover,
.cid-uLf038cY81 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLf038cY81 .nav-item .nav-link:hover::before,
.cid-uLf038cY81 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLf038cY81 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLf038cY81 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLf038cY81 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLf038cY81 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf038cY81 .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-uLf038cY81 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLf038cY81 .offcanvas_box {
    display: none;
  }
}
.cid-uLf038cY81 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLf038cY81 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLf038cY81 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLf038cY81 .container {
  display: flex;
  margin: auto;
}
.cid-uLf038cY81 .iconfont-wrapper {
  color: #1b1b1b;
  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-uLf038cY81 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLf038cY81 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLf038cY81 .navbar-caption {
  color: #ffffff;
}
.cid-uLf038cY81 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLf038cY81 .navbar-nav {
    margin: 0;
  }
}
.cid-uLf038cY81 .dropdown-menu,
.cid-uLf038cY81 .navbar.opened {
  background-color: false !important;
}
.cid-uLf038cY81 .nav-item:focus,
.cid-uLf038cY81 .nav-link:focus {
  outline: none;
}
.cid-uLf038cY81 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLf038cY81 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLf038cY81 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLf038cY81 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLf038cY81 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLf038cY81 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLf038cY81 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLf038cY81 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLf038cY81 .navbar.opened {
  transition: all 0.3s;
}
.cid-uLf038cY81 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLf038cY81 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLf038cY81 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLf038cY81 .navbar.collapsed {
  justify-content: center;
}
.cid-uLf038cY81 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLf038cY81 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLf038cY81 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLf038cY81 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLf038cY81 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLf038cY81 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLf038cY81 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLf038cY81 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLf038cY81 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLf038cY81 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLf038cY81 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLf038cY81 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLf038cY81 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLf038cY81 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLf038cY81 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLf038cY81 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLf038cY81 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLf038cY81 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLf038cY81 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLf038cY81 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLf038cY81 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLf038cY81 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLf038cY81 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLf038cY81 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLf038cY81 .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-uLf038cY81 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLf038cY81 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLf038cY81 .dropdown-item.active,
.cid-uLf038cY81 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLf038cY81 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLf038cY81 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLf038cY81 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLf038cY81 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLf038cY81 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLf038cY81 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLf038cY81 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLf038cY81 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLf038cY81 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLf038cY81 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLf038cY81 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf038cY81 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf038cY81 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLf038cY81 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf038cY81 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLf038cY81 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLf038cY81 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf038cY81 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLf038cY81 .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-uLf038cY81 .navbar {
    height: 70px;
  }
  .cid-uLf038cY81 .navbar.opened {
    height: auto;
  }
  .cid-uLf038cY81 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLf038cY81 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLf038cY81 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLf038cY81 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLf038cY81 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLf038cY81 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLf038cY81 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLf038cY81 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLf038cY81 .text_widget {
  margin-bottom: 32px;
}
.cid-uLf038cY81 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLf038cY81 .text_widget a:hover {
  opacity: .5;
}
.cid-uLf038cY81 .icons-menu-main {
  display: flex;
}
.cid-uLf038cY81 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLf038cY81 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLf038cY81 .mbr-section-subtitle,
.cid-uLf038cY81 .text_widget,
.cid-uLf038cY81 .mbr-section-btn {
  text-align: center;
}
.cid-uLf038cY81 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP1O7vzGvd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP1O7vzGvd .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP1O7vzGvd .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQeLVvIlFF {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQeLVvIlFF .mbr-text {
  text-align: center;
  color: #232323;
}
.cid-uQeLVvIlFF .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uQeLVvIlFF .mbr-section-subtitle {
  text-align: center;
}
.cid-uPYqtuiWzr {
  padding-top: 1rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-uPYqtuiWzr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPYqtuiWzr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPYqtuiWzr .row {
  flex-direction: row-reverse;
}
.cid-uPYqtuiWzr .mbr-description {
  text-align: left;
}
.cid-uLf039btrm {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uLf039btrm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf039btrm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLf039btrm .mbr-section-title {
  color: #232323;
  text-align: center;
}
.cid-uLf039nhRD {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-uLf039nhRD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf039nhRD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLf039nhRD .container {
    padding: 0 22px;
  }
}
.cid-uLf039nhRD .row {
  justify-content: center;
  margin: 0 -6px;
}
.cid-uLf039nhRD .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
.cid-uLf039nhRD .item .item-wrapper .item-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 480px;
  padding: 32px;
}
@media (max-width: 768px) {
  .cid-uLf039nhRD .item .item-wrapper .item-img {
    height: 400px;
  }
}
.cid-uLf039nhRD .item .item-wrapper .item-img:hover::before,
.cid-uLf039nhRD .item .item-wrapper .item-img:focus::before {
  opacity: 0;
}
.cid-uLf039nhRD .item .item-wrapper .item-img:hover .item-content,
.cid-uLf039nhRD .item .item-wrapper .item-img:focus .item-content {
  transform: translateY(-2rem);
}
.cid-uLf039nhRD .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uLf039nhRD .item .item-wrapper .item-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uLf039nhRD .item .item-wrapper .item-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #424242;
  opacity: .5;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.cid-uLf039nhRD .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.cid-uLf039nhRD .item .item-wrapper .item-img .item-content .card-title {
  margin-bottom: 16px;
}
.cid-uLf039nhRD .item .item-wrapper .item-img .item-content .card-text {
  margin-bottom: 0;
}
.cid-uLf039nhRD .card-title {
  color: #ffffff;
}
.cid-uLf039nhRD .card-text {
  color: #ffffff;
}
.cid-uP1OcCnrNe {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP1OcCnrNe .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uP1OcCnrNe .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLf0C9aQ0u .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLf0C9aQ0u .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLf0C9aQ0u .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLf0C9aQ0u .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLf0C9aQ0u .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLf0C9aQ0u .menu_box .navbar.opened,
  .cid-uLf0C9aQ0u .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLf0C9aQ0u .navbar-dropdown {
  position: relative !important;
}
.cid-uLf0C9aQ0u .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLf0C9aQ0u .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLf0C9aQ0u .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLf0C9aQ0u .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLf0C9aQ0u .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLf0C9aQ0u .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLf0C9aQ0u .offcanvas-body .mbr-text,
  .cid-uLf0C9aQ0u .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLf0C9aQ0u .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLf0C9aQ0u .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLf0C9aQ0u .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLf0C9aQ0u .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLf0C9aQ0u .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLf0C9aQ0u .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLf0C9aQ0u .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLf0C9aQ0u ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLf0C9aQ0u .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf0C9aQ0u .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-uLf0C9aQ0u .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLf0C9aQ0u li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLf0C9aQ0u .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLf0C9aQ0u .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLf0C9aQ0u .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLf0C9aQ0u .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLf0C9aQ0u .nav-item {
    margin: 0 !important;
  }
}
.cid-uLf0C9aQ0u .nav-item .nav-link {
  position: relative;
}
.cid-uLf0C9aQ0u .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLf0C9aQ0u .nav-item .nav-link:hover,
.cid-uLf0C9aQ0u .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLf0C9aQ0u .nav-item .nav-link:hover::before,
.cid-uLf0C9aQ0u .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLf0C9aQ0u .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLf0C9aQ0u .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLf0C9aQ0u .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLf0C9aQ0u .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf0C9aQ0u .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-uLf0C9aQ0u .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLf0C9aQ0u .offcanvas_box {
    display: none;
  }
}
.cid-uLf0C9aQ0u .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLf0C9aQ0u .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLf0C9aQ0u .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLf0C9aQ0u .container {
  display: flex;
  margin: auto;
}
.cid-uLf0C9aQ0u .iconfont-wrapper {
  color: #1b1b1b;
  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-uLf0C9aQ0u .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLf0C9aQ0u .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLf0C9aQ0u .navbar-caption {
  color: #ffffff;
}
.cid-uLf0C9aQ0u .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLf0C9aQ0u .navbar-nav {
    margin: 0;
  }
}
.cid-uLf0C9aQ0u .dropdown-menu,
.cid-uLf0C9aQ0u .navbar.opened {
  background-color: false !important;
}
.cid-uLf0C9aQ0u .nav-item:focus,
.cid-uLf0C9aQ0u .nav-link:focus {
  outline: none;
}
.cid-uLf0C9aQ0u .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLf0C9aQ0u .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLf0C9aQ0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLf0C9aQ0u .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLf0C9aQ0u .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLf0C9aQ0u .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLf0C9aQ0u .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLf0C9aQ0u .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLf0C9aQ0u .navbar.opened {
  transition: all 0.3s;
}
.cid-uLf0C9aQ0u .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLf0C9aQ0u .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLf0C9aQ0u .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLf0C9aQ0u .navbar.collapsed {
  justify-content: center;
}
.cid-uLf0C9aQ0u .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLf0C9aQ0u .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLf0C9aQ0u .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLf0C9aQ0u .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLf0C9aQ0u .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLf0C9aQ0u .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLf0C9aQ0u .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLf0C9aQ0u .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLf0C9aQ0u .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLf0C9aQ0u .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLf0C9aQ0u .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLf0C9aQ0u .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLf0C9aQ0u .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLf0C9aQ0u .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLf0C9aQ0u .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLf0C9aQ0u .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLf0C9aQ0u .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLf0C9aQ0u .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLf0C9aQ0u .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLf0C9aQ0u .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLf0C9aQ0u .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLf0C9aQ0u .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLf0C9aQ0u .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLf0C9aQ0u .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLf0C9aQ0u .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-uLf0C9aQ0u .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLf0C9aQ0u .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLf0C9aQ0u .dropdown-item.active,
.cid-uLf0C9aQ0u .dropdown-item:active {
  background-color: transparent;
}
.cid-uLf0C9aQ0u .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLf0C9aQ0u .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLf0C9aQ0u .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLf0C9aQ0u .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLf0C9aQ0u .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLf0C9aQ0u ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLf0C9aQ0u .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLf0C9aQ0u button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLf0C9aQ0u button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLf0C9aQ0u button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLf0C9aQ0u button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf0C9aQ0u button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf0C9aQ0u button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLf0C9aQ0u nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf0C9aQ0u nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLf0C9aQ0u nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLf0C9aQ0u nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf0C9aQ0u a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLf0C9aQ0u .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-uLf0C9aQ0u .navbar {
    height: 70px;
  }
  .cid-uLf0C9aQ0u .navbar.opened {
    height: auto;
  }
  .cid-uLf0C9aQ0u .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLf0C9aQ0u .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLf0C9aQ0u .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLf0C9aQ0u .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLf0C9aQ0u .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLf0C9aQ0u .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLf0C9aQ0u .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLf0C9aQ0u .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLf0C9aQ0u .text_widget {
  margin-bottom: 32px;
}
.cid-uLf0C9aQ0u .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLf0C9aQ0u .text_widget a:hover {
  opacity: .5;
}
.cid-uLf0C9aQ0u .icons-menu-main {
  display: flex;
}
.cid-uLf0C9aQ0u .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLf0C9aQ0u .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLf0C9aQ0u .mbr-section-subtitle,
.cid-uLf0C9aQ0u .text_widget,
.cid-uLf0C9aQ0u .mbr-section-btn {
  text-align: center;
}
.cid-uLf0C9aQ0u a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uLf0Ca4nPn {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uLf0Ca4nPn .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uLf0Ca4nPn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uPLESqiS9M {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uPLESqiS9M .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uPLESqiS9M .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uLf0CadXNU {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uLf0CadXNU .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-uLf0CajXBK {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uLf0CajXBK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf0CajXBK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uLf0CajXBK .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLf0CajXBK img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uLf0CajXBK .text-wrapper {
    padding: 2rem;
  }
}
.cid-v0kAdTMTHl {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-v0kAdTMTHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0kAdTMTHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0kAdTMTHl .item {
  padding-bottom: 2rem;
}
.cid-v0kAdTMTHl .item-wrapper {
  position: relative;
}
.cid-v0kAdTMTHl .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v0kAdTMTHl .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v0kAdTMTHl .carousel-control,
.cid-v0kAdTMTHl .close {
  background: #1b1b1b;
}
.cid-v0kAdTMTHl .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0kAdTMTHl .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0kAdTMTHl .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0kAdTMTHl .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0kAdTMTHl .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v0kAdTMTHl .close::before {
  content: '\e91a';
}
.cid-v0kAdTMTHl .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0kAdTMTHl .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v0kAdTMTHl .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0kAdTMTHl .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0kAdTMTHl .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0kAdTMTHl .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0kAdTMTHl .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v0kAdTMTHl .carousel-indicators li.active,
.cid-v0kAdTMTHl .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0kAdTMTHl .carousel-indicators li::after,
.cid-v0kAdTMTHl .carousel-indicators li::before {
  content: none;
}
.cid-v0kAdTMTHl .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0kAdTMTHl .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0kAdTMTHl .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0kAdTMTHl .carousel-indicators {
    display: none;
  }
}
.cid-v0kAdTMTHl .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0kAdTMTHl .carousel-inner > .active {
  display: block;
}
.cid-v0kAdTMTHl .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0kAdTMTHl .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0kAdTMTHl .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0kAdTMTHl .carousel-control,
  .cid-v0kAdTMTHl .carousel-indicators,
  .cid-v0kAdTMTHl .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0kAdTMTHl .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0kAdTMTHl .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0kAdTMTHl .carousel-indicators .active,
.cid-v0kAdTMTHl .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0kAdTMTHl .carousel-indicators .active {
  background: #fff;
}
.cid-v0kAdTMTHl .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0kAdTMTHl .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0kAdTMTHl .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0kAdTMTHl .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0kAdTMTHl .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0kAdTMTHl .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0kAdTMTHl .carousel {
  width: 100%;
}
.cid-v0kAdTMTHl .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0kAdTMTHl .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0kAdTMTHl .modal.fade .modal-dialog,
.cid-v0kAdTMTHl .modal.in .modal-dialog {
  transform: none;
}
.cid-v0kAdTMTHl .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0kAdTMTHl H6 {
  text-align: center;
  color: #000000;
}
.cid-v0kAdTMTHl H3 {
  color: #000000;
}
.cid-uLf0CaFcvD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-uLf0CaFcvD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf0CaFcvD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLf0CaFcvD .item {
  padding-bottom: 2rem;
}
.cid-uLf0CaFcvD .item-wrapper {
  position: relative;
}
.cid-uLf0CaFcvD .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uLf0CaFcvD .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLf0CaFcvD .carousel-control,
.cid-uLf0CaFcvD .close {
  background: #1b1b1b;
}
.cid-uLf0CaFcvD .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLf0CaFcvD .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLf0CaFcvD .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLf0CaFcvD .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLf0CaFcvD .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uLf0CaFcvD .close::before {
  content: '\e91a';
}
.cid-uLf0CaFcvD .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLf0CaFcvD .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uLf0CaFcvD .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLf0CaFcvD .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLf0CaFcvD .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLf0CaFcvD .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLf0CaFcvD .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uLf0CaFcvD .carousel-indicators li.active,
.cid-uLf0CaFcvD .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLf0CaFcvD .carousel-indicators li::after,
.cid-uLf0CaFcvD .carousel-indicators li::before {
  content: none;
}
.cid-uLf0CaFcvD .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLf0CaFcvD .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLf0CaFcvD .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLf0CaFcvD .carousel-indicators {
    display: none;
  }
}
.cid-uLf0CaFcvD .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLf0CaFcvD .carousel-inner > .active {
  display: block;
}
.cid-uLf0CaFcvD .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLf0CaFcvD .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLf0CaFcvD .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLf0CaFcvD .carousel-control,
  .cid-uLf0CaFcvD .carousel-indicators,
  .cid-uLf0CaFcvD .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLf0CaFcvD .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLf0CaFcvD .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLf0CaFcvD .carousel-indicators .active,
.cid-uLf0CaFcvD .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLf0CaFcvD .carousel-indicators .active {
  background: #fff;
}
.cid-uLf0CaFcvD .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLf0CaFcvD .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLf0CaFcvD .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLf0CaFcvD .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLf0CaFcvD .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLf0CaFcvD .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLf0CaFcvD .carousel {
  width: 100%;
}
.cid-uLf0CaFcvD .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLf0CaFcvD .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLf0CaFcvD .modal.fade .modal-dialog,
.cid-uLf0CaFcvD .modal.in .modal-dialog {
  transform: none;
}
.cid-uLf0CaFcvD .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLf0CaFcvD H6 {
  text-align: center;
  color: #000000;
}
.cid-uLf0CaFcvD H3 {
  color: #000000;
}
.cid-uLf0Cb1uh5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uLf0Cb1uh5 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uLf0Cb1uh5 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLf3ynnUZi .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLf3ynnUZi .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLf3ynnUZi .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLf3ynnUZi .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLf3ynnUZi .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLf3ynnUZi .menu_box .navbar.opened,
  .cid-uLf3ynnUZi .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLf3ynnUZi .navbar-dropdown {
  position: relative !important;
}
.cid-uLf3ynnUZi .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLf3ynnUZi .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLf3ynnUZi .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLf3ynnUZi .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLf3ynnUZi .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLf3ynnUZi .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLf3ynnUZi .offcanvas-body .mbr-text,
  .cid-uLf3ynnUZi .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLf3ynnUZi .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLf3ynnUZi .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLf3ynnUZi .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLf3ynnUZi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLf3ynnUZi .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLf3ynnUZi .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLf3ynnUZi .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLf3ynnUZi ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLf3ynnUZi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf3ynnUZi .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-uLf3ynnUZi .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLf3ynnUZi li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLf3ynnUZi .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLf3ynnUZi .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLf3ynnUZi .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLf3ynnUZi .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLf3ynnUZi .nav-item {
    margin: 0 !important;
  }
}
.cid-uLf3ynnUZi .nav-item .nav-link {
  position: relative;
}
.cid-uLf3ynnUZi .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLf3ynnUZi .nav-item .nav-link:hover,
.cid-uLf3ynnUZi .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLf3ynnUZi .nav-item .nav-link:hover::before,
.cid-uLf3ynnUZi .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLf3ynnUZi .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLf3ynnUZi .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLf3ynnUZi .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLf3ynnUZi .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf3ynnUZi .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-uLf3ynnUZi .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLf3ynnUZi .offcanvas_box {
    display: none;
  }
}
.cid-uLf3ynnUZi .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLf3ynnUZi .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLf3ynnUZi .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLf3ynnUZi .container {
  display: flex;
  margin: auto;
}
.cid-uLf3ynnUZi .iconfont-wrapper {
  color: #1b1b1b;
  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-uLf3ynnUZi .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLf3ynnUZi .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLf3ynnUZi .navbar-caption {
  color: #ffffff;
}
.cid-uLf3ynnUZi .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLf3ynnUZi .navbar-nav {
    margin: 0;
  }
}
.cid-uLf3ynnUZi .dropdown-menu,
.cid-uLf3ynnUZi .navbar.opened {
  background-color: false !important;
}
.cid-uLf3ynnUZi .nav-item:focus,
.cid-uLf3ynnUZi .nav-link:focus {
  outline: none;
}
.cid-uLf3ynnUZi .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLf3ynnUZi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLf3ynnUZi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLf3ynnUZi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLf3ynnUZi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLf3ynnUZi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLf3ynnUZi .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLf3ynnUZi .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLf3ynnUZi .navbar.opened {
  transition: all 0.3s;
}
.cid-uLf3ynnUZi .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLf3ynnUZi .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLf3ynnUZi .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLf3ynnUZi .navbar.collapsed {
  justify-content: center;
}
.cid-uLf3ynnUZi .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLf3ynnUZi .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLf3ynnUZi .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLf3ynnUZi .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLf3ynnUZi .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLf3ynnUZi .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLf3ynnUZi .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLf3ynnUZi .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLf3ynnUZi .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLf3ynnUZi .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLf3ynnUZi .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLf3ynnUZi .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLf3ynnUZi .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLf3ynnUZi .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLf3ynnUZi .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLf3ynnUZi .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLf3ynnUZi .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLf3ynnUZi .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLf3ynnUZi .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLf3ynnUZi .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLf3ynnUZi .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLf3ynnUZi .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLf3ynnUZi .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLf3ynnUZi .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLf3ynnUZi .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-uLf3ynnUZi .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLf3ynnUZi .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLf3ynnUZi .dropdown-item.active,
.cid-uLf3ynnUZi .dropdown-item:active {
  background-color: transparent;
}
.cid-uLf3ynnUZi .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLf3ynnUZi .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLf3ynnUZi .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLf3ynnUZi .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLf3ynnUZi .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLf3ynnUZi ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLf3ynnUZi .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLf3ynnUZi button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLf3ynnUZi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLf3ynnUZi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLf3ynnUZi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf3ynnUZi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf3ynnUZi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLf3ynnUZi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf3ynnUZi nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLf3ynnUZi nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLf3ynnUZi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf3ynnUZi a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLf3ynnUZi .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-uLf3ynnUZi .navbar {
    height: 70px;
  }
  .cid-uLf3ynnUZi .navbar.opened {
    height: auto;
  }
  .cid-uLf3ynnUZi .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLf3ynnUZi .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLf3ynnUZi .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLf3ynnUZi .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLf3ynnUZi .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLf3ynnUZi .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLf3ynnUZi .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLf3ynnUZi .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLf3ynnUZi .text_widget {
  margin-bottom: 32px;
}
.cid-uLf3ynnUZi .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLf3ynnUZi .text_widget a:hover {
  opacity: .5;
}
.cid-uLf3ynnUZi .icons-menu-main {
  display: flex;
}
.cid-uLf3ynnUZi .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLf3ynnUZi .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLf3ynnUZi .mbr-section-subtitle,
.cid-uLf3ynnUZi .text_widget,
.cid-uLf3ynnUZi .mbr-section-btn {
  text-align: center;
}
.cid-uLf3ynnUZi a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP1N1KcQ8D {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP1N1KcQ8D .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP1N1KcQ8D .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uLf3yorqru {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-uLf3yorqru .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf3yorqru .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLf3yorqru .mbr-section-title {
  color: #232323;
}
.cid-uLf3yoFakV {
  padding-top: 3rem;
  padding-bottom: 10rem;
  background-color: #fafafa;
}
.cid-uLf3yoFakV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf3yoFakV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uLf3yoFakV .container {
    padding: 0 22px;
  }
}
.cid-uLf3yoFakV .row {
  justify-content: center;
  margin: 0 -6px;
}
.cid-uLf3yoFakV .item {
  padding: 0 6px;
  margin-bottom: 12px;
}
.cid-uLf3yoFakV .item .item-wrapper .item-img {
  position: relative;
  display: flex;
  align-items: flex-end;
  height: 480px;
  padding: 32px;
}
@media (max-width: 768px) {
  .cid-uLf3yoFakV .item .item-wrapper .item-img {
    height: 400px;
  }
}
.cid-uLf3yoFakV .item .item-wrapper .item-img:hover::before,
.cid-uLf3yoFakV .item .item-wrapper .item-img:focus::before {
  opacity: 0;
}
.cid-uLf3yoFakV .item .item-wrapper .item-img:hover .item-content,
.cid-uLf3yoFakV .item .item-wrapper .item-img:focus .item-content {
  transform: translateY(-2rem);
}
.cid-uLf3yoFakV .item .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uLf3yoFakV .item .item-wrapper .item-img a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.cid-uLf3yoFakV .item .item-wrapper .item-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  background-color: #828282;
  opacity: .5;
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.cid-uLf3yoFakV .item .item-wrapper .item-img .item-content {
  position: relative;
  z-index: 1;
  transition: all 0.5s ease-in-out;
  width: 100%;
}
.cid-uLf3yoFakV .item .item-wrapper .item-img .item-content .card-title {
  margin-bottom: 16px;
}
.cid-uLf3yoFakV .item .item-wrapper .item-img .item-content .card-text {
  margin-bottom: 0;
}
.cid-uLf3yoFakV .card-title {
  color: #ffffff;
}
.cid-uLf3yoFakV .card-text {
  color: #ffffff;
}
.cid-uP6JZUPttS {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP6JZUPttS .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uP6JZUPttS .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLf3R2R0G2 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLf3R2R0G2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLf3R2R0G2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLf3R2R0G2 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLf3R2R0G2 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLf3R2R0G2 .menu_box .navbar.opened,
  .cid-uLf3R2R0G2 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLf3R2R0G2 .navbar-dropdown {
  position: relative !important;
}
.cid-uLf3R2R0G2 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLf3R2R0G2 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLf3R2R0G2 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLf3R2R0G2 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLf3R2R0G2 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLf3R2R0G2 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLf3R2R0G2 .offcanvas-body .mbr-text,
  .cid-uLf3R2R0G2 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLf3R2R0G2 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLf3R2R0G2 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLf3R2R0G2 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLf3R2R0G2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLf3R2R0G2 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLf3R2R0G2 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLf3R2R0G2 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLf3R2R0G2 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLf3R2R0G2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf3R2R0G2 .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-uLf3R2R0G2 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLf3R2R0G2 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLf3R2R0G2 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLf3R2R0G2 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLf3R2R0G2 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLf3R2R0G2 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLf3R2R0G2 .nav-item {
    margin: 0 !important;
  }
}
.cid-uLf3R2R0G2 .nav-item .nav-link {
  position: relative;
}
.cid-uLf3R2R0G2 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLf3R2R0G2 .nav-item .nav-link:hover,
.cid-uLf3R2R0G2 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLf3R2R0G2 .nav-item .nav-link:hover::before,
.cid-uLf3R2R0G2 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLf3R2R0G2 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLf3R2R0G2 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLf3R2R0G2 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLf3R2R0G2 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLf3R2R0G2 .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-uLf3R2R0G2 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLf3R2R0G2 .offcanvas_box {
    display: none;
  }
}
.cid-uLf3R2R0G2 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLf3R2R0G2 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLf3R2R0G2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLf3R2R0G2 .container {
  display: flex;
  margin: auto;
}
.cid-uLf3R2R0G2 .iconfont-wrapper {
  color: #1b1b1b;
  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-uLf3R2R0G2 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLf3R2R0G2 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLf3R2R0G2 .navbar-caption {
  color: #ffffff;
}
.cid-uLf3R2R0G2 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLf3R2R0G2 .navbar-nav {
    margin: 0;
  }
}
.cid-uLf3R2R0G2 .dropdown-menu,
.cid-uLf3R2R0G2 .navbar.opened {
  background-color: false !important;
}
.cid-uLf3R2R0G2 .nav-item:focus,
.cid-uLf3R2R0G2 .nav-link:focus {
  outline: none;
}
.cid-uLf3R2R0G2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLf3R2R0G2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLf3R2R0G2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLf3R2R0G2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLf3R2R0G2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLf3R2R0G2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLf3R2R0G2 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLf3R2R0G2 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLf3R2R0G2 .navbar.opened {
  transition: all 0.3s;
}
.cid-uLf3R2R0G2 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLf3R2R0G2 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLf3R2R0G2 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLf3R2R0G2 .navbar.collapsed {
  justify-content: center;
}
.cid-uLf3R2R0G2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLf3R2R0G2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLf3R2R0G2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLf3R2R0G2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLf3R2R0G2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLf3R2R0G2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLf3R2R0G2 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLf3R2R0G2 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLf3R2R0G2 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLf3R2R0G2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLf3R2R0G2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLf3R2R0G2 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLf3R2R0G2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLf3R2R0G2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLf3R2R0G2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLf3R2R0G2 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLf3R2R0G2 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLf3R2R0G2 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLf3R2R0G2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLf3R2R0G2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLf3R2R0G2 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLf3R2R0G2 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLf3R2R0G2 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLf3R2R0G2 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLf3R2R0G2 .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-uLf3R2R0G2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLf3R2R0G2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLf3R2R0G2 .dropdown-item.active,
.cid-uLf3R2R0G2 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLf3R2R0G2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLf3R2R0G2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLf3R2R0G2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLf3R2R0G2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLf3R2R0G2 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLf3R2R0G2 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLf3R2R0G2 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLf3R2R0G2 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLf3R2R0G2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLf3R2R0G2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLf3R2R0G2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf3R2R0G2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLf3R2R0G2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLf3R2R0G2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf3R2R0G2 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLf3R2R0G2 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLf3R2R0G2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLf3R2R0G2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLf3R2R0G2 .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-uLf3R2R0G2 .navbar {
    height: 70px;
  }
  .cid-uLf3R2R0G2 .navbar.opened {
    height: auto;
  }
  .cid-uLf3R2R0G2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLf3R2R0G2 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLf3R2R0G2 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLf3R2R0G2 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLf3R2R0G2 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLf3R2R0G2 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLf3R2R0G2 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLf3R2R0G2 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLf3R2R0G2 .text_widget {
  margin-bottom: 32px;
}
.cid-uLf3R2R0G2 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLf3R2R0G2 .text_widget a:hover {
  opacity: .5;
}
.cid-uLf3R2R0G2 .icons-menu-main {
  display: flex;
}
.cid-uLf3R2R0G2 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLf3R2R0G2 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLf3R2R0G2 .mbr-section-subtitle,
.cid-uLf3R2R0G2 .text_widget,
.cid-uLf3R2R0G2 .mbr-section-btn {
  text-align: center;
}
.cid-uLf3R2R0G2 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uLf3R3MDzk {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #5c5c5c;
}
.cid-uLf3R3MDzk .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uLf3R3MDzk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uP6KJ1ovci {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uP6KJ1ovci .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP6KJ1ovci .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uLf3R3Y5tt {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uLf3R3Y5tt .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-uLf3R45DFz {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uLf3R45DFz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf3R45DFz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uLf3R45DFz .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uLf3R45DFz img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uLf3R45DFz .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOrMEexq5u {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uOrMEexq5u .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOrMEexq5u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOrMEexq5u .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uOrMEexq5u .card {
    margin-bottom: 2rem!important;
  }
  .cid-uOrMEexq5u .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uOrMEexq5u .link-wrap {
    align-items: center;
  }
}
.cid-uOrMEexq5u .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uOrMEexq5u .card-title,
.cid-uOrMEexq5u .card-box {
  text-align: left;
  color: #232323;
}
.cid-uOrMEexq5u .mbr-text,
.cid-uOrMEexq5u .link-wrap,
.cid-uOrMEexq5u .mbr-section-btn {
  text-align: left;
  color: #353535;
}
.cid-uLf3R4tUtg {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ececec;
}
.cid-uLf3R4tUtg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLf3R4tUtg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLf3R4tUtg .item {
  padding-bottom: 2rem;
}
.cid-uLf3R4tUtg .item-wrapper {
  position: relative;
}
.cid-uLf3R4tUtg .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uLf3R4tUtg .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uLf3R4tUtg .carousel-control,
.cid-uLf3R4tUtg .close {
  background: #1b1b1b;
}
.cid-uLf3R4tUtg .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uLf3R4tUtg .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uLf3R4tUtg .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uLf3R4tUtg .carousel-control-next span {
  margin-left: 5px;
}
.cid-uLf3R4tUtg .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uLf3R4tUtg .close::before {
  content: '\e91a';
}
.cid-uLf3R4tUtg .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uLf3R4tUtg .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uLf3R4tUtg .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLf3R4tUtg .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uLf3R4tUtg .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uLf3R4tUtg .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uLf3R4tUtg .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uLf3R4tUtg .carousel-indicators li.active,
.cid-uLf3R4tUtg .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uLf3R4tUtg .carousel-indicators li::after,
.cid-uLf3R4tUtg .carousel-indicators li::before {
  content: none;
}
.cid-uLf3R4tUtg .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uLf3R4tUtg .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uLf3R4tUtg .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uLf3R4tUtg .carousel-indicators {
    display: none;
  }
}
.cid-uLf3R4tUtg .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uLf3R4tUtg .carousel-inner > .active {
  display: block;
}
.cid-uLf3R4tUtg .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uLf3R4tUtg .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uLf3R4tUtg .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uLf3R4tUtg .carousel-control,
  .cid-uLf3R4tUtg .carousel-indicators,
  .cid-uLf3R4tUtg .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uLf3R4tUtg .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uLf3R4tUtg .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uLf3R4tUtg .carousel-indicators .active,
.cid-uLf3R4tUtg .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uLf3R4tUtg .carousel-indicators .active {
  background: #fff;
}
.cid-uLf3R4tUtg .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uLf3R4tUtg .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uLf3R4tUtg .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uLf3R4tUtg .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uLf3R4tUtg .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uLf3R4tUtg .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uLf3R4tUtg .carousel {
  width: 100%;
}
.cid-uLf3R4tUtg .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uLf3R4tUtg .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uLf3R4tUtg .modal.fade .modal-dialog,
.cid-uLf3R4tUtg .modal.in .modal-dialog {
  transform: none;
}
.cid-uLf3R4tUtg .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uLf3R4tUtg H6 {
  text-align: center;
  color: #000000;
}
.cid-uLf3R4tUtg H3 {
  color: #000000;
}
.cid-uP6Lnun19I {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uP6Lnun19I .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uP6Lnun19I .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uMzjdCYOaf .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uMzjdCYOaf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uMzjdCYOaf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMzjdCYOaf .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uMzjdCYOaf .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uMzjdCYOaf .menu_box .navbar.opened,
  .cid-uMzjdCYOaf .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMzjdCYOaf .navbar-dropdown {
  position: relative !important;
}
.cid-uMzjdCYOaf .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMzjdCYOaf .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMzjdCYOaf .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMzjdCYOaf .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMzjdCYOaf .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMzjdCYOaf .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMzjdCYOaf .offcanvas-body .mbr-text,
  .cid-uMzjdCYOaf .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uMzjdCYOaf .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uMzjdCYOaf .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMzjdCYOaf .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uMzjdCYOaf .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMzjdCYOaf .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMzjdCYOaf .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMzjdCYOaf .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMzjdCYOaf ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMzjdCYOaf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzjdCYOaf .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-uMzjdCYOaf .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMzjdCYOaf li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMzjdCYOaf .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMzjdCYOaf .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uMzjdCYOaf .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMzjdCYOaf .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMzjdCYOaf .nav-item {
    margin: 0 !important;
  }
}
.cid-uMzjdCYOaf .nav-item .nav-link {
  position: relative;
}
.cid-uMzjdCYOaf .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uMzjdCYOaf .nav-item .nav-link:hover,
.cid-uMzjdCYOaf .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uMzjdCYOaf .nav-item .nav-link:hover::before,
.cid-uMzjdCYOaf .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uMzjdCYOaf .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMzjdCYOaf .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMzjdCYOaf .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMzjdCYOaf .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzjdCYOaf .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-uMzjdCYOaf .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMzjdCYOaf .offcanvas_box {
    display: none;
  }
}
.cid-uMzjdCYOaf .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMzjdCYOaf .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMzjdCYOaf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMzjdCYOaf .container {
  display: flex;
  margin: auto;
}
.cid-uMzjdCYOaf .iconfont-wrapper {
  color: #1b1b1b;
  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-uMzjdCYOaf .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMzjdCYOaf .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMzjdCYOaf .navbar-caption {
  color: #ffffff;
}
.cid-uMzjdCYOaf .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMzjdCYOaf .navbar-nav {
    margin: 0;
  }
}
.cid-uMzjdCYOaf .dropdown-menu,
.cid-uMzjdCYOaf .navbar.opened {
  background-color: false !important;
}
.cid-uMzjdCYOaf .nav-item:focus,
.cid-uMzjdCYOaf .nav-link:focus {
  outline: none;
}
.cid-uMzjdCYOaf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMzjdCYOaf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMzjdCYOaf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMzjdCYOaf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMzjdCYOaf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMzjdCYOaf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMzjdCYOaf .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMzjdCYOaf .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMzjdCYOaf .navbar.opened {
  transition: all 0.3s;
}
.cid-uMzjdCYOaf .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMzjdCYOaf .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uMzjdCYOaf .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uMzjdCYOaf .navbar.collapsed {
  justify-content: center;
}
.cid-uMzjdCYOaf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMzjdCYOaf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMzjdCYOaf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMzjdCYOaf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMzjdCYOaf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMzjdCYOaf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMzjdCYOaf .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMzjdCYOaf .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMzjdCYOaf .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMzjdCYOaf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMzjdCYOaf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMzjdCYOaf .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMzjdCYOaf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMzjdCYOaf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMzjdCYOaf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMzjdCYOaf .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMzjdCYOaf .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMzjdCYOaf .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMzjdCYOaf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uMzjdCYOaf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMzjdCYOaf .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMzjdCYOaf .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMzjdCYOaf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMzjdCYOaf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMzjdCYOaf .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-uMzjdCYOaf .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMzjdCYOaf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMzjdCYOaf .dropdown-item.active,
.cid-uMzjdCYOaf .dropdown-item:active {
  background-color: transparent;
}
.cid-uMzjdCYOaf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMzjdCYOaf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMzjdCYOaf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMzjdCYOaf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMzjdCYOaf .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uMzjdCYOaf ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMzjdCYOaf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMzjdCYOaf button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uMzjdCYOaf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMzjdCYOaf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMzjdCYOaf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzjdCYOaf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzjdCYOaf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMzjdCYOaf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzjdCYOaf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMzjdCYOaf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMzjdCYOaf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzjdCYOaf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMzjdCYOaf .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-uMzjdCYOaf .navbar {
    height: 70px;
  }
  .cid-uMzjdCYOaf .navbar.opened {
    height: auto;
  }
  .cid-uMzjdCYOaf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMzjdCYOaf .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uMzjdCYOaf .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uMzjdCYOaf .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMzjdCYOaf .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uMzjdCYOaf .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMzjdCYOaf .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMzjdCYOaf .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMzjdCYOaf .text_widget {
  margin-bottom: 32px;
}
.cid-uMzjdCYOaf .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMzjdCYOaf .text_widget a:hover {
  opacity: .5;
}
.cid-uMzjdCYOaf .icons-menu-main {
  display: flex;
}
.cid-uMzjdCYOaf .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uMzjdCYOaf .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMzjdCYOaf .mbr-section-subtitle,
.cid-uMzjdCYOaf .text_widget,
.cid-uMzjdCYOaf .mbr-section-btn {
  text-align: center;
}
.cid-uMzjdCYOaf a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOsHgOub8y {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsHgOub8y .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsHgOub8y .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uN8NjiloNw {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uN8NjiloNw .mbr-text {
  text-align: center;
  color: #3f3f3f;
}
.cid-uN8NjiloNw .mbr-section-subtitle {
  color: #3f3f3f;
  text-align: center;
}
.cid-uN8NjiloNw .mbr-section-title {
  text-align: center;
}
.cid-uNHIgE9sbo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNHIgE9sbo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNHIgE9sbo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNHIgE9sbo .row {
  flex-direction: row-reverse;
}
.cid-uNHIgE9sbo .mbr-description {
  text-align: center;
}
.cid-uNHQMu31uS {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNHQMu31uS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNHQMu31uS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNHQMu31uS .row {
  flex-direction: row-reverse;
}
.cid-uNHQMu31uS .mbr-description {
  text-align: center;
}
.cid-uNBXj8sru0 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uNBXj8sru0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNBXj8sru0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNBXj8sru0 .video-wrapper iframe {
  width: 100%;
}
.cid-uNBXj8sru0 .mbr-section-title,
.cid-uNBXj8sru0 .mbr-section-subtitle,
.cid-uNBXj8sru0 .mbr-text {
  text-align: center;
}
.cid-uNBXj8sru0 .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uNBXj8sru0 .mbr-section-subtitle {
  text-align: left;
}
.cid-uNBXj8sru0 .mbr-text {
  text-align: left;
}
.cid-uNGXZrRZWm {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uNGXZrRZWm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNGXZrRZWm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNGXZrRZWm .row {
  flex-direction: row-reverse;
}
.cid-uNGXZrRZWm .mbr-description {
  text-align: center;
}
.cid-uOsEuxyfi9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsEuxyfi9 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsEuxyfi9 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uMzoaBUOM7 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uMzoaBUOM7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uMzoaBUOM7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMzoaBUOM7 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uMzoaBUOM7 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uMzoaBUOM7 .menu_box .navbar.opened,
  .cid-uMzoaBUOM7 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMzoaBUOM7 .navbar-dropdown {
  position: relative !important;
}
.cid-uMzoaBUOM7 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMzoaBUOM7 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMzoaBUOM7 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMzoaBUOM7 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMzoaBUOM7 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMzoaBUOM7 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMzoaBUOM7 .offcanvas-body .mbr-text,
  .cid-uMzoaBUOM7 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uMzoaBUOM7 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uMzoaBUOM7 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMzoaBUOM7 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uMzoaBUOM7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMzoaBUOM7 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMzoaBUOM7 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMzoaBUOM7 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMzoaBUOM7 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMzoaBUOM7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoaBUOM7 .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-uMzoaBUOM7 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMzoaBUOM7 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMzoaBUOM7 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMzoaBUOM7 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uMzoaBUOM7 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMzoaBUOM7 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMzoaBUOM7 .nav-item {
    margin: 0 !important;
  }
}
.cid-uMzoaBUOM7 .nav-item .nav-link {
  position: relative;
}
.cid-uMzoaBUOM7 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uMzoaBUOM7 .nav-item .nav-link:hover,
.cid-uMzoaBUOM7 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uMzoaBUOM7 .nav-item .nav-link:hover::before,
.cid-uMzoaBUOM7 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uMzoaBUOM7 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMzoaBUOM7 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMzoaBUOM7 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMzoaBUOM7 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoaBUOM7 .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-uMzoaBUOM7 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMzoaBUOM7 .offcanvas_box {
    display: none;
  }
}
.cid-uMzoaBUOM7 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMzoaBUOM7 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMzoaBUOM7 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMzoaBUOM7 .container {
  display: flex;
  margin: auto;
}
.cid-uMzoaBUOM7 .iconfont-wrapper {
  color: #1b1b1b;
  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-uMzoaBUOM7 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMzoaBUOM7 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMzoaBUOM7 .navbar-caption {
  color: #ffffff;
}
.cid-uMzoaBUOM7 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMzoaBUOM7 .navbar-nav {
    margin: 0;
  }
}
.cid-uMzoaBUOM7 .dropdown-menu,
.cid-uMzoaBUOM7 .navbar.opened {
  background-color: false !important;
}
.cid-uMzoaBUOM7 .nav-item:focus,
.cid-uMzoaBUOM7 .nav-link:focus {
  outline: none;
}
.cid-uMzoaBUOM7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMzoaBUOM7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMzoaBUOM7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMzoaBUOM7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMzoaBUOM7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMzoaBUOM7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMzoaBUOM7 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMzoaBUOM7 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMzoaBUOM7 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMzoaBUOM7 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMzoaBUOM7 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uMzoaBUOM7 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uMzoaBUOM7 .navbar.collapsed {
  justify-content: center;
}
.cid-uMzoaBUOM7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMzoaBUOM7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMzoaBUOM7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMzoaBUOM7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMzoaBUOM7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMzoaBUOM7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMzoaBUOM7 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMzoaBUOM7 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMzoaBUOM7 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMzoaBUOM7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMzoaBUOM7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMzoaBUOM7 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMzoaBUOM7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMzoaBUOM7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMzoaBUOM7 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMzoaBUOM7 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMzoaBUOM7 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMzoaBUOM7 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMzoaBUOM7 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uMzoaBUOM7 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMzoaBUOM7 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMzoaBUOM7 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMzoaBUOM7 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMzoaBUOM7 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMzoaBUOM7 .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-uMzoaBUOM7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMzoaBUOM7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMzoaBUOM7 .dropdown-item.active,
.cid-uMzoaBUOM7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMzoaBUOM7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMzoaBUOM7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMzoaBUOM7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMzoaBUOM7 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMzoaBUOM7 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uMzoaBUOM7 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMzoaBUOM7 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMzoaBUOM7 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uMzoaBUOM7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMzoaBUOM7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMzoaBUOM7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoaBUOM7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoaBUOM7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMzoaBUOM7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoaBUOM7 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMzoaBUOM7 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMzoaBUOM7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoaBUOM7 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMzoaBUOM7 .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-uMzoaBUOM7 .navbar {
    height: 70px;
  }
  .cid-uMzoaBUOM7 .navbar.opened {
    height: auto;
  }
  .cid-uMzoaBUOM7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMzoaBUOM7 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uMzoaBUOM7 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uMzoaBUOM7 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMzoaBUOM7 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uMzoaBUOM7 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMzoaBUOM7 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMzoaBUOM7 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMzoaBUOM7 .text_widget {
  margin-bottom: 32px;
}
.cid-uMzoaBUOM7 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMzoaBUOM7 .text_widget a:hover {
  opacity: .5;
}
.cid-uMzoaBUOM7 .icons-menu-main {
  display: flex;
}
.cid-uMzoaBUOM7 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoaBUOM7 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoaBUOM7 .mbr-section-subtitle,
.cid-uMzoaBUOM7 .text_widget,
.cid-uMzoaBUOM7 .mbr-section-btn {
  text-align: center;
}
.cid-uMzoaBUOM7 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uMzoaCBFcL {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzoaCBFcL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoaCBFcL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoaCBFcL .row {
  flex-direction: row-reverse;
}
.cid-uMzoaCBFcL .mbr-description {
  text-align: center;
}
.cid-uMzoaCRNki {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMzoaCRNki .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMzoaCRNki img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMzoaCRNki .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-uMzoaD2SB7 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMzoaD2SB7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoaD2SB7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoaD2SB7 .row {
  flex-direction: row-reverse;
}
.cid-uMzoaD2SB7 .mbr-description {
  text-align: center;
}
.cid-uMzoaDb8so {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzoaDb8so .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoaDb8so .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoaDb8so .row {
  flex-direction: row-reverse;
}
.cid-uMzoaDb8so .mbr-description {
  text-align: center;
}
.cid-uMzoaDhgz3 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMzoaDhgz3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoaDhgz3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoaDhgz3 .row {
  flex-direction: row-reverse;
}
.cid-uMzoaDhgz3 .mbr-description {
  text-align: center;
}
.cid-uMzoaDqXhF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzoaDqXhF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoaDqXhF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoaDqXhF .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uMzoaDqXhF .card {
    margin-bottom: 2rem!important;
  }
  .cid-uMzoaDqXhF .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uMzoaDqXhF .link-wrap {
    align-items: center;
  }
}
.cid-uMzoaDqXhF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMzoaDqXhF .card-title,
.cid-uMzoaDqXhF .card-box {
  text-align: left;
  color: #232323;
}
.cid-uMzoaDqXhF .mbr-text,
.cid-uMzoaDqXhF .link-wrap,
.cid-uMzoaDqXhF .mbr-section-btn {
  text-align: left;
  color: #797979;
}
.cid-uMzoaDzLZT {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMzoaDzLZT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoaDzLZT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoaDzLZT .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMzoaDzLZT .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uMzoxsS580 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uMzoxsS580 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uMzoxsS580 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMzoxsS580 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uMzoxsS580 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uMzoxsS580 .menu_box .navbar.opened,
  .cid-uMzoxsS580 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMzoxsS580 .navbar-dropdown {
  position: relative !important;
}
.cid-uMzoxsS580 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMzoxsS580 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMzoxsS580 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMzoxsS580 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMzoxsS580 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMzoxsS580 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMzoxsS580 .offcanvas-body .mbr-text,
  .cid-uMzoxsS580 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uMzoxsS580 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uMzoxsS580 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMzoxsS580 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uMzoxsS580 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMzoxsS580 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMzoxsS580 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMzoxsS580 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMzoxsS580 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMzoxsS580 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoxsS580 .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-uMzoxsS580 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMzoxsS580 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMzoxsS580 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMzoxsS580 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uMzoxsS580 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMzoxsS580 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMzoxsS580 .nav-item {
    margin: 0 !important;
  }
}
.cid-uMzoxsS580 .nav-item .nav-link {
  position: relative;
}
.cid-uMzoxsS580 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uMzoxsS580 .nav-item .nav-link:hover,
.cid-uMzoxsS580 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uMzoxsS580 .nav-item .nav-link:hover::before,
.cid-uMzoxsS580 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uMzoxsS580 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMzoxsS580 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMzoxsS580 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMzoxsS580 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoxsS580 .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-uMzoxsS580 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMzoxsS580 .offcanvas_box {
    display: none;
  }
}
.cid-uMzoxsS580 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMzoxsS580 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMzoxsS580 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMzoxsS580 .container {
  display: flex;
  margin: auto;
}
.cid-uMzoxsS580 .iconfont-wrapper {
  color: #1b1b1b;
  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-uMzoxsS580 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMzoxsS580 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMzoxsS580 .navbar-caption {
  color: #ffffff;
}
.cid-uMzoxsS580 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMzoxsS580 .navbar-nav {
    margin: 0;
  }
}
.cid-uMzoxsS580 .dropdown-menu,
.cid-uMzoxsS580 .navbar.opened {
  background-color: false !important;
}
.cid-uMzoxsS580 .nav-item:focus,
.cid-uMzoxsS580 .nav-link:focus {
  outline: none;
}
.cid-uMzoxsS580 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMzoxsS580 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMzoxsS580 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMzoxsS580 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMzoxsS580 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMzoxsS580 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMzoxsS580 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMzoxsS580 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMzoxsS580 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMzoxsS580 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMzoxsS580 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uMzoxsS580 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uMzoxsS580 .navbar.collapsed {
  justify-content: center;
}
.cid-uMzoxsS580 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMzoxsS580 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMzoxsS580 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMzoxsS580 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMzoxsS580 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMzoxsS580 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMzoxsS580 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMzoxsS580 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMzoxsS580 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMzoxsS580 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMzoxsS580 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMzoxsS580 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMzoxsS580 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMzoxsS580 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMzoxsS580 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMzoxsS580 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMzoxsS580 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMzoxsS580 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMzoxsS580 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uMzoxsS580 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMzoxsS580 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMzoxsS580 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMzoxsS580 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMzoxsS580 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMzoxsS580 .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-uMzoxsS580 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMzoxsS580 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMzoxsS580 .dropdown-item.active,
.cid-uMzoxsS580 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMzoxsS580 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMzoxsS580 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMzoxsS580 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMzoxsS580 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMzoxsS580 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uMzoxsS580 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMzoxsS580 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMzoxsS580 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uMzoxsS580 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMzoxsS580 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMzoxsS580 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoxsS580 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoxsS580 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMzoxsS580 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoxsS580 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMzoxsS580 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMzoxsS580 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoxsS580 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMzoxsS580 .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-uMzoxsS580 .navbar {
    height: 70px;
  }
  .cid-uMzoxsS580 .navbar.opened {
    height: auto;
  }
  .cid-uMzoxsS580 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMzoxsS580 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uMzoxsS580 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uMzoxsS580 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMzoxsS580 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uMzoxsS580 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMzoxsS580 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMzoxsS580 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMzoxsS580 .text_widget {
  margin-bottom: 32px;
}
.cid-uMzoxsS580 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMzoxsS580 .text_widget a:hover {
  opacity: .5;
}
.cid-uMzoxsS580 .icons-menu-main {
  display: flex;
}
.cid-uMzoxsS580 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoxsS580 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoxsS580 .mbr-section-subtitle,
.cid-uMzoxsS580 .text_widget,
.cid-uMzoxsS580 .mbr-section-btn {
  text-align: center;
}
.cid-uMzoxsS580 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uMzoxtxhbN {
  padding-top: 6rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzoxtxhbN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoxtxhbN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoxtxhbN .row {
  flex-direction: row-reverse;
}
.cid-uMzoxtxhbN .mbr-description {
  text-align: center;
}
.cid-uMzoxtLxlP {
  padding-top: 8rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMzoxtLxlP .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMzoxtLxlP img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMzoxtLxlP .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-uMzoxtTbTh {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMzoxtTbTh .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoxtTbTh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoxtTbTh .row {
  flex-direction: row-reverse;
}
.cid-uMzoxtTbTh .mbr-description {
  text-align: center;
}
.cid-uMzoxtY5D0 {
  padding-top: 8rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzoxtY5D0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoxtY5D0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoxtY5D0 .row {
  flex-direction: row-reverse;
}
.cid-uMzoxtY5D0 .mbr-description {
  text-align: center;
}
.cid-uMzoxu3LVz {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uMzoxu3LVz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoxu3LVz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoxu3LVz .row {
  flex-direction: row-reverse;
}
.cid-uMzoxu3LVz .mbr-description {
  text-align: center;
}
.cid-uMzoxua2Bp {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzoxua2Bp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoxua2Bp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoxua2Bp .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uMzoxua2Bp .card {
    margin-bottom: 2rem!important;
  }
  .cid-uMzoxua2Bp .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uMzoxua2Bp .link-wrap {
    align-items: center;
  }
}
.cid-uMzoxua2Bp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMzoxua2Bp .card-title,
.cid-uMzoxua2Bp .card-box {
  text-align: left;
  color: #232323;
}
.cid-uMzoxua2Bp .mbr-text,
.cid-uMzoxua2Bp .link-wrap,
.cid-uMzoxua2Bp .mbr-section-btn {
  text-align: left;
  color: #797979;
}
.cid-uMzoxukloO {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uMzoxukloO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoxukloO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoxukloO .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMzoxukloO .image-wrap img {
    display: block;
    margin: auto;
    width: 100%;
  }
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uMzoIuz7TY .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uMzoIuz7TY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uMzoIuz7TY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMzoIuz7TY .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uMzoIuz7TY .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uMzoIuz7TY .menu_box .navbar.opened,
  .cid-uMzoIuz7TY .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMzoIuz7TY .navbar-dropdown {
  position: relative !important;
}
.cid-uMzoIuz7TY .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMzoIuz7TY .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMzoIuz7TY .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMzoIuz7TY .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMzoIuz7TY .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMzoIuz7TY .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMzoIuz7TY .offcanvas-body .mbr-text,
  .cid-uMzoIuz7TY .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uMzoIuz7TY .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uMzoIuz7TY .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMzoIuz7TY .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uMzoIuz7TY .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMzoIuz7TY .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMzoIuz7TY .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMzoIuz7TY .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMzoIuz7TY ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMzoIuz7TY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoIuz7TY .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-uMzoIuz7TY .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMzoIuz7TY li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMzoIuz7TY .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMzoIuz7TY .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uMzoIuz7TY .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMzoIuz7TY .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMzoIuz7TY .nav-item {
    margin: 0 !important;
  }
}
.cid-uMzoIuz7TY .nav-item .nav-link {
  position: relative;
}
.cid-uMzoIuz7TY .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uMzoIuz7TY .nav-item .nav-link:hover,
.cid-uMzoIuz7TY .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uMzoIuz7TY .nav-item .nav-link:hover::before,
.cid-uMzoIuz7TY .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uMzoIuz7TY .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMzoIuz7TY .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMzoIuz7TY .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMzoIuz7TY .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoIuz7TY .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-uMzoIuz7TY .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMzoIuz7TY .offcanvas_box {
    display: none;
  }
}
.cid-uMzoIuz7TY .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMzoIuz7TY .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMzoIuz7TY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMzoIuz7TY .container {
  display: flex;
  margin: auto;
}
.cid-uMzoIuz7TY .iconfont-wrapper {
  color: #1b1b1b;
  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-uMzoIuz7TY .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMzoIuz7TY .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMzoIuz7TY .navbar-caption {
  color: #ffffff;
}
.cid-uMzoIuz7TY .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMzoIuz7TY .navbar-nav {
    margin: 0;
  }
}
.cid-uMzoIuz7TY .dropdown-menu,
.cid-uMzoIuz7TY .navbar.opened {
  background-color: false !important;
}
.cid-uMzoIuz7TY .nav-item:focus,
.cid-uMzoIuz7TY .nav-link:focus {
  outline: none;
}
.cid-uMzoIuz7TY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMzoIuz7TY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMzoIuz7TY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMzoIuz7TY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMzoIuz7TY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMzoIuz7TY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMzoIuz7TY .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMzoIuz7TY .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMzoIuz7TY .navbar.opened {
  transition: all 0.3s;
}
.cid-uMzoIuz7TY .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMzoIuz7TY .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uMzoIuz7TY .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uMzoIuz7TY .navbar.collapsed {
  justify-content: center;
}
.cid-uMzoIuz7TY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMzoIuz7TY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMzoIuz7TY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMzoIuz7TY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMzoIuz7TY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMzoIuz7TY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMzoIuz7TY .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMzoIuz7TY .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMzoIuz7TY .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMzoIuz7TY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMzoIuz7TY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMzoIuz7TY .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMzoIuz7TY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMzoIuz7TY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMzoIuz7TY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMzoIuz7TY .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMzoIuz7TY .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMzoIuz7TY .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMzoIuz7TY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uMzoIuz7TY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMzoIuz7TY .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMzoIuz7TY .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMzoIuz7TY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMzoIuz7TY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMzoIuz7TY .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-uMzoIuz7TY .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMzoIuz7TY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMzoIuz7TY .dropdown-item.active,
.cid-uMzoIuz7TY .dropdown-item:active {
  background-color: transparent;
}
.cid-uMzoIuz7TY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMzoIuz7TY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMzoIuz7TY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMzoIuz7TY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMzoIuz7TY .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uMzoIuz7TY ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMzoIuz7TY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMzoIuz7TY button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uMzoIuz7TY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMzoIuz7TY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMzoIuz7TY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoIuz7TY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoIuz7TY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMzoIuz7TY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoIuz7TY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMzoIuz7TY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMzoIuz7TY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoIuz7TY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMzoIuz7TY .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-uMzoIuz7TY .navbar {
    height: 70px;
  }
  .cid-uMzoIuz7TY .navbar.opened {
    height: auto;
  }
  .cid-uMzoIuz7TY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMzoIuz7TY .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uMzoIuz7TY .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uMzoIuz7TY .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMzoIuz7TY .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uMzoIuz7TY .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMzoIuz7TY .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMzoIuz7TY .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMzoIuz7TY .text_widget {
  margin-bottom: 32px;
}
.cid-uMzoIuz7TY .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMzoIuz7TY .text_widget a:hover {
  opacity: .5;
}
.cid-uMzoIuz7TY .icons-menu-main {
  display: flex;
}
.cid-uMzoIuz7TY .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoIuz7TY .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoIuz7TY .mbr-section-subtitle,
.cid-uMzoIuz7TY .text_widget,
.cid-uMzoIuz7TY .mbr-section-btn {
  text-align: center;
}
.cid-uMzoIuz7TY a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uPdBGVDBB8 {
  padding-top: 17rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/logo-make-11-06-2024.jpg");
}
.cid-uPdBGVDBB8 .mbr-section-title {
  text-align: center;
  color: #bbbbbb;
}
.cid-uPdBGVDBB8 .mbr-text,
.cid-uPdBGVDBB8 .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uPdBGVDBB8 .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uPAFkgGKYx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uPAFkgGKYx .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uPAFkgGKYx .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAGFr6TVW {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uPAGFr6TVW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAGFr6TVW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAGFr6TVW .row {
  flex-direction: row-reverse;
}
.cid-uPAGFr6TVW .mbr-description {
  text-align: center;
}
.cid-uMzoIvlXNJ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-uMzoIvlXNJ .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uMzoIvlXNJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uMzoIvlXNJ .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-uMzoIvR93V {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzoIvR93V .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoIvR93V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoIvR93V .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-uMzoIvR93V .card {
    margin-bottom: 2rem!important;
  }
  .cid-uMzoIvR93V .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-uMzoIvR93V .link-wrap {
    align-items: center;
  }
}
.cid-uMzoIvR93V .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uMzoIvR93V .card-title,
.cid-uMzoIvR93V .card-box {
  text-align: left;
  color: #232323;
}
.cid-uMzoIvR93V .mbr-text,
.cid-uMzoIvR93V .link-wrap,
.cid-uMzoIvR93V .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uPAYvkY5dZ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uPAYvkY5dZ .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uPAYvkY5dZ .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uMzoVQ6p44 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uMzoVQ6p44 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uMzoVQ6p44 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMzoVQ6p44 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uMzoVQ6p44 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uMzoVQ6p44 .menu_box .navbar.opened,
  .cid-uMzoVQ6p44 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMzoVQ6p44 .navbar-dropdown {
  position: relative !important;
}
.cid-uMzoVQ6p44 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMzoVQ6p44 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMzoVQ6p44 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMzoVQ6p44 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMzoVQ6p44 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMzoVQ6p44 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMzoVQ6p44 .offcanvas-body .mbr-text,
  .cid-uMzoVQ6p44 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uMzoVQ6p44 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uMzoVQ6p44 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMzoVQ6p44 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uMzoVQ6p44 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMzoVQ6p44 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMzoVQ6p44 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMzoVQ6p44 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMzoVQ6p44 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMzoVQ6p44 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoVQ6p44 .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-uMzoVQ6p44 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMzoVQ6p44 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMzoVQ6p44 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMzoVQ6p44 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uMzoVQ6p44 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMzoVQ6p44 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMzoVQ6p44 .nav-item {
    margin: 0 !important;
  }
}
.cid-uMzoVQ6p44 .nav-item .nav-link {
  position: relative;
}
.cid-uMzoVQ6p44 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uMzoVQ6p44 .nav-item .nav-link:hover,
.cid-uMzoVQ6p44 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uMzoVQ6p44 .nav-item .nav-link:hover::before,
.cid-uMzoVQ6p44 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uMzoVQ6p44 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMzoVQ6p44 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMzoVQ6p44 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMzoVQ6p44 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzoVQ6p44 .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-uMzoVQ6p44 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMzoVQ6p44 .offcanvas_box {
    display: none;
  }
}
.cid-uMzoVQ6p44 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMzoVQ6p44 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMzoVQ6p44 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMzoVQ6p44 .container {
  display: flex;
  margin: auto;
}
.cid-uMzoVQ6p44 .iconfont-wrapper {
  color: #1b1b1b;
  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-uMzoVQ6p44 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMzoVQ6p44 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMzoVQ6p44 .navbar-caption {
  color: #ffffff;
}
.cid-uMzoVQ6p44 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMzoVQ6p44 .navbar-nav {
    margin: 0;
  }
}
.cid-uMzoVQ6p44 .dropdown-menu,
.cid-uMzoVQ6p44 .navbar.opened {
  background-color: false !important;
}
.cid-uMzoVQ6p44 .nav-item:focus,
.cid-uMzoVQ6p44 .nav-link:focus {
  outline: none;
}
.cid-uMzoVQ6p44 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMzoVQ6p44 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMzoVQ6p44 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMzoVQ6p44 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMzoVQ6p44 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMzoVQ6p44 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMzoVQ6p44 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMzoVQ6p44 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMzoVQ6p44 .navbar.opened {
  transition: all 0.3s;
}
.cid-uMzoVQ6p44 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMzoVQ6p44 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uMzoVQ6p44 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uMzoVQ6p44 .navbar.collapsed {
  justify-content: center;
}
.cid-uMzoVQ6p44 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMzoVQ6p44 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMzoVQ6p44 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMzoVQ6p44 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMzoVQ6p44 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMzoVQ6p44 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMzoVQ6p44 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMzoVQ6p44 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMzoVQ6p44 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMzoVQ6p44 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMzoVQ6p44 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMzoVQ6p44 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMzoVQ6p44 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMzoVQ6p44 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMzoVQ6p44 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMzoVQ6p44 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMzoVQ6p44 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMzoVQ6p44 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMzoVQ6p44 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uMzoVQ6p44 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMzoVQ6p44 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMzoVQ6p44 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMzoVQ6p44 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMzoVQ6p44 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMzoVQ6p44 .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-uMzoVQ6p44 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMzoVQ6p44 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMzoVQ6p44 .dropdown-item.active,
.cid-uMzoVQ6p44 .dropdown-item:active {
  background-color: transparent;
}
.cid-uMzoVQ6p44 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMzoVQ6p44 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMzoVQ6p44 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMzoVQ6p44 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMzoVQ6p44 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uMzoVQ6p44 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMzoVQ6p44 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMzoVQ6p44 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uMzoVQ6p44 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMzoVQ6p44 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMzoVQ6p44 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoVQ6p44 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzoVQ6p44 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMzoVQ6p44 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoVQ6p44 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMzoVQ6p44 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMzoVQ6p44 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzoVQ6p44 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMzoVQ6p44 .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-uMzoVQ6p44 .navbar {
    height: 70px;
  }
  .cid-uMzoVQ6p44 .navbar.opened {
    height: auto;
  }
  .cid-uMzoVQ6p44 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMzoVQ6p44 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uMzoVQ6p44 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uMzoVQ6p44 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMzoVQ6p44 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uMzoVQ6p44 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMzoVQ6p44 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMzoVQ6p44 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMzoVQ6p44 .text_widget {
  margin-bottom: 32px;
}
.cid-uMzoVQ6p44 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMzoVQ6p44 .text_widget a:hover {
  opacity: .5;
}
.cid-uMzoVQ6p44 .icons-menu-main {
  display: flex;
}
.cid-uMzoVQ6p44 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoVQ6p44 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMzoVQ6p44 .mbr-section-subtitle,
.cid-uMzoVQ6p44 .text_widget,
.cid-uMzoVQ6p44 .mbr-section-btn {
  text-align: center;
}
.cid-uMzoVQ6p44 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOsFugOiLH {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsFugOiLH .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsFugOiLH .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uMzoVQKIRJ {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMzoVQKIRJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoVQKIRJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoVQKIRJ .row {
  flex-direction: row-reverse;
}
.cid-uMzoVQKIRJ .mbr-description {
  text-align: center;
}
.cid-uMzoVR0GBr {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uMzoVR0GBr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzoVR0GBr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzoVR0GBr .row {
  flex-direction: row-reverse;
}
.cid-uMzoVR0GBr .mbr-description {
  text-align: center;
}
.cid-uNXCOrSwCU {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uNXCOrSwCU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNXCOrSwCU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNXCOrSwCU .row {
  flex-direction: row-reverse;
}
.cid-uNXCOrSwCU .mbr-description {
  text-align: center;
}
.cid-uNXR7MzXd3 {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uNXR7MzXd3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNXR7MzXd3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uNXR7MzXd3 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNXR7MzXd3 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNXR7MzXd3 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uNXYRqLW4i {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uNXYRqLW4i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNXYRqLW4i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uNXYRqLW4i .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uNXYRqLW4i .row {
  flex-direction: row-reverse;
}
.cid-uNXYRqLW4i img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uNXYRqLW4i .text-wrapper {
    padding: 2rem;
  }
}
.cid-uNXYRqLW4i .mbr-text {
  text-align: left;
}
.cid-uNYO46r6ia {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uNYO46r6ia .column-wrapper {
  padding-left: 1.5rem;
}
.cid-uNYO46r6ia .text-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 28rem;
}
@media (min-width: 992px) {
  .cid-uNYO46r6ia .text-wrapper {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.cid-uNYO46r6ia .mbr-section-title {
  text-align: left;
  margin-bottom: 1.5rem;
  color: #000000;
}
.cid-uNYO46r6ia .mbr-text,
.cid-uNYO46r6ia .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-uNYO46r6ia .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uNYO46r6ia .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNYO46r6ia .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZ5Y3BTO0 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uNZ5Y3BTO0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZ5Y3BTO0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZ5Y3BTO0 .row {
  flex-direction: row-reverse;
}
.cid-uNZ5Y3BTO0 .mbr-description {
  text-align: center;
}
.cid-uNZbBGeWpm {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uNZbBGeWpm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uNZbBGeWpm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uNZbBGeWpm .row {
  flex-direction: row-reverse;
}
.cid-uNZbBGeWpm .mbr-description {
  text-align: center;
}
.cid-uOsEGs6DmM {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsEGs6DmM .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsEGs6DmM .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uMzp6Pp75K .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uMzp6Pp75K .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uMzp6Pp75K .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uMzp6Pp75K .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uMzp6Pp75K .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uMzp6Pp75K .menu_box .navbar.opened,
  .cid-uMzp6Pp75K .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uMzp6Pp75K .navbar-dropdown {
  position: relative !important;
}
.cid-uMzp6Pp75K .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uMzp6Pp75K .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uMzp6Pp75K .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uMzp6Pp75K .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uMzp6Pp75K .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uMzp6Pp75K .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uMzp6Pp75K .offcanvas-body .mbr-text,
  .cid-uMzp6Pp75K .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uMzp6Pp75K .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uMzp6Pp75K .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uMzp6Pp75K .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uMzp6Pp75K .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uMzp6Pp75K .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uMzp6Pp75K .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uMzp6Pp75K .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uMzp6Pp75K ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uMzp6Pp75K .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzp6Pp75K .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-uMzp6Pp75K .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uMzp6Pp75K li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uMzp6Pp75K .lg_brand {
    margin: 0 1rem;
  }
  .cid-uMzp6Pp75K .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uMzp6Pp75K .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uMzp6Pp75K .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uMzp6Pp75K .nav-item {
    margin: 0 !important;
  }
}
.cid-uMzp6Pp75K .nav-item .nav-link {
  position: relative;
}
.cid-uMzp6Pp75K .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uMzp6Pp75K .nav-item .nav-link:hover,
.cid-uMzp6Pp75K .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uMzp6Pp75K .nav-item .nav-link:hover::before,
.cid-uMzp6Pp75K .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uMzp6Pp75K .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uMzp6Pp75K .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uMzp6Pp75K .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uMzp6Pp75K .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uMzp6Pp75K .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-uMzp6Pp75K .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uMzp6Pp75K .offcanvas_box {
    display: none;
  }
}
.cid-uMzp6Pp75K .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uMzp6Pp75K .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uMzp6Pp75K .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uMzp6Pp75K .container {
  display: flex;
  margin: auto;
}
.cid-uMzp6Pp75K .iconfont-wrapper {
  color: #1b1b1b;
  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-uMzp6Pp75K .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uMzp6Pp75K .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uMzp6Pp75K .navbar-caption {
  color: #ffffff;
}
.cid-uMzp6Pp75K .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uMzp6Pp75K .navbar-nav {
    margin: 0;
  }
}
.cid-uMzp6Pp75K .dropdown-menu,
.cid-uMzp6Pp75K .navbar.opened {
  background-color: false !important;
}
.cid-uMzp6Pp75K .nav-item:focus,
.cid-uMzp6Pp75K .nav-link:focus {
  outline: none;
}
.cid-uMzp6Pp75K .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uMzp6Pp75K .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uMzp6Pp75K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uMzp6Pp75K .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uMzp6Pp75K .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uMzp6Pp75K .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uMzp6Pp75K .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uMzp6Pp75K .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uMzp6Pp75K .navbar.opened {
  transition: all 0.3s;
}
.cid-uMzp6Pp75K .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uMzp6Pp75K .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uMzp6Pp75K .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uMzp6Pp75K .navbar.collapsed {
  justify-content: center;
}
.cid-uMzp6Pp75K .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uMzp6Pp75K .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uMzp6Pp75K .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uMzp6Pp75K .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uMzp6Pp75K .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uMzp6Pp75K .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uMzp6Pp75K .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uMzp6Pp75K .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uMzp6Pp75K .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uMzp6Pp75K .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uMzp6Pp75K .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uMzp6Pp75K .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uMzp6Pp75K .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uMzp6Pp75K .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uMzp6Pp75K .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uMzp6Pp75K .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uMzp6Pp75K .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uMzp6Pp75K .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uMzp6Pp75K .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uMzp6Pp75K .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uMzp6Pp75K .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uMzp6Pp75K .navbar.navbar-short {
  min-height: 60px;
}
.cid-uMzp6Pp75K .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uMzp6Pp75K .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uMzp6Pp75K .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-uMzp6Pp75K .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uMzp6Pp75K .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uMzp6Pp75K .dropdown-item.active,
.cid-uMzp6Pp75K .dropdown-item:active {
  background-color: transparent;
}
.cid-uMzp6Pp75K .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uMzp6Pp75K .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uMzp6Pp75K .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uMzp6Pp75K .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uMzp6Pp75K .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uMzp6Pp75K ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uMzp6Pp75K .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uMzp6Pp75K button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uMzp6Pp75K button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uMzp6Pp75K button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uMzp6Pp75K button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzp6Pp75K button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uMzp6Pp75K button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uMzp6Pp75K nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzp6Pp75K nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uMzp6Pp75K nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uMzp6Pp75K nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uMzp6Pp75K a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uMzp6Pp75K .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-uMzp6Pp75K .navbar {
    height: 70px;
  }
  .cid-uMzp6Pp75K .navbar.opened {
    height: auto;
  }
  .cid-uMzp6Pp75K .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uMzp6Pp75K .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uMzp6Pp75K .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uMzp6Pp75K .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uMzp6Pp75K .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uMzp6Pp75K .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uMzp6Pp75K .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uMzp6Pp75K .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uMzp6Pp75K .text_widget {
  margin-bottom: 32px;
}
.cid-uMzp6Pp75K .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uMzp6Pp75K .text_widget a:hover {
  opacity: .5;
}
.cid-uMzp6Pp75K .icons-menu-main {
  display: flex;
}
.cid-uMzp6Pp75K .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uMzp6Pp75K .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uMzp6Pp75K .mbr-section-subtitle,
.cid-uMzp6Pp75K .text_widget,
.cid-uMzp6Pp75K .mbr-section-btn {
  text-align: center;
}
.cid-uMzp6Pp75K a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOqYq5Dlfm {
  padding-top: 17rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/ems.png");
}
.cid-uOqYq5Dlfm .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uOqYq5Dlfm .mbr-text,
.cid-uOqYq5Dlfm .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uOqYq5Dlfm .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uOsGAh8TtT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsGAh8TtT .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsGAh8TtT .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uOqWTQt80d {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOqWTQt80d .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOqWTQt80d .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOqWTQt80d .row {
  flex-direction: row-reverse;
}
.cid-uOqWTQt80d .mbr-description {
  text-align: center;
}
.cid-uMzp6Q63W5 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uMzp6Q63W5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uMzp6Q63W5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uMzp6Q63W5 .row {
  flex-direction: row-reverse;
}
.cid-uMzp6Q63W5 .mbr-description {
  text-align: center;
}
.cid-uQjZJmXO4x {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uQjZJmXO4x .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQjZJmXO4x .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uQjZJmXO4x .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uQjZJmXO4x img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uQjZJmXO4x .text-wrapper {
    padding: 2rem;
  }
}
.cid-uR06M1ZIwf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR06M1ZIwf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR06M1ZIwf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR06M1ZIwf .row {
  flex-direction: row-reverse;
}
.cid-uR06M1ZIwf .mbr-description {
  text-align: center;
}
.cid-uR0hCuoPcG {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-uR0hCuoPcG .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0hCuoPcG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0hCuoPcG .row {
  flex-direction: row-reverse;
}
.cid-uR0hCuoPcG .mbr-description {
  text-align: center;
}
.cid-uR0aCabzm4 {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-uR0aCabzm4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR0aCabzm4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR0aCabzm4 .row {
  flex-direction: row-reverse;
}
.cid-uR0aCabzm4 .mbr-description {
  text-align: center;
}
.cid-uOsETjzzgL {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsETjzzgL .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsETjzzgL .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uOrYUaQrDX .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uOrYUaQrDX .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uOrYUaQrDX .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOrYUaQrDX .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOrYUaQrDX .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uOrYUaQrDX .menu_box .navbar.opened,
  .cid-uOrYUaQrDX .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uOrYUaQrDX .navbar-dropdown {
  position: relative !important;
}
.cid-uOrYUaQrDX .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uOrYUaQrDX .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uOrYUaQrDX .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uOrYUaQrDX .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uOrYUaQrDX .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uOrYUaQrDX .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uOrYUaQrDX .offcanvas-body .mbr-text,
  .cid-uOrYUaQrDX .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uOrYUaQrDX .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uOrYUaQrDX .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uOrYUaQrDX .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uOrYUaQrDX .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uOrYUaQrDX .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uOrYUaQrDX .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uOrYUaQrDX .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uOrYUaQrDX ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uOrYUaQrDX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOrYUaQrDX .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-uOrYUaQrDX .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uOrYUaQrDX li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uOrYUaQrDX .lg_brand {
    margin: 0 1rem;
  }
  .cid-uOrYUaQrDX .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uOrYUaQrDX .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uOrYUaQrDX .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uOrYUaQrDX .nav-item {
    margin: 0 !important;
  }
}
.cid-uOrYUaQrDX .nav-item .nav-link {
  position: relative;
}
.cid-uOrYUaQrDX .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uOrYUaQrDX .nav-item .nav-link:hover,
.cid-uOrYUaQrDX .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uOrYUaQrDX .nav-item .nav-link:hover::before,
.cid-uOrYUaQrDX .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uOrYUaQrDX .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOrYUaQrDX .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uOrYUaQrDX .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uOrYUaQrDX .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOrYUaQrDX .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-uOrYUaQrDX .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uOrYUaQrDX .offcanvas_box {
    display: none;
  }
}
.cid-uOrYUaQrDX .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uOrYUaQrDX .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uOrYUaQrDX .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uOrYUaQrDX .container {
  display: flex;
  margin: auto;
}
.cid-uOrYUaQrDX .iconfont-wrapper {
  color: #1b1b1b;
  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-uOrYUaQrDX .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uOrYUaQrDX .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uOrYUaQrDX .navbar-caption {
  color: #ffffff;
}
.cid-uOrYUaQrDX .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uOrYUaQrDX .navbar-nav {
    margin: 0;
  }
}
.cid-uOrYUaQrDX .dropdown-menu,
.cid-uOrYUaQrDX .navbar.opened {
  background-color: false !important;
}
.cid-uOrYUaQrDX .nav-item:focus,
.cid-uOrYUaQrDX .nav-link:focus {
  outline: none;
}
.cid-uOrYUaQrDX .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOrYUaQrDX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOrYUaQrDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOrYUaQrDX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOrYUaQrDX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOrYUaQrDX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOrYUaQrDX .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uOrYUaQrDX .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uOrYUaQrDX .navbar.opened {
  transition: all 0.3s;
}
.cid-uOrYUaQrDX .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uOrYUaQrDX .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uOrYUaQrDX .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uOrYUaQrDX .navbar.collapsed {
  justify-content: center;
}
.cid-uOrYUaQrDX .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOrYUaQrDX .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOrYUaQrDX .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOrYUaQrDX .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOrYUaQrDX .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOrYUaQrDX .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uOrYUaQrDX .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uOrYUaQrDX .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uOrYUaQrDX .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uOrYUaQrDX .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOrYUaQrDX .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOrYUaQrDX .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uOrYUaQrDX .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOrYUaQrDX .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uOrYUaQrDX .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOrYUaQrDX .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uOrYUaQrDX .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uOrYUaQrDX .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uOrYUaQrDX .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uOrYUaQrDX .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOrYUaQrDX .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uOrYUaQrDX .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOrYUaQrDX .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOrYUaQrDX .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOrYUaQrDX .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-uOrYUaQrDX .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uOrYUaQrDX .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOrYUaQrDX .dropdown-item.active,
.cid-uOrYUaQrDX .dropdown-item:active {
  background-color: transparent;
}
.cid-uOrYUaQrDX .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOrYUaQrDX .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOrYUaQrDX .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOrYUaQrDX .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOrYUaQrDX .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uOrYUaQrDX ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uOrYUaQrDX .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOrYUaQrDX button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uOrYUaQrDX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOrYUaQrDX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOrYUaQrDX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOrYUaQrDX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOrYUaQrDX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOrYUaQrDX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOrYUaQrDX nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOrYUaQrDX nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOrYUaQrDX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOrYUaQrDX a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uOrYUaQrDX .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-uOrYUaQrDX .navbar {
    height: 70px;
  }
  .cid-uOrYUaQrDX .navbar.opened {
    height: auto;
  }
  .cid-uOrYUaQrDX .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOrYUaQrDX .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uOrYUaQrDX .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uOrYUaQrDX .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uOrYUaQrDX .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uOrYUaQrDX .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uOrYUaQrDX .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOrYUaQrDX .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uOrYUaQrDX .text_widget {
  margin-bottom: 32px;
}
.cid-uOrYUaQrDX .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uOrYUaQrDX .text_widget a:hover {
  opacity: .5;
}
.cid-uOrYUaQrDX .icons-menu-main {
  display: flex;
}
.cid-uOrYUaQrDX .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uOrYUaQrDX .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uOrYUaQrDX .mbr-section-subtitle,
.cid-uOrYUaQrDX .text_widget,
.cid-uOrYUaQrDX .mbr-section-btn {
  text-align: center;
}
.cid-uOrYUaQrDX a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOsfF8jih8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsfF8jih8 .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uOsfF8jih8 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uOrYUcl5tQ {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uOrYUcl5tQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOrYUcl5tQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOrYUcl5tQ .mbr-section-title {
  color: #353535;
}
.cid-uPdIaFoW0B {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #fafafa;
}
.cid-uPdIaFoW0B .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPdIaFoW0B .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uPdIaFoW0B .container {
    padding: 0 20px;
  }
}
.cid-uPdIaFoW0B .row {
  justify-content: center;
}
.cid-uPdIaFoW0B .title-wrapper .mbr-section-subtitle {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .cid-uPdIaFoW0B .title-wrapper .mbr-section-subtitle {
    margin-bottom: 10px;
  }
}
.cid-uPdIaFoW0B .title-wrapper .title-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 45px;
  margin-bottom: 50px;
  border-bottom: 2px solid #000000;
}
@media (max-width: 768px) {
  .cid-uPdIaFoW0B .title-wrapper .title-wrap {
    display: block;
    padding-bottom: 20px;
    margin-bottom: 30px;
  }
}
.cid-uPdIaFoW0B .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .cid-uPdIaFoW0B .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 10px;
  }
}
.cid-uPdIaFoW0B .title-wrapper .title-wrap .mbr-section-btn .btn {
  border: none;
  padding: 0;
  min-width: 92px;
}
.cid-uPdIaFoW0B .title-wrapper .title-wrap .mbr-section-btn .btn:hover,
.cid-uPdIaFoW0B .title-wrapper .title-wrap .mbr-section-btn .btn:focus {
  background-color: transparent !important;
  color: #000000 !important;
  opacity: .5;
}
.cid-uPdIaFoW0B .title-wrapper .title-wrap .mbr-section-btn .btn .mbr-iconfont {
  margin-left: 18px;
}
.cid-uPdIaFoW0B .item {
  margin-bottom: 32px;
}
.cid-uPdIaFoW0B .item a:hover .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-uPdIaFoW0B .item a:hover .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  background-color: #161616;
}
.cid-uPdIaFoW0B .item a:hover .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(0);
}
.cid-uPdIaFoW0B .item a:hover .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  opacity: 1;
}
.cid-uPdIaFoW0B .item a .item-wrapper {
  overflow: hidden;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img {
  position: relative;
  height: 460px;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: all 0.3s ease-out;
  pointer-events: visible;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img::before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(180deg, transparent, #000000);
  opacity: .8;
  pointer-events: none;
  z-index: 1;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content {
    padding: 25px;
  }
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .subtitle-wrap {
  pointer-events: visible;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .subtitle-wrap .item-subtitle {
  display: inline-flex;
  padding: 4px 18px;
  margin-bottom: 6px;
  background-color: #b29fe9;
  transition: all 0.3s ease-out;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .title-wrap {
  transform: translateY(40px);
  transition: all 0.3s ease-out;
  pointer-events: visible;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .title-wrap .item-title {
  margin-bottom: 16px;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap {
  display: inline-flex;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .mbr-iconfont {
  margin-right: 14px;
  color: #c8d814;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .title-wrap .desc-wrapper .desc-wrap .item-desc {
  margin-bottom: 0;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link {
  display: inline-flex;
  opacity: 0;
  margin: 16px 0 0 0;
  transition: all 0.3s ease-out;
}
.cid-uPdIaFoW0B .item a .item-wrapper .item-img .item-content .title-wrap .link-wrap .item-link .mbr-iconfont {
  margin-left: 6px;
}
.cid-uPdIaFoW0B .mbr-section-title {
  color: #000000;
}
.cid-uPdIaFoW0B .mbr-section-subtitle {
  color: #000000;
}
.cid-uPdIaFoW0B .item-title {
  color: #ffffff;
}
.cid-uPdIaFoW0B .item-subtitle {
  color: #ffffff;
}
.cid-uPdIaFoW0B .item-desc {
  color: #D2D3D5;
}
.cid-uPdIaFoW0B .item-link {
  color: #ffffff;
}
.cid-uOsfvcFPkE {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uOsfvcFPkE .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uOsfvcFPkE .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uQlFZBEWDK .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uQlFZBEWDK .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uQlFZBEWDK .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQlFZBEWDK .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uQlFZBEWDK .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uQlFZBEWDK .menu_box .navbar.opened,
  .cid-uQlFZBEWDK .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uQlFZBEWDK .navbar-dropdown {
  position: relative !important;
}
.cid-uQlFZBEWDK .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uQlFZBEWDK .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uQlFZBEWDK .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uQlFZBEWDK .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uQlFZBEWDK .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uQlFZBEWDK .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uQlFZBEWDK .offcanvas-body .mbr-text,
  .cid-uQlFZBEWDK .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uQlFZBEWDK .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uQlFZBEWDK .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uQlFZBEWDK .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uQlFZBEWDK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uQlFZBEWDK .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uQlFZBEWDK .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uQlFZBEWDK .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uQlFZBEWDK ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uQlFZBEWDK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQlFZBEWDK .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-uQlFZBEWDK .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uQlFZBEWDK li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uQlFZBEWDK .lg_brand {
    margin: 0 1rem;
  }
  .cid-uQlFZBEWDK .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uQlFZBEWDK .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uQlFZBEWDK .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uQlFZBEWDK .nav-item {
    margin: 0 !important;
  }
}
.cid-uQlFZBEWDK .nav-item .nav-link {
  position: relative;
}
.cid-uQlFZBEWDK .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uQlFZBEWDK .nav-item .nav-link:hover,
.cid-uQlFZBEWDK .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uQlFZBEWDK .nav-item .nav-link:hover::before,
.cid-uQlFZBEWDK .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uQlFZBEWDK .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQlFZBEWDK .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uQlFZBEWDK .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uQlFZBEWDK .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQlFZBEWDK .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-uQlFZBEWDK .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uQlFZBEWDK .offcanvas_box {
    display: none;
  }
}
.cid-uQlFZBEWDK .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uQlFZBEWDK .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uQlFZBEWDK .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uQlFZBEWDK .container {
  display: flex;
  margin: auto;
}
.cid-uQlFZBEWDK .iconfont-wrapper {
  color: #1b1b1b;
  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-uQlFZBEWDK .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uQlFZBEWDK .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uQlFZBEWDK .navbar-caption {
  color: #ffffff;
}
.cid-uQlFZBEWDK .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uQlFZBEWDK .navbar-nav {
    margin: 0;
  }
}
.cid-uQlFZBEWDK .dropdown-menu,
.cid-uQlFZBEWDK .navbar.opened {
  background-color: false !important;
}
.cid-uQlFZBEWDK .nav-item:focus,
.cid-uQlFZBEWDK .nav-link:focus {
  outline: none;
}
.cid-uQlFZBEWDK .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQlFZBEWDK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQlFZBEWDK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQlFZBEWDK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQlFZBEWDK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQlFZBEWDK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQlFZBEWDK .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uQlFZBEWDK .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uQlFZBEWDK .navbar.opened {
  transition: all 0.3s;
}
.cid-uQlFZBEWDK .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uQlFZBEWDK .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uQlFZBEWDK .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uQlFZBEWDK .navbar.collapsed {
  justify-content: center;
}
.cid-uQlFZBEWDK .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQlFZBEWDK .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQlFZBEWDK .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQlFZBEWDK .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQlFZBEWDK .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQlFZBEWDK .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uQlFZBEWDK .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uQlFZBEWDK .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uQlFZBEWDK .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uQlFZBEWDK .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQlFZBEWDK .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQlFZBEWDK .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uQlFZBEWDK .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQlFZBEWDK .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uQlFZBEWDK .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQlFZBEWDK .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uQlFZBEWDK .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uQlFZBEWDK .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uQlFZBEWDK .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uQlFZBEWDK .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQlFZBEWDK .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uQlFZBEWDK .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQlFZBEWDK .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQlFZBEWDK .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQlFZBEWDK .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-uQlFZBEWDK .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uQlFZBEWDK .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQlFZBEWDK .dropdown-item.active,
.cid-uQlFZBEWDK .dropdown-item:active {
  background-color: transparent;
}
.cid-uQlFZBEWDK .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQlFZBEWDK .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQlFZBEWDK .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQlFZBEWDK .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQlFZBEWDK .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uQlFZBEWDK ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uQlFZBEWDK .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQlFZBEWDK button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uQlFZBEWDK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uQlFZBEWDK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQlFZBEWDK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQlFZBEWDK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQlFZBEWDK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQlFZBEWDK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQlFZBEWDK nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQlFZBEWDK nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQlFZBEWDK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQlFZBEWDK a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uQlFZBEWDK .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-uQlFZBEWDK .navbar {
    height: 70px;
  }
  .cid-uQlFZBEWDK .navbar.opened {
    height: auto;
  }
  .cid-uQlFZBEWDK .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQlFZBEWDK .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uQlFZBEWDK .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uQlFZBEWDK .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uQlFZBEWDK .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uQlFZBEWDK .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uQlFZBEWDK .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uQlFZBEWDK .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uQlFZBEWDK .text_widget {
  margin-bottom: 32px;
}
.cid-uQlFZBEWDK .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uQlFZBEWDK .text_widget a:hover {
  opacity: .5;
}
.cid-uQlFZBEWDK .icons-menu-main {
  display: flex;
}
.cid-uQlFZBEWDK .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uQlFZBEWDK .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uQlFZBEWDK .mbr-section-subtitle,
.cid-uQlFZBEWDK .text_widget,
.cid-uQlFZBEWDK .mbr-section-btn {
  text-align: center;
}
.cid-uQlFZBEWDK a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uQlFZCBiRF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uQlFZCBiRF .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uQlFZCBiRF .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQlFZCMuMZ {
  padding-top: 4rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uQlFZCMuMZ .mbr-text {
  text-align: center;
  color: #232323;
}
.cid-uQlFZCMuMZ .mbr-section-title {
  text-align: center;
  color: #232323;
}
.cid-uQlFZCMuMZ .mbr-section-subtitle {
  text-align: center;
}
.cid-uQU6FKaJMu {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQU6FKaJMu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQU6FKaJMu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQU6FKaJMu .mbr-section-title {
  color: #232323;
}
.cid-uQlFZCSG66 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQlFZCSG66 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQlFZCSG66 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQlFZCSG66 .row {
  flex-direction: row-reverse;
}
.cid-uQlFZCSG66 .mbr-description {
  text-align: left;
}
.cid-uQTba5ddnQ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQTba5ddnQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQTba5ddnQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQTba5ddnQ .row {
  flex-direction: row-reverse;
}
.cid-uQTba5ddnQ .mbr-description {
  text-align: left;
}
.cid-uQTblA3UXZ {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQTblA3UXZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQTblA3UXZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQTblA3UXZ .row {
  flex-direction: row-reverse;
}
.cid-uQTblA3UXZ .mbr-description {
  text-align: left;
}
.cid-uQTbqwBiL5 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uQTbqwBiL5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQTbqwBiL5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQTbqwBiL5 .row {
  flex-direction: row-reverse;
}
.cid-uQTbqwBiL5 .mbr-description {
  text-align: left;
}
.cid-uQlFZDuoKU {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uQlFZDuoKU .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uQlFZDuoKU .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQlFZDAu94 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uQlFZDAu94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQlFZDAu94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQlFZDAu94 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uQlFZDAu94 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uQlFZDAu94 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uQlFZDAu94 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uQlFZDAu94 .container {
    max-width: 100%;
  }
  .cid-uQlFZDAu94 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uQlFZDAu94 .item-wrap {
  width: 100%;
}
.cid-uQlFZDAu94 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uQlFZDAu94 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uQlFZDAu94 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uQlFZDAu94 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uQlFZDAu94 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uQlFZDAu94 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uQlFZDAu94 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uQlFZDAu94 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uQlFZDAu94 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uQlFZDAu94 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uQlFZDAu94 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uQlFZDAu94 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uQlFZDAu94 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uQlFZDAu94 .col-links {
    padding-top: 20px;
  }
}
.cid-uQlFZDAu94 .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uQlFZDAu94 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uQlFZDAu94 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uQlFZDAu94 .list {
    text-align: center !important;
  }
}
.cid-uQlFZDAu94 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uQlFZDAu94 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uQlFZDAu94 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uQlFZDAu94 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uQlFZDAu94 .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uQlFZDAu94 .list a:hover:before {
  width: 100%;
}
.cid-uQlFZDAu94 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uQlFZDAu94 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uQlFZDAu94 .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uQlFZDAu94 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uQwFoJp6mF .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uQwFoJp6mF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uQwFoJp6mF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQwFoJp6mF .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uQwFoJp6mF .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uQwFoJp6mF .menu_box .navbar.opened,
  .cid-uQwFoJp6mF .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uQwFoJp6mF .navbar-dropdown {
  position: relative !important;
}
.cid-uQwFoJp6mF .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uQwFoJp6mF .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uQwFoJp6mF .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uQwFoJp6mF .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uQwFoJp6mF .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uQwFoJp6mF .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uQwFoJp6mF .offcanvas-body .mbr-text,
  .cid-uQwFoJp6mF .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uQwFoJp6mF .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uQwFoJp6mF .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uQwFoJp6mF .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uQwFoJp6mF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uQwFoJp6mF .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uQwFoJp6mF .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uQwFoJp6mF .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uQwFoJp6mF ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uQwFoJp6mF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQwFoJp6mF .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-uQwFoJp6mF .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uQwFoJp6mF li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uQwFoJp6mF .lg_brand {
    margin: 0 1rem;
  }
  .cid-uQwFoJp6mF .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uQwFoJp6mF .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uQwFoJp6mF .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uQwFoJp6mF .nav-item {
    margin: 0 !important;
  }
}
.cid-uQwFoJp6mF .nav-item .nav-link {
  position: relative;
}
.cid-uQwFoJp6mF .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uQwFoJp6mF .nav-item .nav-link:hover,
.cid-uQwFoJp6mF .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uQwFoJp6mF .nav-item .nav-link:hover::before,
.cid-uQwFoJp6mF .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uQwFoJp6mF .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQwFoJp6mF .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uQwFoJp6mF .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uQwFoJp6mF .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQwFoJp6mF .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-uQwFoJp6mF .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uQwFoJp6mF .offcanvas_box {
    display: none;
  }
}
.cid-uQwFoJp6mF .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uQwFoJp6mF .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uQwFoJp6mF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uQwFoJp6mF .container {
  display: flex;
  margin: auto;
}
.cid-uQwFoJp6mF .iconfont-wrapper {
  color: #1b1b1b;
  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-uQwFoJp6mF .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uQwFoJp6mF .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uQwFoJp6mF .navbar-caption {
  color: #ffffff;
}
.cid-uQwFoJp6mF .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uQwFoJp6mF .navbar-nav {
    margin: 0;
  }
}
.cid-uQwFoJp6mF .dropdown-menu,
.cid-uQwFoJp6mF .navbar.opened {
  background-color: false !important;
}
.cid-uQwFoJp6mF .nav-item:focus,
.cid-uQwFoJp6mF .nav-link:focus {
  outline: none;
}
.cid-uQwFoJp6mF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQwFoJp6mF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQwFoJp6mF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQwFoJp6mF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQwFoJp6mF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQwFoJp6mF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQwFoJp6mF .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uQwFoJp6mF .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uQwFoJp6mF .navbar.opened {
  transition: all 0.3s;
}
.cid-uQwFoJp6mF .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uQwFoJp6mF .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uQwFoJp6mF .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uQwFoJp6mF .navbar.collapsed {
  justify-content: center;
}
.cid-uQwFoJp6mF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQwFoJp6mF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQwFoJp6mF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQwFoJp6mF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQwFoJp6mF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQwFoJp6mF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uQwFoJp6mF .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uQwFoJp6mF .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uQwFoJp6mF .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uQwFoJp6mF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQwFoJp6mF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQwFoJp6mF .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uQwFoJp6mF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQwFoJp6mF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uQwFoJp6mF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQwFoJp6mF .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uQwFoJp6mF .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uQwFoJp6mF .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uQwFoJp6mF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uQwFoJp6mF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQwFoJp6mF .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uQwFoJp6mF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQwFoJp6mF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQwFoJp6mF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQwFoJp6mF .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-uQwFoJp6mF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uQwFoJp6mF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQwFoJp6mF .dropdown-item.active,
.cid-uQwFoJp6mF .dropdown-item:active {
  background-color: transparent;
}
.cid-uQwFoJp6mF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQwFoJp6mF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQwFoJp6mF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQwFoJp6mF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQwFoJp6mF .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uQwFoJp6mF ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uQwFoJp6mF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQwFoJp6mF button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uQwFoJp6mF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uQwFoJp6mF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQwFoJp6mF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQwFoJp6mF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQwFoJp6mF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQwFoJp6mF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQwFoJp6mF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQwFoJp6mF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQwFoJp6mF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQwFoJp6mF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uQwFoJp6mF .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-uQwFoJp6mF .navbar {
    height: 70px;
  }
  .cid-uQwFoJp6mF .navbar.opened {
    height: auto;
  }
  .cid-uQwFoJp6mF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQwFoJp6mF .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uQwFoJp6mF .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uQwFoJp6mF .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uQwFoJp6mF .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uQwFoJp6mF .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uQwFoJp6mF .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uQwFoJp6mF .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uQwFoJp6mF .text_widget {
  margin-bottom: 32px;
}
.cid-uQwFoJp6mF .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uQwFoJp6mF .text_widget a:hover {
  opacity: .5;
}
.cid-uQwFoJp6mF .icons-menu-main {
  display: flex;
}
.cid-uQwFoJp6mF .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uQwFoJp6mF .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uQwFoJp6mF .mbr-section-subtitle,
.cid-uQwFoJp6mF .text_widget,
.cid-uQwFoJp6mF .mbr-section-btn {
  text-align: center;
}
.cid-uQwFoJp6mF a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uQwFoKm8sn {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uQwFoKm8sn .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uQwFoKm8sn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQwFoKySJo {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uQwFoKySJo .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uQwFoKySJo .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQwFoKHDCb {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uQwFoKHDCb .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-uQwFoKT3bY {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
@media (max-width: 991px) {
  .cid-uQwFoKT3bY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-uQwFoKT3bY img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uQwFoKT3bY .text-wrapper {
    margin-left: 3rem;
    padding: 2rem;
  }
}
.cid-uQwHxfD5dS {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-uQwHxfD5dS .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQwHxfD5dS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQwHxfD5dS .item {
  padding-bottom: 2rem;
}
.cid-uQwHxfD5dS .item-wrapper {
  position: relative;
}
.cid-uQwHxfD5dS .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uQwHxfD5dS .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uQwHxfD5dS .carousel-control,
.cid-uQwHxfD5dS .close {
  background: #1b1b1b;
}
.cid-uQwHxfD5dS .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uQwHxfD5dS .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uQwHxfD5dS .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uQwHxfD5dS .carousel-control-next span {
  margin-left: 5px;
}
.cid-uQwHxfD5dS .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uQwHxfD5dS .close::before {
  content: '\e91a';
}
.cid-uQwHxfD5dS .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uQwHxfD5dS .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uQwHxfD5dS .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uQwHxfD5dS .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uQwHxfD5dS .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uQwHxfD5dS .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uQwHxfD5dS .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uQwHxfD5dS .carousel-indicators li.active,
.cid-uQwHxfD5dS .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uQwHxfD5dS .carousel-indicators li::after,
.cid-uQwHxfD5dS .carousel-indicators li::before {
  content: none;
}
.cid-uQwHxfD5dS .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uQwHxfD5dS .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uQwHxfD5dS .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uQwHxfD5dS .carousel-indicators {
    display: none;
  }
}
.cid-uQwHxfD5dS .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uQwHxfD5dS .carousel-inner > .active {
  display: block;
}
.cid-uQwHxfD5dS .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uQwHxfD5dS .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uQwHxfD5dS .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uQwHxfD5dS .carousel-control,
  .cid-uQwHxfD5dS .carousel-indicators,
  .cid-uQwHxfD5dS .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uQwHxfD5dS .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uQwHxfD5dS .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uQwHxfD5dS .carousel-indicators .active,
.cid-uQwHxfD5dS .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uQwHxfD5dS .carousel-indicators .active {
  background: #fff;
}
.cid-uQwHxfD5dS .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uQwHxfD5dS .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uQwHxfD5dS .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uQwHxfD5dS .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uQwHxfD5dS .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uQwHxfD5dS .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uQwHxfD5dS .carousel {
  width: 100%;
}
.cid-uQwHxfD5dS .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uQwHxfD5dS .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uQwHxfD5dS .modal.fade .modal-dialog,
.cid-uQwHxfD5dS .modal.in .modal-dialog {
  transform: none;
}
.cid-uQwHxfD5dS .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uQwHxfD5dS H6 {
  text-align: center;
  color: #000000;
}
.cid-uQwHxfD5dS H3 {
  color: #000000;
}
.cid-uQwFoLCFZv {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uQwFoLCFZv .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uQwFoLCFZv .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQwFoLJ3hu {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uQwFoLJ3hu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQwFoLJ3hu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQwFoLJ3hu .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uQwFoLJ3hu .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uQwFoLJ3hu .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uQwFoLJ3hu .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uQwFoLJ3hu .container {
    max-width: 100%;
  }
  .cid-uQwFoLJ3hu .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uQwFoLJ3hu .item-wrap {
  width: 100%;
}
.cid-uQwFoLJ3hu .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uQwFoLJ3hu .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uQwFoLJ3hu .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uQwFoLJ3hu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uQwFoLJ3hu .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uQwFoLJ3hu .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uQwFoLJ3hu .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uQwFoLJ3hu .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uQwFoLJ3hu .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uQwFoLJ3hu .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uQwFoLJ3hu .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uQwFoLJ3hu .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uQwFoLJ3hu .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uQwFoLJ3hu .col-links {
    padding-top: 20px;
  }
}
.cid-uQwFoLJ3hu .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uQwFoLJ3hu .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uQwFoLJ3hu .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uQwFoLJ3hu .list {
    text-align: center !important;
  }
}
.cid-uQwFoLJ3hu .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uQwFoLJ3hu .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uQwFoLJ3hu .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uQwFoLJ3hu .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uQwFoLJ3hu .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uQwFoLJ3hu .list a:hover:before {
  width: 100%;
}
.cid-uQwFoLJ3hu .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uQwFoLJ3hu .col-copyright {
    padding-top: 40px;
  }
}
.cid-uQwFoLJ3hu .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uQwFoLJ3hu .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLet2D7XJ9 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLet2D7XJ9 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLet2D7XJ9 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLet2D7XJ9 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLet2D7XJ9 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLet2D7XJ9 .menu_box .navbar.opened,
  .cid-uLet2D7XJ9 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLet2D7XJ9 .navbar-dropdown {
  position: relative !important;
}
.cid-uLet2D7XJ9 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLet2D7XJ9 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLet2D7XJ9 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLet2D7XJ9 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLet2D7XJ9 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLet2D7XJ9 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLet2D7XJ9 .offcanvas-body .mbr-text,
  .cid-uLet2D7XJ9 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLet2D7XJ9 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLet2D7XJ9 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLet2D7XJ9 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLet2D7XJ9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLet2D7XJ9 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLet2D7XJ9 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLet2D7XJ9 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLet2D7XJ9 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLet2D7XJ9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLet2D7XJ9 .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-uLet2D7XJ9 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLet2D7XJ9 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLet2D7XJ9 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLet2D7XJ9 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLet2D7XJ9 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLet2D7XJ9 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLet2D7XJ9 .nav-item {
    margin: 0 !important;
  }
}
.cid-uLet2D7XJ9 .nav-item .nav-link {
  position: relative;
}
.cid-uLet2D7XJ9 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLet2D7XJ9 .nav-item .nav-link:hover,
.cid-uLet2D7XJ9 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLet2D7XJ9 .nav-item .nav-link:hover::before,
.cid-uLet2D7XJ9 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLet2D7XJ9 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLet2D7XJ9 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLet2D7XJ9 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLet2D7XJ9 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLet2D7XJ9 .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-uLet2D7XJ9 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLet2D7XJ9 .offcanvas_box {
    display: none;
  }
}
.cid-uLet2D7XJ9 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLet2D7XJ9 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLet2D7XJ9 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLet2D7XJ9 .container {
  display: flex;
  margin: auto;
}
.cid-uLet2D7XJ9 .iconfont-wrapper {
  color: #1b1b1b;
  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-uLet2D7XJ9 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLet2D7XJ9 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLet2D7XJ9 .navbar-caption {
  color: #ffffff;
}
.cid-uLet2D7XJ9 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLet2D7XJ9 .navbar-nav {
    margin: 0;
  }
}
.cid-uLet2D7XJ9 .dropdown-menu,
.cid-uLet2D7XJ9 .navbar.opened {
  background-color: false !important;
}
.cid-uLet2D7XJ9 .nav-item:focus,
.cid-uLet2D7XJ9 .nav-link:focus {
  outline: none;
}
.cid-uLet2D7XJ9 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLet2D7XJ9 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLet2D7XJ9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLet2D7XJ9 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLet2D7XJ9 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLet2D7XJ9 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLet2D7XJ9 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLet2D7XJ9 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLet2D7XJ9 .navbar.opened {
  transition: all 0.3s;
}
.cid-uLet2D7XJ9 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLet2D7XJ9 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLet2D7XJ9 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLet2D7XJ9 .navbar.collapsed {
  justify-content: center;
}
.cid-uLet2D7XJ9 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLet2D7XJ9 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLet2D7XJ9 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLet2D7XJ9 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLet2D7XJ9 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLet2D7XJ9 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLet2D7XJ9 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLet2D7XJ9 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLet2D7XJ9 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLet2D7XJ9 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLet2D7XJ9 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLet2D7XJ9 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLet2D7XJ9 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLet2D7XJ9 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLet2D7XJ9 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLet2D7XJ9 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLet2D7XJ9 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLet2D7XJ9 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLet2D7XJ9 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLet2D7XJ9 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLet2D7XJ9 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLet2D7XJ9 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLet2D7XJ9 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLet2D7XJ9 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLet2D7XJ9 .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-uLet2D7XJ9 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLet2D7XJ9 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLet2D7XJ9 .dropdown-item.active,
.cid-uLet2D7XJ9 .dropdown-item:active {
  background-color: transparent;
}
.cid-uLet2D7XJ9 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLet2D7XJ9 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLet2D7XJ9 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLet2D7XJ9 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLet2D7XJ9 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLet2D7XJ9 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLet2D7XJ9 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLet2D7XJ9 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLet2D7XJ9 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLet2D7XJ9 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLet2D7XJ9 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLet2D7XJ9 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLet2D7XJ9 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLet2D7XJ9 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLet2D7XJ9 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLet2D7XJ9 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLet2D7XJ9 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLet2D7XJ9 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLet2D7XJ9 .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-uLet2D7XJ9 .navbar {
    height: 70px;
  }
  .cid-uLet2D7XJ9 .navbar.opened {
    height: auto;
  }
  .cid-uLet2D7XJ9 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLet2D7XJ9 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLet2D7XJ9 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLet2D7XJ9 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLet2D7XJ9 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLet2D7XJ9 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLet2D7XJ9 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLet2D7XJ9 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLet2D7XJ9 .text_widget {
  margin-bottom: 32px;
}
.cid-uLet2D7XJ9 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLet2D7XJ9 .text_widget a:hover {
  opacity: .5;
}
.cid-uLet2D7XJ9 .icons-menu-main {
  display: flex;
}
.cid-uLet2D7XJ9 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLet2D7XJ9 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLet2D7XJ9 .mbr-section-subtitle,
.cid-uLet2D7XJ9 .text_widget,
.cid-uLet2D7XJ9 .mbr-section-btn {
  text-align: center;
}
.cid-uLet2D7XJ9 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP210uotxd {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP210uotxd .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP210uotxd .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uLet2DU9RE {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background-color: #5c5c5c;
}
.cid-uLet2DU9RE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLet2DU9RE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLet2DU9RE .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLet2DU9RE .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uLet2DU9RE .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uLet2DU9RE .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLet2DU9RE .tabs-wrapper {
  padding-bottom: 24px;
  border-bottom: 1px solid #b9b9b9;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uLet2DU9RE .tabs-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uLet2DU9RE .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uLet2DU9RE .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 8px 8px;
}
.cid-uLet2DU9RE .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #dbdbdb;
  padding: 14px 32px;
  margin-bottom: 0;
  background-color: #42454e;
  border: none;
}
.cid-uLet2DU9RE .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  color: #ffffff;
  background-color: #6e7381;
}
.cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .text-wrapper .item-title {
  margin-bottom: 24px;
}
.cid-uLet2DU9RE .tab-content .tab-pane .content-wrapper .text-wrapper .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uLet2DU9RE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLet2DU9RE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLet2DU9RE .item-title {
  color: #ffffff;
}
.cid-uLet2DU9RE .item-text {
  color: #ffffff;
}
.cid-uLet2EFzcm {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uLet2EFzcm .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uLet2EFzcm .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uLetg1eysk .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uLetg1eysk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uLetg1eysk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uLetg1eysk .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uLetg1eysk .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uLetg1eysk .menu_box .navbar.opened,
  .cid-uLetg1eysk .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uLetg1eysk .navbar-dropdown {
  position: relative !important;
}
.cid-uLetg1eysk .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uLetg1eysk .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uLetg1eysk .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uLetg1eysk .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uLetg1eysk .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uLetg1eysk .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uLetg1eysk .offcanvas-body .mbr-text,
  .cid-uLetg1eysk .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uLetg1eysk .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uLetg1eysk .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uLetg1eysk .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uLetg1eysk .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uLetg1eysk .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uLetg1eysk .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uLetg1eysk .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uLetg1eysk ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uLetg1eysk .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLetg1eysk .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-uLetg1eysk .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uLetg1eysk li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uLetg1eysk .lg_brand {
    margin: 0 1rem;
  }
  .cid-uLetg1eysk .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uLetg1eysk .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uLetg1eysk .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uLetg1eysk .nav-item {
    margin: 0 !important;
  }
}
.cid-uLetg1eysk .nav-item .nav-link {
  position: relative;
}
.cid-uLetg1eysk .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uLetg1eysk .nav-item .nav-link:hover,
.cid-uLetg1eysk .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uLetg1eysk .nav-item .nav-link:hover::before,
.cid-uLetg1eysk .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uLetg1eysk .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uLetg1eysk .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uLetg1eysk .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uLetg1eysk .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uLetg1eysk .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-uLetg1eysk .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uLetg1eysk .offcanvas_box {
    display: none;
  }
}
.cid-uLetg1eysk .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uLetg1eysk .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uLetg1eysk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uLetg1eysk .container {
  display: flex;
  margin: auto;
}
.cid-uLetg1eysk .iconfont-wrapper {
  color: #1b1b1b;
  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-uLetg1eysk .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uLetg1eysk .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uLetg1eysk .navbar-caption {
  color: #ffffff;
}
.cid-uLetg1eysk .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uLetg1eysk .navbar-nav {
    margin: 0;
  }
}
.cid-uLetg1eysk .dropdown-menu,
.cid-uLetg1eysk .navbar.opened {
  background-color: false !important;
}
.cid-uLetg1eysk .nav-item:focus,
.cid-uLetg1eysk .nav-link:focus {
  outline: none;
}
.cid-uLetg1eysk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uLetg1eysk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uLetg1eysk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uLetg1eysk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uLetg1eysk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uLetg1eysk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uLetg1eysk .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uLetg1eysk .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uLetg1eysk .navbar.opened {
  transition: all 0.3s;
}
.cid-uLetg1eysk .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uLetg1eysk .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uLetg1eysk .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uLetg1eysk .navbar.collapsed {
  justify-content: center;
}
.cid-uLetg1eysk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uLetg1eysk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uLetg1eysk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uLetg1eysk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uLetg1eysk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uLetg1eysk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uLetg1eysk .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uLetg1eysk .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uLetg1eysk .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uLetg1eysk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uLetg1eysk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uLetg1eysk .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uLetg1eysk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uLetg1eysk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uLetg1eysk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uLetg1eysk .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uLetg1eysk .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uLetg1eysk .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uLetg1eysk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uLetg1eysk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uLetg1eysk .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uLetg1eysk .navbar.navbar-short {
  min-height: 60px;
}
.cid-uLetg1eysk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uLetg1eysk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uLetg1eysk .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-uLetg1eysk .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uLetg1eysk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uLetg1eysk .dropdown-item.active,
.cid-uLetg1eysk .dropdown-item:active {
  background-color: transparent;
}
.cid-uLetg1eysk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uLetg1eysk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uLetg1eysk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uLetg1eysk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uLetg1eysk .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uLetg1eysk ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uLetg1eysk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uLetg1eysk button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uLetg1eysk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uLetg1eysk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uLetg1eysk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLetg1eysk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uLetg1eysk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uLetg1eysk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLetg1eysk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uLetg1eysk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uLetg1eysk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uLetg1eysk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uLetg1eysk .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-uLetg1eysk .navbar {
    height: 70px;
  }
  .cid-uLetg1eysk .navbar.opened {
    height: auto;
  }
  .cid-uLetg1eysk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uLetg1eysk .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uLetg1eysk .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uLetg1eysk .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uLetg1eysk .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uLetg1eysk .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uLetg1eysk .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uLetg1eysk .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uLetg1eysk .text_widget {
  margin-bottom: 32px;
}
.cid-uLetg1eysk .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uLetg1eysk .text_widget a:hover {
  opacity: .5;
}
.cid-uLetg1eysk .icons-menu-main {
  display: flex;
}
.cid-uLetg1eysk .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uLetg1eysk .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLetg1eysk .mbr-section-subtitle,
.cid-uLetg1eysk .text_widget,
.cid-uLetg1eysk .mbr-section-btn {
  text-align: center;
}
.cid-uLetg1eysk a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uP21C3Dxgc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e4e4e4;
}
.cid-uP21C3Dxgc .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uP21C3Dxgc .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uLetg1Y3ZE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #5c5c5c;
}
.cid-uLetg1Y3ZE .mbr-fallback-image.disabled {
  display: none;
}
.cid-uLetg1Y3ZE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uLetg1Y3ZE .content-wrapper {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-uLetg1Y3ZE .content-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uLetg1Y3ZE .content-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uLetg1Y3ZE .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-uLetg1Y3ZE .tabs-wrapper {
  padding-bottom: 24px;
  border-bottom: 1px solid #b9b9b9;
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-uLetg1Y3ZE .tabs-wrapper {
    margin-bottom: 32px;
  }
}
.cid-uLetg1Y3ZE .tabs-wrapper .nav.nav-tabs {
  border: none;
  padding: 0;
  border-radius: 0 !important;
  background-color: transparent;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
}
.cid-uLetg1Y3ZE .tabs-wrapper .nav.nav-tabs .nav-item {
  padding: 0;
  border: none;
  display: block;
  margin: 0 8px 8px;
}
.cid-uLetg1Y3ZE .tabs-wrapper .nav.nav-tabs .nav-item .nav-link {
  color: #dbdbdb;
  padding: 14px 32px;
  margin-bottom: 0;
  background-color: #42454e;
  border: none;
}
.cid-uLetg1Y3ZE .tabs-wrapper .nav.nav-tabs .nav-item .nav-link.active {
  color: #ffffff;
  background-color: #6e7381;
}
.cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper {
    display: block;
  }
}
.cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .image-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .image-wrapper {
    width: 100%;
    margin-bottom: 24px;
  }
}
.cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .image-wrapper img {
  height: 440px;
  object-fit: cover;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .image-wrapper img {
    height: 350px;
  }
}
.cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .text-wrapper {
  width: 48%;
}
@media (max-width: 992px) {
  .cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .text-wrapper {
    width: 100%;
  }
}
.cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .text-wrapper .item-title {
  margin-bottom: 24px;
}
.cid-uLetg1Y3ZE .tab-content .tab-pane .content-wrapper .text-wrapper .text-wrap .item-text {
  margin-bottom: 0;
}
.cid-uLetg1Y3ZE .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uLetg1Y3ZE .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uLetg1Y3ZE .item-title {
  color: #ffffff;
}
.cid-uLetg1Y3ZE .item-text {
  color: #ffffff;
}
.cid-uLetg2KwnD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ececec;
}
.cid-uLetg2KwnD .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uLetg2KwnD .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uPAkE6syME {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uPAkE6syME .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPAkE6syME .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPAkE6syME .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uPAkE6syME .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uPAkE6syME .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .container {
    max-width: 100%;
  }
  .cid-uPAkE6syME .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uPAkE6syME .item-wrap {
  width: 100%;
}
.cid-uPAkE6syME .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uPAkE6syME .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uPAkE6syME .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uPAkE6syME .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uPAkE6syME .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uPAkE6syME .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uPAkE6syME .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uPAkE6syME .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-links {
    padding-top: 20px;
  }
}
.cid-uPAkE6syME .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uPAkE6syME .list {
    text-align: center !important;
  }
}
.cid-uPAkE6syME .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uPAkE6syME .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uPAkE6syME .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uPAkE6syME .list a:hover:before {
  width: 100%;
}
.cid-uPAkE6syME .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uPAkE6syME .col-copyright {
    padding-top: 40px;
  }
}
.cid-uPAkE6syME .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uPAkE6syME .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uTwIpOb7RJ .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uTwIpOb7RJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uTwIpOb7RJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uTwIpOb7RJ .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uTwIpOb7RJ .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uTwIpOb7RJ .menu_box .navbar.opened,
  .cid-uTwIpOb7RJ .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uTwIpOb7RJ .navbar-dropdown {
  position: relative !important;
}
.cid-uTwIpOb7RJ .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uTwIpOb7RJ .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uTwIpOb7RJ .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uTwIpOb7RJ .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uTwIpOb7RJ .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uTwIpOb7RJ .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uTwIpOb7RJ .offcanvas-body .mbr-text,
  .cid-uTwIpOb7RJ .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uTwIpOb7RJ .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uTwIpOb7RJ .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uTwIpOb7RJ .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uTwIpOb7RJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uTwIpOb7RJ .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uTwIpOb7RJ .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uTwIpOb7RJ .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uTwIpOb7RJ ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uTwIpOb7RJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uTwIpOb7RJ .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-uTwIpOb7RJ .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uTwIpOb7RJ li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uTwIpOb7RJ .lg_brand {
    margin: 0 1rem;
  }
  .cid-uTwIpOb7RJ .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uTwIpOb7RJ .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uTwIpOb7RJ .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uTwIpOb7RJ .nav-item {
    margin: 0 !important;
  }
}
.cid-uTwIpOb7RJ .nav-item .nav-link {
  position: relative;
}
.cid-uTwIpOb7RJ .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uTwIpOb7RJ .nav-item .nav-link:hover,
.cid-uTwIpOb7RJ .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uTwIpOb7RJ .nav-item .nav-link:hover::before,
.cid-uTwIpOb7RJ .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uTwIpOb7RJ .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uTwIpOb7RJ .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uTwIpOb7RJ .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uTwIpOb7RJ .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uTwIpOb7RJ .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-uTwIpOb7RJ .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uTwIpOb7RJ .offcanvas_box {
    display: none;
  }
}
.cid-uTwIpOb7RJ .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uTwIpOb7RJ .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uTwIpOb7RJ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uTwIpOb7RJ .container {
  display: flex;
  margin: auto;
}
.cid-uTwIpOb7RJ .iconfont-wrapper {
  color: #1b1b1b;
  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-uTwIpOb7RJ .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uTwIpOb7RJ .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uTwIpOb7RJ .navbar-caption {
  color: #ffffff;
}
.cid-uTwIpOb7RJ .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uTwIpOb7RJ .navbar-nav {
    margin: 0;
  }
}
.cid-uTwIpOb7RJ .dropdown-menu,
.cid-uTwIpOb7RJ .navbar.opened {
  background-color: false !important;
}
.cid-uTwIpOb7RJ .nav-item:focus,
.cid-uTwIpOb7RJ .nav-link:focus {
  outline: none;
}
.cid-uTwIpOb7RJ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uTwIpOb7RJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uTwIpOb7RJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uTwIpOb7RJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uTwIpOb7RJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uTwIpOb7RJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uTwIpOb7RJ .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uTwIpOb7RJ .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uTwIpOb7RJ .navbar.opened {
  transition: all 0.3s;
}
.cid-uTwIpOb7RJ .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uTwIpOb7RJ .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uTwIpOb7RJ .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uTwIpOb7RJ .navbar.collapsed {
  justify-content: center;
}
.cid-uTwIpOb7RJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uTwIpOb7RJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uTwIpOb7RJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uTwIpOb7RJ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uTwIpOb7RJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uTwIpOb7RJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uTwIpOb7RJ .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uTwIpOb7RJ .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uTwIpOb7RJ .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uTwIpOb7RJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uTwIpOb7RJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uTwIpOb7RJ .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uTwIpOb7RJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uTwIpOb7RJ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uTwIpOb7RJ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uTwIpOb7RJ .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uTwIpOb7RJ .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uTwIpOb7RJ .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uTwIpOb7RJ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uTwIpOb7RJ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uTwIpOb7RJ .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uTwIpOb7RJ .navbar.navbar-short {
  min-height: 60px;
}
.cid-uTwIpOb7RJ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uTwIpOb7RJ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uTwIpOb7RJ .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-uTwIpOb7RJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uTwIpOb7RJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uTwIpOb7RJ .dropdown-item.active,
.cid-uTwIpOb7RJ .dropdown-item:active {
  background-color: transparent;
}
.cid-uTwIpOb7RJ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uTwIpOb7RJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uTwIpOb7RJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uTwIpOb7RJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uTwIpOb7RJ .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uTwIpOb7RJ ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uTwIpOb7RJ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uTwIpOb7RJ button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uTwIpOb7RJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uTwIpOb7RJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uTwIpOb7RJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTwIpOb7RJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uTwIpOb7RJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uTwIpOb7RJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTwIpOb7RJ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uTwIpOb7RJ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uTwIpOb7RJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uTwIpOb7RJ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uTwIpOb7RJ .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-uTwIpOb7RJ .navbar {
    height: 70px;
  }
  .cid-uTwIpOb7RJ .navbar.opened {
    height: auto;
  }
  .cid-uTwIpOb7RJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uTwIpOb7RJ .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uTwIpOb7RJ .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uTwIpOb7RJ .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uTwIpOb7RJ .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uTwIpOb7RJ .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uTwIpOb7RJ .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uTwIpOb7RJ .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uTwIpOb7RJ .text_widget {
  margin-bottom: 32px;
}
.cid-uTwIpOb7RJ .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uTwIpOb7RJ .text_widget a:hover {
  opacity: .5;
}
.cid-uTwIpOb7RJ .icons-menu-main {
  display: flex;
}
.cid-uTwIpOb7RJ .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uTwIpOb7RJ .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uTwIpOb7RJ .mbr-section-subtitle,
.cid-uTwIpOb7RJ .text_widget,
.cid-uTwIpOb7RJ .mbr-section-btn {
  text-align: center;
}
.cid-uTwIpOb7RJ a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uTwIpOSiHI {
  padding-top: 17rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/toilet-sign-direction-airport.jpeg");
}
.cid-uTwIpOSiHI .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-uTwIpOSiHI .mbr-text,
.cid-uTwIpOSiHI .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-uTwIpOSiHI .mbr-section-subtitle {
  text-align: center;
  color: #ffffff;
}
.cid-uTwIpPeEu5 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uTwIpPeEu5 .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uTwIpPeEu5 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uTwIpPniwj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uTwIpPniwj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTwIpPniwj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTwIpPniwj .row {
  flex-direction: row-reverse;
}
.cid-uTwIpPniwj .mbr-description {
  text-align: center;
}
.cid-uTxbGiENgt {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uTxbGiENgt .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTxbGiENgt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTxbGiENgt .video-wrapper iframe {
  width: 100%;
}
.cid-uTxbGiENgt .mbr-section-title,
.cid-uTxbGiENgt .mbr-section-subtitle,
.cid-uTxbGiENgt .mbr-text {
  text-align: center;
}
.cid-uTxbGiENgt .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-uTxbGiENgt .mbr-section-subtitle {
  text-align: left;
}
.cid-uTxbGiENgt .mbr-text {
  text-align: left;
}
.cid-uTwIpQgCax {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uTwIpQgCax .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uTwIpQgCax .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uTwIpQkpCF {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uTwIpQkpCF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTwIpQkpCF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTwIpQkpCF .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uTwIpQkpCF .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uTwIpQkpCF .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uTwIpQkpCF .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uTwIpQkpCF .container {
    max-width: 100%;
  }
  .cid-uTwIpQkpCF .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uTwIpQkpCF .item-wrap {
  width: 100%;
}
.cid-uTwIpQkpCF .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uTwIpQkpCF .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uTwIpQkpCF .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uTwIpQkpCF .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uTwIpQkpCF .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uTwIpQkpCF .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uTwIpQkpCF .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uTwIpQkpCF .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uTwIpQkpCF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uTwIpQkpCF .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uTwIpQkpCF .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uTwIpQkpCF .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uTwIpQkpCF .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uTwIpQkpCF .col-links {
    padding-top: 20px;
  }
}
.cid-uTwIpQkpCF .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uTwIpQkpCF .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uTwIpQkpCF .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uTwIpQkpCF .list {
    text-align: center !important;
  }
}
.cid-uTwIpQkpCF .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uTwIpQkpCF .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uTwIpQkpCF .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uTwIpQkpCF .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uTwIpQkpCF .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uTwIpQkpCF .list a:hover:before {
  width: 100%;
}
.cid-uTwIpQkpCF .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uTwIpQkpCF .col-copyright {
    padding-top: 40px;
  }
}
.cid-uTwIpQkpCF .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uTwIpQkpCF .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-v0kVddyQ0s .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-v0kVddyQ0s .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-v0kVddyQ0s .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0kVddyQ0s .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0kVddyQ0s .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v0kVddyQ0s .menu_box .navbar.opened,
  .cid-v0kVddyQ0s .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v0kVddyQ0s .navbar-dropdown {
  position: relative !important;
}
.cid-v0kVddyQ0s .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v0kVddyQ0s .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v0kVddyQ0s .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v0kVddyQ0s .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v0kVddyQ0s .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v0kVddyQ0s .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v0kVddyQ0s .offcanvas-body .mbr-text,
  .cid-v0kVddyQ0s .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v0kVddyQ0s .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v0kVddyQ0s .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v0kVddyQ0s .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-v0kVddyQ0s .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v0kVddyQ0s .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v0kVddyQ0s .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v0kVddyQ0s .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v0kVddyQ0s ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v0kVddyQ0s .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0kVddyQ0s .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-v0kVddyQ0s .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v0kVddyQ0s li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-v0kVddyQ0s .lg_brand {
    margin: 0 1rem;
  }
  .cid-v0kVddyQ0s .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-v0kVddyQ0s .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v0kVddyQ0s .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0kVddyQ0s .nav-item {
    margin: 0 !important;
  }
}
.cid-v0kVddyQ0s .nav-item .nav-link {
  position: relative;
}
.cid-v0kVddyQ0s .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-v0kVddyQ0s .nav-item .nav-link:hover,
.cid-v0kVddyQ0s .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-v0kVddyQ0s .nav-item .nav-link:hover::before,
.cid-v0kVddyQ0s .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v0kVddyQ0s .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v0kVddyQ0s .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v0kVddyQ0s .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v0kVddyQ0s .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0kVddyQ0s .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-v0kVddyQ0s .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v0kVddyQ0s .offcanvas_box {
    display: none;
  }
}
.cid-v0kVddyQ0s .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-v0kVddyQ0s .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v0kVddyQ0s .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v0kVddyQ0s .container {
  display: flex;
  margin: auto;
}
.cid-v0kVddyQ0s .iconfont-wrapper {
  color: #1b1b1b;
  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-v0kVddyQ0s .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v0kVddyQ0s .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v0kVddyQ0s .navbar-caption {
  color: #ffffff;
}
.cid-v0kVddyQ0s .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v0kVddyQ0s .navbar-nav {
    margin: 0;
  }
}
.cid-v0kVddyQ0s .dropdown-menu,
.cid-v0kVddyQ0s .navbar.opened {
  background-color: false !important;
}
.cid-v0kVddyQ0s .nav-item:focus,
.cid-v0kVddyQ0s .nav-link:focus {
  outline: none;
}
.cid-v0kVddyQ0s .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0kVddyQ0s .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0kVddyQ0s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0kVddyQ0s .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0kVddyQ0s .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0kVddyQ0s .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0kVddyQ0s .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v0kVddyQ0s .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v0kVddyQ0s .navbar.opened {
  transition: all 0.3s;
}
.cid-v0kVddyQ0s .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v0kVddyQ0s .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-v0kVddyQ0s .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0kVddyQ0s .navbar.collapsed {
  justify-content: center;
}
.cid-v0kVddyQ0s .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0kVddyQ0s .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0kVddyQ0s .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0kVddyQ0s .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0kVddyQ0s .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0kVddyQ0s .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v0kVddyQ0s .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v0kVddyQ0s .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v0kVddyQ0s .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v0kVddyQ0s .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0kVddyQ0s .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0kVddyQ0s .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v0kVddyQ0s .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0kVddyQ0s .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v0kVddyQ0s .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0kVddyQ0s .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v0kVddyQ0s .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v0kVddyQ0s .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v0kVddyQ0s .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v0kVddyQ0s .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0kVddyQ0s .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v0kVddyQ0s .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0kVddyQ0s .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0kVddyQ0s .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0kVddyQ0s .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-v0kVddyQ0s .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v0kVddyQ0s .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0kVddyQ0s .dropdown-item.active,
.cid-v0kVddyQ0s .dropdown-item:active {
  background-color: transparent;
}
.cid-v0kVddyQ0s .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0kVddyQ0s .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0kVddyQ0s .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0kVddyQ0s .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0kVddyQ0s .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-v0kVddyQ0s ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v0kVddyQ0s .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0kVddyQ0s button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-v0kVddyQ0s button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0kVddyQ0s button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0kVddyQ0s button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0kVddyQ0s button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0kVddyQ0s button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0kVddyQ0s nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0kVddyQ0s nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0kVddyQ0s nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0kVddyQ0s nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0kVddyQ0s a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0kVddyQ0s .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-v0kVddyQ0s .navbar {
    height: 70px;
  }
  .cid-v0kVddyQ0s .navbar.opened {
    height: auto;
  }
  .cid-v0kVddyQ0s .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0kVddyQ0s .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v0kVddyQ0s .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-v0kVddyQ0s .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v0kVddyQ0s .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-v0kVddyQ0s .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v0kVddyQ0s .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0kVddyQ0s .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-v0kVddyQ0s .text_widget {
  margin-bottom: 32px;
}
.cid-v0kVddyQ0s .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v0kVddyQ0s .text_widget a:hover {
  opacity: .5;
}
.cid-v0kVddyQ0s .icons-menu-main {
  display: flex;
}
.cid-v0kVddyQ0s .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0kVddyQ0s .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v0kVddyQ0s .mbr-section-subtitle,
.cid-v0kVddyQ0s .text_widget,
.cid-v0kVddyQ0s .mbr-section-btn {
  text-align: center;
}
.cid-v0kVddyQ0s a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v0kVdeimI1 {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-v0kVdeimI1 .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-v0kVdeimI1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0kVdeuGMq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0kVdeuGMq .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-v0kVdeuGMq .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0kVdeCFZm {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0kVdeCFZm .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-v0kVdeI5Af {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-v0kVdeI5Af .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0kVdeI5Af .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0kVdeI5Af .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0kVdeI5Af img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v0kVdeI5Af .text-wrapper {
    padding: 2rem;
  }
}
.cid-v0kVdeSyK7 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-v0kVdeSyK7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0kVdeSyK7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0kVdeSyK7 .item {
  padding-bottom: 2rem;
}
.cid-v0kVdeSyK7 .item-wrapper {
  position: relative;
}
.cid-v0kVdeSyK7 .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v0kVdeSyK7 .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v0kVdeSyK7 .carousel-control,
.cid-v0kVdeSyK7 .close {
  background: #1b1b1b;
}
.cid-v0kVdeSyK7 .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0kVdeSyK7 .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0kVdeSyK7 .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0kVdeSyK7 .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0kVdeSyK7 .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v0kVdeSyK7 .close::before {
  content: '\e91a';
}
.cid-v0kVdeSyK7 .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0kVdeSyK7 .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v0kVdeSyK7 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0kVdeSyK7 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0kVdeSyK7 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0kVdeSyK7 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0kVdeSyK7 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v0kVdeSyK7 .carousel-indicators li.active,
.cid-v0kVdeSyK7 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0kVdeSyK7 .carousel-indicators li::after,
.cid-v0kVdeSyK7 .carousel-indicators li::before {
  content: none;
}
.cid-v0kVdeSyK7 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0kVdeSyK7 .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0kVdeSyK7 .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0kVdeSyK7 .carousel-indicators {
    display: none;
  }
}
.cid-v0kVdeSyK7 .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0kVdeSyK7 .carousel-inner > .active {
  display: block;
}
.cid-v0kVdeSyK7 .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0kVdeSyK7 .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0kVdeSyK7 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0kVdeSyK7 .carousel-control,
  .cid-v0kVdeSyK7 .carousel-indicators,
  .cid-v0kVdeSyK7 .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0kVdeSyK7 .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0kVdeSyK7 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0kVdeSyK7 .carousel-indicators .active,
.cid-v0kVdeSyK7 .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0kVdeSyK7 .carousel-indicators .active {
  background: #fff;
}
.cid-v0kVdeSyK7 .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0kVdeSyK7 .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0kVdeSyK7 .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0kVdeSyK7 .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0kVdeSyK7 .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0kVdeSyK7 .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0kVdeSyK7 .carousel {
  width: 100%;
}
.cid-v0kVdeSyK7 .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0kVdeSyK7 .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0kVdeSyK7 .modal.fade .modal-dialog,
.cid-v0kVdeSyK7 .modal.in .modal-dialog {
  transform: none;
}
.cid-v0kVdeSyK7 .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0kVdeSyK7 H6 {
  text-align: center;
  color: #000000;
}
.cid-v0kVdeSyK7 H3 {
  color: #000000;
}
.cid-v0kVdfJqYe {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0kVdfJqYe .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-v0kVdfJqYe .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0kVdfStoe {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-v0kVdfStoe .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0kVdfStoe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0kVdfStoe .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-v0kVdfStoe .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-v0kVdfStoe .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-v0kVdfStoe .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-v0kVdfStoe .container {
    max-width: 100%;
  }
  .cid-v0kVdfStoe .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-v0kVdfStoe .item-wrap {
  width: 100%;
}
.cid-v0kVdfStoe .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-v0kVdfStoe .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v0kVdfStoe .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v0kVdfStoe .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0kVdfStoe .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-v0kVdfStoe .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0kVdfStoe .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-v0kVdfStoe .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-v0kVdfStoe .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-v0kVdfStoe .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-v0kVdfStoe .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-v0kVdfStoe .soc-item:hover {
  transform: translateY(-3px);
}
.cid-v0kVdfStoe .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0kVdfStoe .col-links {
    padding-top: 20px;
  }
}
.cid-v0kVdfStoe .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-v0kVdfStoe .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-v0kVdfStoe .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-v0kVdfStoe .list {
    text-align: center !important;
  }
}
.cid-v0kVdfStoe .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-v0kVdfStoe .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-v0kVdfStoe .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-v0kVdfStoe .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-v0kVdfStoe .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-v0kVdfStoe .list a:hover:before {
  width: 100%;
}
.cid-v0kVdfStoe .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-v0kVdfStoe .col-copyright {
    padding-top: 40px;
  }
}
.cid-v0kVdfStoe .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-v0kVdfStoe .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-uQfHTTXPJ0 .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-uQfHTTXPJ0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-uQfHTTXPJ0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uQfHTTXPJ0 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uQfHTTXPJ0 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uQfHTTXPJ0 .menu_box .navbar.opened,
  .cid-uQfHTTXPJ0 .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-uQfHTTXPJ0 .navbar-dropdown {
  position: relative !important;
}
.cid-uQfHTTXPJ0 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uQfHTTXPJ0 .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-uQfHTTXPJ0 .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-uQfHTTXPJ0 .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-uQfHTTXPJ0 .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-uQfHTTXPJ0 .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-uQfHTTXPJ0 .offcanvas-body .mbr-text,
  .cid-uQfHTTXPJ0 .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-uQfHTTXPJ0 .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-uQfHTTXPJ0 .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-uQfHTTXPJ0 .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-uQfHTTXPJ0 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-uQfHTTXPJ0 .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-uQfHTTXPJ0 .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-uQfHTTXPJ0 .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-uQfHTTXPJ0 ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-uQfHTTXPJ0 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQfHTTXPJ0 .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-uQfHTTXPJ0 .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-uQfHTTXPJ0 li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-uQfHTTXPJ0 .lg_brand {
    margin: 0 1rem;
  }
  .cid-uQfHTTXPJ0 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-uQfHTTXPJ0 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uQfHTTXPJ0 .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-uQfHTTXPJ0 .nav-item {
    margin: 0 !important;
  }
}
.cid-uQfHTTXPJ0 .nav-item .nav-link {
  position: relative;
}
.cid-uQfHTTXPJ0 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-uQfHTTXPJ0 .nav-item .nav-link:hover,
.cid-uQfHTTXPJ0 .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-uQfHTTXPJ0 .nav-item .nav-link:hover::before,
.cid-uQfHTTXPJ0 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uQfHTTXPJ0 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uQfHTTXPJ0 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uQfHTTXPJ0 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uQfHTTXPJ0 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uQfHTTXPJ0 .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-uQfHTTXPJ0 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uQfHTTXPJ0 .offcanvas_box {
    display: none;
  }
}
.cid-uQfHTTXPJ0 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uQfHTTXPJ0 .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uQfHTTXPJ0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uQfHTTXPJ0 .container {
  display: flex;
  margin: auto;
}
.cid-uQfHTTXPJ0 .iconfont-wrapper {
  color: #1b1b1b;
  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-uQfHTTXPJ0 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uQfHTTXPJ0 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uQfHTTXPJ0 .navbar-caption {
  color: #ffffff;
}
.cid-uQfHTTXPJ0 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uQfHTTXPJ0 .navbar-nav {
    margin: 0;
  }
}
.cid-uQfHTTXPJ0 .dropdown-menu,
.cid-uQfHTTXPJ0 .navbar.opened {
  background-color: false !important;
}
.cid-uQfHTTXPJ0 .nav-item:focus,
.cid-uQfHTTXPJ0 .nav-link:focus {
  outline: none;
}
.cid-uQfHTTXPJ0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uQfHTTXPJ0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uQfHTTXPJ0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uQfHTTXPJ0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uQfHTTXPJ0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uQfHTTXPJ0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uQfHTTXPJ0 .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uQfHTTXPJ0 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uQfHTTXPJ0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uQfHTTXPJ0 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uQfHTTXPJ0 .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-uQfHTTXPJ0 .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-uQfHTTXPJ0 .navbar.collapsed {
  justify-content: center;
}
.cid-uQfHTTXPJ0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uQfHTTXPJ0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uQfHTTXPJ0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uQfHTTXPJ0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uQfHTTXPJ0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uQfHTTXPJ0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uQfHTTXPJ0 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uQfHTTXPJ0 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uQfHTTXPJ0 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-uQfHTTXPJ0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uQfHTTXPJ0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uQfHTTXPJ0 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uQfHTTXPJ0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uQfHTTXPJ0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uQfHTTXPJ0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uQfHTTXPJ0 .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-uQfHTTXPJ0 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uQfHTTXPJ0 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uQfHTTXPJ0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uQfHTTXPJ0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uQfHTTXPJ0 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uQfHTTXPJ0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uQfHTTXPJ0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uQfHTTXPJ0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uQfHTTXPJ0 .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-uQfHTTXPJ0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-uQfHTTXPJ0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uQfHTTXPJ0 .dropdown-item.active,
.cid-uQfHTTXPJ0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uQfHTTXPJ0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uQfHTTXPJ0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uQfHTTXPJ0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uQfHTTXPJ0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uQfHTTXPJ0 .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-uQfHTTXPJ0 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uQfHTTXPJ0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uQfHTTXPJ0 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-uQfHTTXPJ0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uQfHTTXPJ0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uQfHTTXPJ0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQfHTTXPJ0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uQfHTTXPJ0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uQfHTTXPJ0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQfHTTXPJ0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uQfHTTXPJ0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uQfHTTXPJ0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uQfHTTXPJ0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uQfHTTXPJ0 .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-uQfHTTXPJ0 .navbar {
    height: 70px;
  }
  .cid-uQfHTTXPJ0 .navbar.opened {
    height: auto;
  }
  .cid-uQfHTTXPJ0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uQfHTTXPJ0 .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-uQfHTTXPJ0 .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-uQfHTTXPJ0 .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-uQfHTTXPJ0 .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-uQfHTTXPJ0 .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-uQfHTTXPJ0 .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uQfHTTXPJ0 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uQfHTTXPJ0 .text_widget {
  margin-bottom: 32px;
}
.cid-uQfHTTXPJ0 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uQfHTTXPJ0 .text_widget a:hover {
  opacity: .5;
}
.cid-uQfHTTXPJ0 .icons-menu-main {
  display: flex;
}
.cid-uQfHTTXPJ0 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-uQfHTTXPJ0 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uQfHTTXPJ0 .mbr-section-subtitle,
.cid-uQfHTTXPJ0 .text_widget,
.cid-uQfHTTXPJ0 .mbr-section-btn {
  text-align: center;
}
.cid-uQfHTTXPJ0 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uQfHTV4wLO {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-uQfHTV4wLO .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-uQfHTV4wLO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-uQfHTVlV82 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uQfHTVlV82 .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-uQfHTVlV82 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQfHTVthsl {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-uQfHTVthsl .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-uQfHTVz0VL {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-uQfHTVz0VL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQfHTVz0VL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-uQfHTVz0VL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uQfHTVz0VL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uQfHTVz0VL .text-wrapper {
    padding: 2rem;
  }
}
.cid-uQfHTVKKQy {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-uQfHTVKKQy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQfHTVKKQy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQfHTVKKQy .item {
  padding-bottom: 2rem;
}
.cid-uQfHTVKKQy .item-wrapper {
  position: relative;
}
.cid-uQfHTVKKQy .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-uQfHTVKKQy .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-uQfHTVKKQy .carousel-control,
.cid-uQfHTVKKQy .close {
  background: #1b1b1b;
}
.cid-uQfHTVKKQy .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-uQfHTVKKQy .carousel-control-prev span {
  margin-right: 5px;
}
.cid-uQfHTVKKQy .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-uQfHTVKKQy .carousel-control-next span {
  margin-left: 5px;
}
.cid-uQfHTVKKQy .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uQfHTVKKQy .close::before {
  content: '\e91a';
}
.cid-uQfHTVKKQy .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uQfHTVKKQy .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-uQfHTVKKQy .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uQfHTVKKQy .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-uQfHTVKKQy .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-uQfHTVKKQy .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-uQfHTVKKQy .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-uQfHTVKKQy .carousel-indicators li.active,
.cid-uQfHTVKKQy .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-uQfHTVKKQy .carousel-indicators li::after,
.cid-uQfHTVKKQy .carousel-indicators li::before {
  content: none;
}
.cid-uQfHTVKKQy .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-uQfHTVKKQy .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-uQfHTVKKQy .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-uQfHTVKKQy .carousel-indicators {
    display: none;
  }
}
.cid-uQfHTVKKQy .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-uQfHTVKKQy .carousel-inner > .active {
  display: block;
}
.cid-uQfHTVKKQy .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uQfHTVKKQy .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uQfHTVKKQy .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-uQfHTVKKQy .carousel-control,
  .cid-uQfHTVKKQy .carousel-indicators,
  .cid-uQfHTVKKQy .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-uQfHTVKKQy .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-uQfHTVKKQy .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-uQfHTVKKQy .carousel-indicators .active,
.cid-uQfHTVKKQy .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-uQfHTVKKQy .carousel-indicators .active {
  background: #fff;
}
.cid-uQfHTVKKQy .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-uQfHTVKKQy .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-uQfHTVKKQy .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-uQfHTVKKQy .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-uQfHTVKKQy .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-uQfHTVKKQy .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-uQfHTVKKQy .carousel {
  width: 100%;
}
.cid-uQfHTVKKQy .modal-backdrop.in {
  opacity: 0.8;
}
.cid-uQfHTVKKQy .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-uQfHTVKKQy .modal.fade .modal-dialog,
.cid-uQfHTVKKQy .modal.in .modal-dialog {
  transform: none;
}
.cid-uQfHTVKKQy .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-uQfHTVKKQy H6 {
  text-align: center;
  color: #000000;
}
.cid-uQfHTVKKQy H3 {
  color: #000000;
}
.cid-uQfHTWb0vx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-uQfHTWb0vx .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-uQfHTWb0vx .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-uQfHTWioU5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-uQfHTWioU5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uQfHTWioU5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uQfHTWioU5 .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-uQfHTWioU5 .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-uQfHTWioU5 .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-uQfHTWioU5 .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-uQfHTWioU5 .container {
    max-width: 100%;
  }
  .cid-uQfHTWioU5 .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-uQfHTWioU5 .item-wrap {
  width: 100%;
}
.cid-uQfHTWioU5 .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-uQfHTWioU5 .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-uQfHTWioU5 .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-uQfHTWioU5 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uQfHTWioU5 .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-uQfHTWioU5 .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-uQfHTWioU5 .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-uQfHTWioU5 .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-uQfHTWioU5 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-uQfHTWioU5 .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-uQfHTWioU5 .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-uQfHTWioU5 .soc-item:hover {
  transform: translateY(-3px);
}
.cid-uQfHTWioU5 .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uQfHTWioU5 .col-links {
    padding-top: 20px;
  }
}
.cid-uQfHTWioU5 .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-uQfHTWioU5 .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-uQfHTWioU5 .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-uQfHTWioU5 .list {
    text-align: center !important;
  }
}
.cid-uQfHTWioU5 .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-uQfHTWioU5 .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-uQfHTWioU5 .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-uQfHTWioU5 .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-uQfHTWioU5 .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-uQfHTWioU5 .list a:hover:before {
  width: 100%;
}
.cid-uQfHTWioU5 .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-uQfHTWioU5 .col-copyright {
    padding-top: 40px;
  }
}
.cid-uQfHTWioU5 .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-uQfHTWioU5 .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-v0qnYq6y8J .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-v0qnYq6y8J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-v0qnYq6y8J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0qnYq6y8J .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0qnYq6y8J .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v0qnYq6y8J .menu_box .navbar.opened,
  .cid-v0qnYq6y8J .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v0qnYq6y8J .navbar-dropdown {
  position: relative !important;
}
.cid-v0qnYq6y8J .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v0qnYq6y8J .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v0qnYq6y8J .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v0qnYq6y8J .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v0qnYq6y8J .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v0qnYq6y8J .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v0qnYq6y8J .offcanvas-body .mbr-text,
  .cid-v0qnYq6y8J .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v0qnYq6y8J .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v0qnYq6y8J .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v0qnYq6y8J .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-v0qnYq6y8J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v0qnYq6y8J .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v0qnYq6y8J .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v0qnYq6y8J .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v0qnYq6y8J ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v0qnYq6y8J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0qnYq6y8J .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-v0qnYq6y8J .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v0qnYq6y8J li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-v0qnYq6y8J .lg_brand {
    margin: 0 1rem;
  }
  .cid-v0qnYq6y8J .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-v0qnYq6y8J .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v0qnYq6y8J .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0qnYq6y8J .nav-item {
    margin: 0 !important;
  }
}
.cid-v0qnYq6y8J .nav-item .nav-link {
  position: relative;
}
.cid-v0qnYq6y8J .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-v0qnYq6y8J .nav-item .nav-link:hover,
.cid-v0qnYq6y8J .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-v0qnYq6y8J .nav-item .nav-link:hover::before,
.cid-v0qnYq6y8J .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v0qnYq6y8J .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v0qnYq6y8J .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v0qnYq6y8J .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v0qnYq6y8J .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0qnYq6y8J .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-v0qnYq6y8J .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v0qnYq6y8J .offcanvas_box {
    display: none;
  }
}
.cid-v0qnYq6y8J .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-v0qnYq6y8J .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v0qnYq6y8J .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v0qnYq6y8J .container {
  display: flex;
  margin: auto;
}
.cid-v0qnYq6y8J .iconfont-wrapper {
  color: #1b1b1b;
  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-v0qnYq6y8J .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v0qnYq6y8J .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v0qnYq6y8J .navbar-caption {
  color: #ffffff;
}
.cid-v0qnYq6y8J .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v0qnYq6y8J .navbar-nav {
    margin: 0;
  }
}
.cid-v0qnYq6y8J .dropdown-menu,
.cid-v0qnYq6y8J .navbar.opened {
  background-color: false !important;
}
.cid-v0qnYq6y8J .nav-item:focus,
.cid-v0qnYq6y8J .nav-link:focus {
  outline: none;
}
.cid-v0qnYq6y8J .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0qnYq6y8J .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0qnYq6y8J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0qnYq6y8J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0qnYq6y8J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0qnYq6y8J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0qnYq6y8J .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v0qnYq6y8J .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v0qnYq6y8J .navbar.opened {
  transition: all 0.3s;
}
.cid-v0qnYq6y8J .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v0qnYq6y8J .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-v0qnYq6y8J .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0qnYq6y8J .navbar.collapsed {
  justify-content: center;
}
.cid-v0qnYq6y8J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0qnYq6y8J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0qnYq6y8J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0qnYq6y8J .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0qnYq6y8J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0qnYq6y8J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v0qnYq6y8J .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v0qnYq6y8J .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v0qnYq6y8J .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v0qnYq6y8J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0qnYq6y8J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0qnYq6y8J .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v0qnYq6y8J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0qnYq6y8J .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v0qnYq6y8J .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0qnYq6y8J .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v0qnYq6y8J .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v0qnYq6y8J .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v0qnYq6y8J .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v0qnYq6y8J .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0qnYq6y8J .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v0qnYq6y8J .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0qnYq6y8J .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0qnYq6y8J .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0qnYq6y8J .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-v0qnYq6y8J .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v0qnYq6y8J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0qnYq6y8J .dropdown-item.active,
.cid-v0qnYq6y8J .dropdown-item:active {
  background-color: transparent;
}
.cid-v0qnYq6y8J .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0qnYq6y8J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0qnYq6y8J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0qnYq6y8J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0qnYq6y8J .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-v0qnYq6y8J ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v0qnYq6y8J .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0qnYq6y8J button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-v0qnYq6y8J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0qnYq6y8J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0qnYq6y8J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qnYq6y8J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qnYq6y8J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0qnYq6y8J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qnYq6y8J nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0qnYq6y8J nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0qnYq6y8J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qnYq6y8J a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0qnYq6y8J .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-v0qnYq6y8J .navbar {
    height: 70px;
  }
  .cid-v0qnYq6y8J .navbar.opened {
    height: auto;
  }
  .cid-v0qnYq6y8J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0qnYq6y8J .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v0qnYq6y8J .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-v0qnYq6y8J .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v0qnYq6y8J .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-v0qnYq6y8J .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v0qnYq6y8J .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0qnYq6y8J .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-v0qnYq6y8J .text_widget {
  margin-bottom: 32px;
}
.cid-v0qnYq6y8J .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v0qnYq6y8J .text_widget a:hover {
  opacity: .5;
}
.cid-v0qnYq6y8J .icons-menu-main {
  display: flex;
}
.cid-v0qnYq6y8J .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0qnYq6y8J .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v0qnYq6y8J .mbr-section-subtitle,
.cid-v0qnYq6y8J .text_widget,
.cid-v0qnYq6y8J .mbr-section-btn {
  text-align: center;
}
.cid-v0qnYq6y8J a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v0qnYqLYTP {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-v0qnYqLYTP .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-v0qnYqLYTP .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0qnYqUACx {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0qnYqUACx .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-v0qnYqUACx .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0qnYqY3om {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0qnYqY3om .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-v0qnYr2QHB {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-v0qnYr2QHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qnYr2QHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0qnYr2QHB .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0qnYr2QHB img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v0qnYr2QHB .text-wrapper {
    padding: 2rem;
  }
}
.cid-v0qnYrezuv {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-v0qnYrezuv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qnYrezuv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0qnYrezuv .item {
  padding-bottom: 2rem;
}
.cid-v0qnYrezuv .item-wrapper {
  position: relative;
}
.cid-v0qnYrezuv .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v0qnYrezuv .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v0qnYrezuv .carousel-control,
.cid-v0qnYrezuv .close {
  background: #1b1b1b;
}
.cid-v0qnYrezuv .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0qnYrezuv .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0qnYrezuv .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0qnYrezuv .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0qnYrezuv .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v0qnYrezuv .close::before {
  content: '\e91a';
}
.cid-v0qnYrezuv .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0qnYrezuv .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v0qnYrezuv .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0qnYrezuv .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0qnYrezuv .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0qnYrezuv .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0qnYrezuv .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v0qnYrezuv .carousel-indicators li.active,
.cid-v0qnYrezuv .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0qnYrezuv .carousel-indicators li::after,
.cid-v0qnYrezuv .carousel-indicators li::before {
  content: none;
}
.cid-v0qnYrezuv .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0qnYrezuv .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0qnYrezuv .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0qnYrezuv .carousel-indicators {
    display: none;
  }
}
.cid-v0qnYrezuv .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0qnYrezuv .carousel-inner > .active {
  display: block;
}
.cid-v0qnYrezuv .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0qnYrezuv .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0qnYrezuv .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0qnYrezuv .carousel-control,
  .cid-v0qnYrezuv .carousel-indicators,
  .cid-v0qnYrezuv .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0qnYrezuv .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0qnYrezuv .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0qnYrezuv .carousel-indicators .active,
.cid-v0qnYrezuv .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0qnYrezuv .carousel-indicators .active {
  background: #fff;
}
.cid-v0qnYrezuv .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0qnYrezuv .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0qnYrezuv .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0qnYrezuv .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0qnYrezuv .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0qnYrezuv .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0qnYrezuv .carousel {
  width: 100%;
}
.cid-v0qnYrezuv .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0qnYrezuv .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0qnYrezuv .modal.fade .modal-dialog,
.cid-v0qnYrezuv .modal.in .modal-dialog {
  transform: none;
}
.cid-v0qnYrezuv .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0qnYrezuv H6 {
  text-align: center;
  color: #000000;
}
.cid-v0qnYrezuv H3 {
  color: #000000;
}
.cid-v0qnYrAmqD {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0qnYrAmqD .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-v0qnYrAmqD .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0qnYrEOLj {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-v0qnYrEOLj .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qnYrEOLj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0qnYrEOLj .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-v0qnYrEOLj .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-v0qnYrEOLj .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-v0qnYrEOLj .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-v0qnYrEOLj .container {
    max-width: 100%;
  }
  .cid-v0qnYrEOLj .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-v0qnYrEOLj .item-wrap {
  width: 100%;
}
.cid-v0qnYrEOLj .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-v0qnYrEOLj .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v0qnYrEOLj .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v0qnYrEOLj .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0qnYrEOLj .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-v0qnYrEOLj .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0qnYrEOLj .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-v0qnYrEOLj .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-v0qnYrEOLj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-v0qnYrEOLj .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-v0qnYrEOLj .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-v0qnYrEOLj .soc-item:hover {
  transform: translateY(-3px);
}
.cid-v0qnYrEOLj .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0qnYrEOLj .col-links {
    padding-top: 20px;
  }
}
.cid-v0qnYrEOLj .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-v0qnYrEOLj .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-v0qnYrEOLj .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-v0qnYrEOLj .list {
    text-align: center !important;
  }
}
.cid-v0qnYrEOLj .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-v0qnYrEOLj .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-v0qnYrEOLj .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-v0qnYrEOLj .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-v0qnYrEOLj .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-v0qnYrEOLj .list a:hover:before {
  width: 100%;
}
.cid-v0qnYrEOLj .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-v0qnYrEOLj .col-copyright {
    padding-top: 40px;
  }
}
.cid-v0qnYrEOLj .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-v0qnYrEOLj .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-v0qvxECKhT .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-v0qvxECKhT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-v0qvxECKhT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0qvxECKhT .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0qvxECKhT .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v0qvxECKhT .menu_box .navbar.opened,
  .cid-v0qvxECKhT .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v0qvxECKhT .navbar-dropdown {
  position: relative !important;
}
.cid-v0qvxECKhT .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v0qvxECKhT .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v0qvxECKhT .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v0qvxECKhT .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v0qvxECKhT .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v0qvxECKhT .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v0qvxECKhT .offcanvas-body .mbr-text,
  .cid-v0qvxECKhT .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v0qvxECKhT .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v0qvxECKhT .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v0qvxECKhT .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-v0qvxECKhT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v0qvxECKhT .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v0qvxECKhT .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v0qvxECKhT .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v0qvxECKhT ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v0qvxECKhT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0qvxECKhT .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-v0qvxECKhT .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v0qvxECKhT li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-v0qvxECKhT .lg_brand {
    margin: 0 1rem;
  }
  .cid-v0qvxECKhT .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-v0qvxECKhT .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v0qvxECKhT .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0qvxECKhT .nav-item {
    margin: 0 !important;
  }
}
.cid-v0qvxECKhT .nav-item .nav-link {
  position: relative;
}
.cid-v0qvxECKhT .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-v0qvxECKhT .nav-item .nav-link:hover,
.cid-v0qvxECKhT .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-v0qvxECKhT .nav-item .nav-link:hover::before,
.cid-v0qvxECKhT .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v0qvxECKhT .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v0qvxECKhT .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v0qvxECKhT .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v0qvxECKhT .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0qvxECKhT .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-v0qvxECKhT .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v0qvxECKhT .offcanvas_box {
    display: none;
  }
}
.cid-v0qvxECKhT .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-v0qvxECKhT .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v0qvxECKhT .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v0qvxECKhT .container {
  display: flex;
  margin: auto;
}
.cid-v0qvxECKhT .iconfont-wrapper {
  color: #1b1b1b;
  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-v0qvxECKhT .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v0qvxECKhT .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v0qvxECKhT .navbar-caption {
  color: #ffffff;
}
.cid-v0qvxECKhT .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v0qvxECKhT .navbar-nav {
    margin: 0;
  }
}
.cid-v0qvxECKhT .dropdown-menu,
.cid-v0qvxECKhT .navbar.opened {
  background-color: false !important;
}
.cid-v0qvxECKhT .nav-item:focus,
.cid-v0qvxECKhT .nav-link:focus {
  outline: none;
}
.cid-v0qvxECKhT .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0qvxECKhT .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0qvxECKhT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0qvxECKhT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0qvxECKhT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0qvxECKhT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0qvxECKhT .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v0qvxECKhT .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v0qvxECKhT .navbar.opened {
  transition: all 0.3s;
}
.cid-v0qvxECKhT .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v0qvxECKhT .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-v0qvxECKhT .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0qvxECKhT .navbar.collapsed {
  justify-content: center;
}
.cid-v0qvxECKhT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0qvxECKhT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0qvxECKhT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0qvxECKhT .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0qvxECKhT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0qvxECKhT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v0qvxECKhT .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v0qvxECKhT .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v0qvxECKhT .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v0qvxECKhT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0qvxECKhT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0qvxECKhT .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v0qvxECKhT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0qvxECKhT .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v0qvxECKhT .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0qvxECKhT .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v0qvxECKhT .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v0qvxECKhT .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v0qvxECKhT .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v0qvxECKhT .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0qvxECKhT .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v0qvxECKhT .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0qvxECKhT .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0qvxECKhT .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0qvxECKhT .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-v0qvxECKhT .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v0qvxECKhT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0qvxECKhT .dropdown-item.active,
.cid-v0qvxECKhT .dropdown-item:active {
  background-color: transparent;
}
.cid-v0qvxECKhT .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0qvxECKhT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0qvxECKhT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0qvxECKhT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0qvxECKhT .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-v0qvxECKhT ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v0qvxECKhT .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0qvxECKhT button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-v0qvxECKhT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0qvxECKhT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0qvxECKhT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qvxECKhT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qvxECKhT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0qvxECKhT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qvxECKhT nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0qvxECKhT nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0qvxECKhT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qvxECKhT a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0qvxECKhT .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-v0qvxECKhT .navbar {
    height: 70px;
  }
  .cid-v0qvxECKhT .navbar.opened {
    height: auto;
  }
  .cid-v0qvxECKhT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0qvxECKhT .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v0qvxECKhT .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-v0qvxECKhT .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v0qvxECKhT .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-v0qvxECKhT .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v0qvxECKhT .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0qvxECKhT .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-v0qvxECKhT .text_widget {
  margin-bottom: 32px;
}
.cid-v0qvxECKhT .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v0qvxECKhT .text_widget a:hover {
  opacity: .5;
}
.cid-v0qvxECKhT .icons-menu-main {
  display: flex;
}
.cid-v0qvxECKhT .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0qvxECKhT .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v0qvxECKhT .mbr-section-subtitle,
.cid-v0qvxECKhT .text_widget,
.cid-v0qvxECKhT .mbr-section-btn {
  text-align: center;
}
.cid-v0qvxECKhT a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v0qvxFrjSB {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-v0qvxFrjSB .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-v0qvxFrjSB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0qvxGSVtq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0qvxGSVtq .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-v0qvxGSVtq .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0qvxGZwOT {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0qvxGZwOT .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-v0qvxH3ujD {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-v0qvxH3ujD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qvxH3ujD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0qvxH3ujD .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0qvxH3ujD img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v0qvxH3ujD .text-wrapper {
    padding: 2rem;
  }
}
.cid-v0qvxHiWwN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-v0qvxHiWwN .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qvxHiWwN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0qvxHiWwN .item {
  padding-bottom: 2rem;
}
.cid-v0qvxHiWwN .item-wrapper {
  position: relative;
}
.cid-v0qvxHiWwN .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v0qvxHiWwN .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v0qvxHiWwN .carousel-control,
.cid-v0qvxHiWwN .close {
  background: #1b1b1b;
}
.cid-v0qvxHiWwN .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0qvxHiWwN .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0qvxHiWwN .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0qvxHiWwN .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0qvxHiWwN .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v0qvxHiWwN .close::before {
  content: '\e91a';
}
.cid-v0qvxHiWwN .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0qvxHiWwN .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v0qvxHiWwN .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0qvxHiWwN .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0qvxHiWwN .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0qvxHiWwN .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0qvxHiWwN .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v0qvxHiWwN .carousel-indicators li.active,
.cid-v0qvxHiWwN .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0qvxHiWwN .carousel-indicators li::after,
.cid-v0qvxHiWwN .carousel-indicators li::before {
  content: none;
}
.cid-v0qvxHiWwN .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0qvxHiWwN .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0qvxHiWwN .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0qvxHiWwN .carousel-indicators {
    display: none;
  }
}
.cid-v0qvxHiWwN .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0qvxHiWwN .carousel-inner > .active {
  display: block;
}
.cid-v0qvxHiWwN .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0qvxHiWwN .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0qvxHiWwN .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0qvxHiWwN .carousel-control,
  .cid-v0qvxHiWwN .carousel-indicators,
  .cid-v0qvxHiWwN .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0qvxHiWwN .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0qvxHiWwN .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0qvxHiWwN .carousel-indicators .active,
.cid-v0qvxHiWwN .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0qvxHiWwN .carousel-indicators .active {
  background: #fff;
}
.cid-v0qvxHiWwN .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0qvxHiWwN .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0qvxHiWwN .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0qvxHiWwN .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0qvxHiWwN .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0qvxHiWwN .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0qvxHiWwN .carousel {
  width: 100%;
}
.cid-v0qvxHiWwN .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0qvxHiWwN .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0qvxHiWwN .modal.fade .modal-dialog,
.cid-v0qvxHiWwN .modal.in .modal-dialog {
  transform: none;
}
.cid-v0qvxHiWwN .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0qvxHiWwN H6 {
  text-align: center;
  color: #000000;
}
.cid-v0qvxHiWwN H3 {
  color: #000000;
}
.cid-v0qvxHETtQ {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0qvxHETtQ .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-v0qvxHETtQ .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0qvxHMZbs {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-v0qvxHMZbs .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qvxHMZbs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0qvxHMZbs .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-v0qvxHMZbs .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-v0qvxHMZbs .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-v0qvxHMZbs .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-v0qvxHMZbs .container {
    max-width: 100%;
  }
  .cid-v0qvxHMZbs .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-v0qvxHMZbs .item-wrap {
  width: 100%;
}
.cid-v0qvxHMZbs .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-v0qvxHMZbs .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v0qvxHMZbs .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v0qvxHMZbs .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0qvxHMZbs .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-v0qvxHMZbs .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0qvxHMZbs .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-v0qvxHMZbs .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-v0qvxHMZbs .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-v0qvxHMZbs .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-v0qvxHMZbs .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-v0qvxHMZbs .soc-item:hover {
  transform: translateY(-3px);
}
.cid-v0qvxHMZbs .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0qvxHMZbs .col-links {
    padding-top: 20px;
  }
}
.cid-v0qvxHMZbs .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-v0qvxHMZbs .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-v0qvxHMZbs .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-v0qvxHMZbs .list {
    text-align: center !important;
  }
}
.cid-v0qvxHMZbs .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-v0qvxHMZbs .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-v0qvxHMZbs .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-v0qvxHMZbs .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-v0qvxHMZbs .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-v0qvxHMZbs .list a:hover:before {
  width: 100%;
}
.cid-v0qvxHMZbs .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-v0qvxHMZbs .col-copyright {
    padding-top: 40px;
  }
}
.cid-v0qvxHMZbs .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-v0qvxHMZbs .copyright {
  color: #ffffff;
  padding: 40px 0;
}
.cid-v0qyF4jEme .navbar-dropdown {
  background-color: #232323 !important;
  padding: 0;
}
.cid-v0qyF4jEme .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #232323 !important;
  background: #232323;
}
.cid-v0qyF4jEme .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0qyF4jEme .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-v0qyF4jEme .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-v0qyF4jEme .menu_box .navbar.opened,
  .cid-v0qyF4jEme .menu_box .navbar-collapse {
    background-color: #232323 !important;
    transition: all 0s ease 0s;
  }
}
.cid-v0qyF4jEme .navbar-dropdown {
  position: relative !important;
}
.cid-v0qyF4jEme .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-v0qyF4jEme .btn:hover {
  box-shadow: none;
}
@media (min-width: 992px) {
  .cid-v0qyF4jEme .offcanvas_image img {
    width: auto;
    object-fit: cover;
    display: inline-block;
  }
  .cid-v0qyF4jEme .offcanvas-header {
    position: relative;
    padding: 0;
  }
  .cid-v0qyF4jEme .offcanvas-header .btn-close {
    position: absolute;
    top: -70px;
    right: 0;
    width: 35px;
    height: 30px;
  }
  .cid-v0qyF4jEme .offcanvas-body {
    text-align: center;
    padding: 0;
  }
  .cid-v0qyF4jEme .offcanvas-body .mbr-text,
  .cid-v0qyF4jEme .offcanvas-body .mbr-section-subtitle {
    margin-bottom: 32px;
  }
  .cid-v0qyF4jEme .offcanvas-body .offcanvas_contact {
    margin: 0;
  }
  .cid-v0qyF4jEme .offcanvas_box button.btn_offcanvas {
    outline: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    align-self: center;
  }
  .cid-v0qyF4jEme .offcanvas_box button.btn_offcanvas .hamburger span {
    position: absolute;
    right: 0;
    width: 40px;
    height: 2px;
    border-right: 5px;
    background-color: #ffffff;
  }
  .cid-v0qyF4jEme .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(1) {
    top: 18px;
    transition: all 0.2s;
  }
  .cid-v0qyF4jEme .offcanvas_box button.btn_offcanvas .hamburger span:nth-child(2) {
    top: 25px;
    transition: all 0.2s;
  }
  .cid-v0qyF4jEme .offcanvas_box button.btn_offcanvas:hover .hamburger span {
    width: 36px;
  }
  .cid-v0qyF4jEme .offcanvas_box button.btn_offcanvas:hover .hamburger span:nth-child(2) {
    width: 33px;
    transition-delay: 0.2s;
  }
  .cid-v0qyF4jEme ul.navbar-nav {
    padding-bottom: 1.5rem;
  }
  .cid-v0qyF4jEme .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0qyF4jEme .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-v0qyF4jEme .link.dropdown-toggle::after {
    padding: 0 !important;
    transform: rotate(45deg);
  }
  .cid-v0qyF4jEme li.nav-item {
    position: relative;
    display: inline-block;
    padding: 1px 7px !important;
    vertical-align: middle;
    line-height: 2em !important;
    font-weight: 600 !important;
    text-decoration: none;
    letter-spacing: 0 !important;
    z-index: 1;
  }
  .cid-v0qyF4jEme .lg_brand {
    margin: 0 1rem;
  }
  .cid-v0qyF4jEme .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: center;
  }
}
.cid-v0qyF4jEme .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-v0qyF4jEme .nav-item {
    margin: 4px 20px;
  }
}
@media (max-width: 991px) {
  .cid-v0qyF4jEme .nav-item {
    margin: 0 !important;
  }
}
.cid-v0qyF4jEme .nav-item .nav-link {
  position: relative;
}
.cid-v0qyF4jEme .nav-item .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: all 0.3s ease-out;
}
.cid-v0qyF4jEme .nav-item .nav-link:hover,
.cid-v0qyF4jEme .nav-item .nav-link:focus {
  opacity: 1;
  color: #ffffff !important;
}
.cid-v0qyF4jEme .nav-item .nav-link:hover::before,
.cid-v0qyF4jEme .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-v0qyF4jEme .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-v0qyF4jEme .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-v0qyF4jEme .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-v0qyF4jEme .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-v0qyF4jEme .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-v0qyF4jEme .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-v0qyF4jEme .offcanvas_box {
    display: none;
  }
}
.cid-v0qyF4jEme .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-v0qyF4jEme .nav-dropdown .link {
  font-weight: 300 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-v0qyF4jEme .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-v0qyF4jEme .container {
  display: flex;
  margin: auto;
}
.cid-v0qyF4jEme .iconfont-wrapper {
  color: #1b1b1b;
  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-v0qyF4jEme .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-v0qyF4jEme .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-v0qyF4jEme .navbar-caption {
  color: #ffffff;
}
.cid-v0qyF4jEme .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-v0qyF4jEme .navbar-nav {
    margin: 0;
  }
}
.cid-v0qyF4jEme .dropdown-menu,
.cid-v0qyF4jEme .navbar.opened {
  background-color: false !important;
}
.cid-v0qyF4jEme .nav-item:focus,
.cid-v0qyF4jEme .nav-link:focus {
  outline: none;
}
.cid-v0qyF4jEme .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0qyF4jEme .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0qyF4jEme .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0qyF4jEme .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0qyF4jEme .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0qyF4jEme .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0qyF4jEme .navbar {
  min-height: 70px;
  padding: 20px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-v0qyF4jEme .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-v0qyF4jEme .navbar.opened {
  transition: all 0.3s;
}
.cid-v0qyF4jEme .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-v0qyF4jEme .navbar .navbar-logo img {
  width: auto;
  object-fit: contain;
}
.cid-v0qyF4jEme .navbar .navbar-collapse {
  justify-content: center;
  z-index: 1;
}
.cid-v0qyF4jEme .navbar.collapsed {
  justify-content: center;
}
.cid-v0qyF4jEme .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0qyF4jEme .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v0qyF4jEme .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0qyF4jEme .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0qyF4jEme .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0qyF4jEme .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-v0qyF4jEme .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-v0qyF4jEme .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-v0qyF4jEme .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 25px;
  }
  .cid-v0qyF4jEme .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0qyF4jEme .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0qyF4jEme .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-v0qyF4jEme .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0qyF4jEme .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-v0qyF4jEme .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0qyF4jEme .navbar ul.navbar-nav {
    overflow: hidden;
  }
  .cid-v0qyF4jEme .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-v0qyF4jEme .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-v0qyF4jEme .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-v0qyF4jEme .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0qyF4jEme .navbar .icons-menu {
    padding: 0;
  }
}
.cid-v0qyF4jEme .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0qyF4jEme .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0qyF4jEme .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0qyF4jEme .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-v0qyF4jEme .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 400;
}
.cid-v0qyF4jEme .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v0qyF4jEme .dropdown-item.active,
.cid-v0qyF4jEme .dropdown-item:active {
  background-color: transparent;
}
.cid-v0qyF4jEme .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0qyF4jEme .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0qyF4jEme .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0qyF4jEme .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0qyF4jEme .navbar .dropdown > .dropdown-menu {
  display: none;
}
.cid-v0qyF4jEme ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-v0qyF4jEme .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0qyF4jEme button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #232323;
  background: #353535;
}
.cid-v0qyF4jEme button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-v0qyF4jEme button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0qyF4jEme button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qyF4jEme button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0qyF4jEme button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0qyF4jEme nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qyF4jEme nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0qyF4jEme nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0qyF4jEme nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0qyF4jEme a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-v0qyF4jEme .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-v0qyF4jEme .navbar {
    height: 70px;
  }
  .cid-v0qyF4jEme .navbar.opened {
    height: auto;
  }
  .cid-v0qyF4jEme .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0qyF4jEme .navbar-dropdown .navbar-logo {
  margin-right: 15px;
}
@media (min-width: 768px) {
  .cid-v0qyF4jEme .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.cid-v0qyF4jEme .mbr-section-btn-main {
  padding-top: 5px;
}
.cid-v0qyF4jEme .mbr-section-btn-main .btn {
  margin: 0 4px 4px 4px;
  min-width: 195px;
}
@media (max-width: 992px) {
  .cid-v0qyF4jEme .mbr-section-btn-main .btn {
    margin: 0 16px 4px;
  }
}
.cid-v0qyF4jEme .navbar-caption:hover {
  color: #ffffff;
}
@media (min-width: 992px) {
  .cid-v0qyF4jEme .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-v0qyF4jEme .text_widget {
  margin-bottom: 32px;
}
.cid-v0qyF4jEme .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-v0qyF4jEme .text_widget a:hover {
  opacity: .5;
}
.cid-v0qyF4jEme .icons-menu-main {
  display: flex;
}
.cid-v0qyF4jEme .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-v0qyF4jEme .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-v0qyF4jEme .mbr-section-subtitle,
.cid-v0qyF4jEme .text_widget,
.cid-v0qyF4jEme .mbr-section-btn {
  text-align: center;
}
.cid-v0qyF4jEme a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-v0qyF54hgN {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background-color: #5c5c5c;
}
.cid-v0qyF54hgN .mbr-text {
  text-align: left;
  color: #ffffff;
}
.cid-v0qyF54hgN .mbr-section-subtitle {
  color: #ffffff;
}
.cid-v0qyF5d7Sq {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0qyF5d7Sq .mbr-text {
  text-align: left;
  color: #7d818f;
}
.cid-v0qyF5d7Sq .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0qyF5iXpG {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-v0qyF5iXpG .mbr-text {
  text-align: left;
  color: #353535;
}
.cid-v0qyF5qDPJ {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #fafafa;
}
.cid-v0qyF5qDPJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qyF5qDPJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v0qyF5qDPJ .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v0qyF5qDPJ img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v0qyF5qDPJ .text-wrapper {
    padding: 2rem;
  }
}
.cid-v0qyF5BGzt {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ececec;
}
.cid-v0qyF5BGzt .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qyF5BGzt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0qyF5BGzt .item {
  padding-bottom: 2rem;
}
.cid-v0qyF5BGzt .item-wrapper {
  position: relative;
}
.cid-v0qyF5BGzt .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-v0qyF5BGzt .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-v0qyF5BGzt .carousel-control,
.cid-v0qyF5BGzt .close {
  background: #1b1b1b;
}
.cid-v0qyF5BGzt .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-v0qyF5BGzt .carousel-control-prev span {
  margin-right: 5px;
}
.cid-v0qyF5BGzt .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-v0qyF5BGzt .carousel-control-next span {
  margin-left: 5px;
}
.cid-v0qyF5BGzt .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-v0qyF5BGzt .close::before {
  content: '\e91a';
}
.cid-v0qyF5BGzt .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-v0qyF5BGzt .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-v0qyF5BGzt .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0qyF5BGzt .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-v0qyF5BGzt .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-v0qyF5BGzt .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-v0qyF5BGzt .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-v0qyF5BGzt .carousel-indicators li.active,
.cid-v0qyF5BGzt .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-v0qyF5BGzt .carousel-indicators li::after,
.cid-v0qyF5BGzt .carousel-indicators li::before {
  content: none;
}
.cid-v0qyF5BGzt .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-v0qyF5BGzt .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-v0qyF5BGzt .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-v0qyF5BGzt .carousel-indicators {
    display: none;
  }
}
.cid-v0qyF5BGzt .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-v0qyF5BGzt .carousel-inner > .active {
  display: block;
}
.cid-v0qyF5BGzt .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-v0qyF5BGzt .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-v0qyF5BGzt .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-v0qyF5BGzt .carousel-control,
  .cid-v0qyF5BGzt .carousel-indicators,
  .cid-v0qyF5BGzt .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-v0qyF5BGzt .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-v0qyF5BGzt .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-v0qyF5BGzt .carousel-indicators .active,
.cid-v0qyF5BGzt .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-v0qyF5BGzt .carousel-indicators .active {
  background: #fff;
}
.cid-v0qyF5BGzt .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-v0qyF5BGzt .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-v0qyF5BGzt .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-v0qyF5BGzt .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-v0qyF5BGzt .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-v0qyF5BGzt .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-v0qyF5BGzt .carousel {
  width: 100%;
}
.cid-v0qyF5BGzt .modal-backdrop.in {
  opacity: 0.8;
}
.cid-v0qyF5BGzt .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-v0qyF5BGzt .modal.fade .modal-dialog,
.cid-v0qyF5BGzt .modal.in .modal-dialog {
  transform: none;
}
.cid-v0qyF5BGzt .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-v0qyF5BGzt H6 {
  text-align: center;
  color: #000000;
}
.cid-v0qyF5BGzt H3 {
  color: #000000;
}
.cid-v0qyF5XLf0 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #f7f7f7;
}
.cid-v0qyF5XLf0 .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-v0qyF5XLf0 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-v0qyF63tdU {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #212428;
}
.cid-v0qyF63tdU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0qyF63tdU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0qyF63tdU .container {
  width: 100%;
  max-width: 1310px;
}
@media (max-width: 1199px) {
  .cid-v0qyF63tdU .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .cid-v0qyF63tdU .container {
    max-width: 720px;
  }
}
@media (max-width: 767px) {
  .cid-v0qyF63tdU .container {
    max-width: 540px;
  }
}
@media (max-width: 575px) {
  .cid-v0qyF63tdU .container {
    max-width: 100%;
  }
  .cid-v0qyF63tdU .container .row > [class*="col"] {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.cid-v0qyF63tdU .item-wrap {
  width: 100%;
}
.cid-v0qyF63tdU .navbar-brand {
  display: flex;
  flex-basis: 100%;
  flex-wrap: wrap;
  word-break: break-word !important;
  word-wrap: break-word !important;
  min-height: 50px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 35px;
  padding: 0;
  transition: all 0.4s;
  z-index: 1;
  white-space: normal;
}
.cid-v0qyF63tdU .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-v0qyF63tdU .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-v0qyF63tdU .navbar-brand .navbar-caption {
  line-height: inherit !important;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0qyF63tdU .navbar-brand .navbar-caption:hover {
  text-decoration-line: none !important;
}
.cid-v0qyF63tdU .navbar-brand .navbar-logo a {
  outline: none;
  word-break: break-word !important;
  word-wrap: break-word !important;
}
.cid-v0qyF63tdU .navbar-brand .navbar-logo a:hover {
  text-decoration-line: none !important;
}
.cid-v0qyF63tdU .social-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: -4px -12px;
}
.cid-v0qyF63tdU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 4px 12px;
  min-width: 60px;
  padding: 10px;
  aspect-ratio: 1;
  border-radius: 6px;
  background: linear-gradient(145deg, #1e2024, #23272b);
  transition: 0.4s all;
}
.cid-v0qyF63tdU .soc-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 4;
  transition: 0.4s all;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right bottom, #212428, #16181c);
  opacity: 0;
}
.cid-v0qyF63tdU .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.4s all;
  font-size: 22px;
  color: #c4cfde;
}
.cid-v0qyF63tdU .soc-item:hover {
  transform: translateY(-3px);
}
.cid-v0qyF63tdU .soc-item:hover:before {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v0qyF63tdU .col-links {
    padding-top: 20px;
  }
}
.cid-v0qyF63tdU .mbr-section-subtitle {
  color: #fafafa;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .cid-v0qyF63tdU .mbr-section-subtitle {
    text-align: center !important;
  }
}
.cid-v0qyF63tdU .list {
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin-bottom: 40px;
  color: #fafafa;
  transition: 0.4s all;
}
@media (max-width: 575px) {
  .cid-v0qyF63tdU .list {
    text-align: center !important;
  }
}
.cid-v0qyF63tdU .list li {
  width: 100%;
  color: inherit !important;
  margin-bottom: 8px;
  transition: 0.4s all;
}
.cid-v0qyF63tdU .list li:not(:first-child) {
  margin-top: 10px;
}
.cid-v0qyF63tdU .list a {
  position: relative;
  color: inherit !important;
  line-height: inherit !important;
  transition: 0.4s all;
}
.cid-v0qyF63tdU .list a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: 0.4s all;
}
.cid-v0qyF63tdU .list a:hover {
  color: #ffffff !important;
  line-height: inherit !important;
}
.cid-v0qyF63tdU .list a:hover:before {
  width: 100%;
}
.cid-v0qyF63tdU .col-copyright {
  padding-top: 80px;
}
@media (max-width: 767px) {
  .cid-v0qyF63tdU .col-copyright {
    padding-top: 40px;
  }
}
.cid-v0qyF63tdU .border-item {
  width: 100%;
  height: 1px;
  background-color: #16181c;
}
.cid-v0qyF63tdU .copyright {
  color: #ffffff;
  padding: 40px 0;
}
