body {
  font-family: Inter;
}
.display-1 {
  font-family: 'Inter', sans-serif;
  font-size: 5rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 8rem;
}
.display-2 {
  font-family: 'Inter', sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 6.08rem;
}
.display-4 {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 3.52rem;
}
.display-7 {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.5rem;
    font-size: calc( 2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.4rem + (5 - 2.4) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.04rem;
    font-size: calc( 1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.98rem + (3.8 - 1.98) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.76rem;
    font-size: calc( 1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.42rem + (2.2 - 1.42) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 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.625rem 0.874rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 6px;
}
.btn-lg {
  padding: 1.3125rem 2.5rem;
  border-radius: 6px;
}
.bg-primary {
  background-color: #5aac98 !important;
}
.bg-success {
  background-color: #1e7c3a !important;
}
.bg-info {
  background-color: #74a3c7 !important;
}
.bg-warning {
  background-color: #ffd785 !important;
}
.bg-danger {
  background-color: #ff9685 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5aac98 !important;
  border-color: #5aac98 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #478c7b !important;
  border-color: #478c7b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #478c7b !important;
  border-color: #478c7b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3424 !important;
  border-color: #ff3424 !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: #f01200 !important;
  border-color: #f01200 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #f01200 !important;
  border-color: #f01200 !important;
}
.btn-info,
.btn-info:active {
  background-color: #74a3c7 !important;
  border-color: #74a3c7 !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: #508bb8 !important;
  border-color: #508bb8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #508bb8 !important;
  border-color: #508bb8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #1e7c3a !important;
  border-color: #1e7c3a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #145327 !important;
  border-color: #145327 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #145327 !important;
  border-color: #145327 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffd785 !important;
  border-color: #ffd785 !important;
  color: #855900 !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: #523700 !important;
  background-color: #ffc652 !important;
  border-color: #ffc652 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #855900 !important;
  background-color: #ffc652 !important;
  border-color: #ffc652 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9685 !important;
  border-color: #ff9685 !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: #ff6a52 !important;
  border-color: #ff6a52 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff6a52 !important;
  border-color: #ff6a52 !important;
}
.btn-white {
  color: #333333 !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: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-white:hover {
  color: #fafafa !important;
}
.btn-white:hover,
.btn-white:hover:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover:hover,
.btn-white:hover:focus,
.btn-white:hover.focus,
.btn-white:hover.active {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover.disabled,
.btn-white:hover:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black {
  color: #fafafa !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !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: #1a1a1a !important;
  border-color: #1a1a1a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #1a1a1a !important;
  border-color: #1a1a1a !important;
}
.btn-black:hover {
  color: #333333 !important;
}
.btn-black:hover,
.btn-black:hover: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-black:hover:hover,
.btn-black:hover:focus,
.btn-black:hover.focus,
.btn-black:hover.active {
  color: #616161 !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover.disabled,
.btn-black:hover:disabled {
  color: #7a7a7a !important;
  background-color: #e1e1e1 !important;
  border-color: #e1e1e1 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #5aac98;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #478c7b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5aac98 !important;
  border-color: #5aac98 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff3424;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #f01200 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3424 !important;
  border-color: #ff3424 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #74a3c7;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #508bb8 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #74a3c7 !important;
  border-color: #74a3c7 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #1e7c3a;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #145327 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #1e7c3a !important;
  border-color: #1e7c3a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffd785;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffc652 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #855900 !important;
  background-color: #ffd785 !important;
  border-color: #ffd785 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9685;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff6a52 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9685 !important;
  border-color: #ff9685 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #fafafa;
  background-color: transparent;
  border-color: transparent;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: transparent;
  border-color: transparent;
}
.text-primary {
  color: #5aac98 !important;
}
.text-secondary {
  color: #ff3424 !important;
}
.text-success {
  color: #1e7c3a !important;
}
.text-info {
  color: #74a3c7 !important;
}
.text-warning {
  color: #ffd785 !important;
}
.text-danger {
  color: #ff9685 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #333333 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #478c7b !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #f01200 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #145327 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #508bb8 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffc652 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff6a52 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #e1e1e1 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #74a3c7;
}
.alert-warning {
  background-color: #ffd785;
}
.alert-danger {
  background-color: #ff9685;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5aac98;
  border-color: #5aac98;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5aac98;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #afd7cd;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #47d271;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cfdfec;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #5aac98;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5aac98;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5aac98;
  border-bottom-color: #5aac98;
}
.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: #5aac98 !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: #ff3424 !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='%235aac98' %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-uL0G9hAPBA {
  background-color: transparent;
}
.cid-uL0G9hAPBA .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uL0G9hAPBA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uL0G9hAPBA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL0G9hAPBA .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uL0G9hAPBA .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uL0G9hAPBA .menu_box .navbar.opened,
  .cid-uL0G9hAPBA .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uL0G9hAPBA .navbar-dropdown {
  position: relative !important;
}
.cid-uL0G9hAPBA .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uL0G9hAPBA .btn:hover {
  box-shadow: none;
}
.cid-uL0G9hAPBA .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uL0G9hAPBA .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uL0G9hAPBA .nav-item {
    margin: 0 !important;
  }
}
.cid-uL0G9hAPBA .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uL0G9hAPBA .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uL0G9hAPBA .nav-item .nav-link:hover::before,
.cid-uL0G9hAPBA .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uL0G9hAPBA .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uL0G9hAPBA .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uL0G9hAPBA .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uL0G9hAPBA .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uL0G9hAPBA .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-uL0G9hAPBA .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uL0G9hAPBA .offcanvas_box {
    display: none;
  }
}
.cid-uL0G9hAPBA .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uL0G9hAPBA .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uL0G9hAPBA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uL0G9hAPBA .container {
  display: flex;
  margin: auto;
}
.cid-uL0G9hAPBA .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uL0G9hAPBA .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uL0G9hAPBA .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uL0G9hAPBA .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uL0G9hAPBA .navbar-nav {
    margin: 0;
  }
}
.cid-uL0G9hAPBA .dropdown-menu,
.cid-uL0G9hAPBA .navbar.opened {
  background-color: false !important;
}
.cid-uL0G9hAPBA .nav-item:focus,
.cid-uL0G9hAPBA .nav-link:focus {
  outline: none;
}
.cid-uL0G9hAPBA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL0G9hAPBA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL0G9hAPBA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL0G9hAPBA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL0G9hAPBA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL0G9hAPBA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL0G9hAPBA .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uL0G9hAPBA .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uL0G9hAPBA .navbar.opened {
  transition: all 0.3s;
}
.cid-uL0G9hAPBA .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uL0G9hAPBA .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uL0G9hAPBA .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL0G9hAPBA .navbar.collapsed {
  justify-content: center;
}
.cid-uL0G9hAPBA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL0G9hAPBA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uL0G9hAPBA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL0G9hAPBA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL0G9hAPBA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL0G9hAPBA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uL0G9hAPBA .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uL0G9hAPBA .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uL0G9hAPBA .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uL0G9hAPBA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL0G9hAPBA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL0G9hAPBA .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uL0G9hAPBA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL0G9hAPBA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uL0G9hAPBA .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL0G9hAPBA .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uL0G9hAPBA .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uL0G9hAPBA .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uL0G9hAPBA .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uL0G9hAPBA .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL0G9hAPBA .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uL0G9hAPBA .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL0G9hAPBA .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL0G9hAPBA .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL0G9hAPBA .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-uL0G9hAPBA .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uL0G9hAPBA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL0G9hAPBA .dropdown-item.active,
.cid-uL0G9hAPBA .dropdown-item:active {
  background-color: transparent;
}
.cid-uL0G9hAPBA .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uL0G9hAPBA .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uL0G9hAPBA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL0G9hAPBA .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL0G9hAPBA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL0G9hAPBA ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uL0G9hAPBA .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL0G9hAPBA button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff5753;
}
.cid-uL0G9hAPBA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uL0G9hAPBA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL0G9hAPBA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL0G9hAPBA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL0G9hAPBA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL0G9hAPBA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL0G9hAPBA nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL0G9hAPBA nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL0G9hAPBA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL0G9hAPBA a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uL0G9hAPBA .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-uL0G9hAPBA .navbar {
    height: 70px;
  }
  .cid-uL0G9hAPBA .navbar.opened {
    height: auto;
  }
  .cid-uL0G9hAPBA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uL0G9hAPBA .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uL0G9hAPBA .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uL0G9hAPBA .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uL0G9hAPBA .navbar-caption:hover {
  color: #5aac98;
}
@media (min-width: 992px) {
  .cid-uL0G9hAPBA .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uL0G9hAPBA .text_widget {
  margin-bottom: 32px;
}
.cid-uL0G9hAPBA .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uL0G9hAPBA .text_widget a:hover,
.cid-uL0G9hAPBA .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uL0G9hAPBA .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uL0G9hAPBA .icons-menu-main {
  display: flex;
}
.cid-uL0G9hAPBA .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uL0G9hAPBA .navbar-caption {
  color: #000000;
}
.cid-uL0G9hAPBA .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uL0G9hAPBA .mbr-section-subtitle,
.cid-uL0G9hAPBA .text_widget,
.cid-uL0G9hAPBA .mbr-section-btn {
  text-align: center;
}
.cid-uL0G9hAPBA a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uL0G9Nj3zz {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/screenshot-231.png-1343x545.png");
}
.cid-uL0G9Nj3zz .row.heading {
  margin-bottom: 72px;
}
.cid-uL0G9Nj3zz .card {
  flex-direction: row;
  justify-content: center;
}
.cid-uL0G9Nj3zz .card-box {
  display: flex;
  flex-direction: column;
}
.cid-uL0G9Nj3zz .card-box .card-title {
  color: #ffffff;
}
.cid-uL0G9Nj3zz .card-box .mbr-text {
  color: #ffffff;
}
.cid-uL0G9Nj3zz .card-box .link .btn {
  margin: 0;
}
.cid-uL0G9Nj3zz .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-uL0G9Nj3zz .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
.cid-uL0G9Nj3zz .card-title {
  margin: 0;
}
.cid-uL0G9Nj3zz .card-img,
.cid-uL0G9Nj3zz .card-box {
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uL0G9Nj3zz .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-uL0G9Nj3zz .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-uL0G9Nj3zz .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uL0G9Nj3zz .card .card-box .card-title,
  .cid-uL0G9Nj3zz .card .card-box .mbr-text,
  .cid-uL0G9Nj3zz .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uL0G9Nj3zz .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uL0G9Nj3zz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0G9Nj3zz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0GaWkQay {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uL0GaWkQay .card .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 6px;
  transition: opacity 0.3s;
  opacity: 0;
  z-index: -1;
  background: linear-gradient(to right top, #ff3424, #ff3424);
}
.cid-uL0GaWkQay .card:hover .card-overlay {
  opacity: 1;
}
.cid-uL0GaWkQay .card:hover .card-wrapper * {
  color: #ffffff !important;
  border-color: #ffffff;
}
.cid-uL0GaWkQay .card-wrapper {
  background: transparent;
  border-radius: 6px;
  display: flex;
  justify-content: space-between;
  padding: 32px;
  border: 1px solid #e5e5e5;
  position: relative;
  z-index: 1;
}
.cid-uL0GaWkQay .card-wrapper .card-box {
  margin-top: auto;
  margin-bottom: auto;
  padding-right: 30px;
}
.cid-uL0GaWkQay .card-wrapper .card-box .card-title {
  margin-bottom: 0;
}
.cid-uL0GaWkQay .card-wrapper .card-box .card-subtitle {
  color: #232323;
}
.cid-uL0GaWkQay .card-wrapper .card-box .mbr-text,
.cid-uL0GaWkQay .card-wrapper .card-box .link-wrap {
  color: #555555;
}
.cid-uL0GaWkQay .card-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  padding: 20px;
  border: 2px solid #ff3424;
  border-radius: 50%;
}
.cid-uL0GaWkQay .card-wrapper .img-wrapper .mbr-iconfont {
  display: block;
  font-size: 40px;
  color: #ff3424;
}
@media (max-width: 992px) {
  .cid-uL0GaWkQay .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uL0GaWkQay .card-wrapper {
    flex-direction: column;
  }
  .cid-uL0GaWkQay .card-box {
    padding: 0 !important;
    margin-top: 1rem;
    text-align: center !important;
  }
  .cid-uL0GaWkQay .card-box .card-title {
    margin: 0px !important;
    padding: 0px !important;
  }
  .cid-uL0GaWkQay .card-box * {
    text-align: center;
  }
  .cid-uL0GaWkQay .card-box,
  .cid-uL0GaWkQay .img-wrapper {
    width: 100%;
    align-self: center;
  }
  .cid-uL0GaWkQay .img-wrapper {
    padding: 4rem 1rem;
  }
  .cid-uL0GaWkQay .mbr-flex {
    flex-direction: column-reverse;
    align-content: center;
  }
}
.cid-uL0GaWkQay .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0GaWkQay .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0GbsLGxo {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/screenshot-232.png-1336x717.png");
}
.cid-uL0GbsLGxo .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-uL0GbsLGxo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0GbsLGxo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0Gc2pPSf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uL0Gc2pPSf .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-uL0Gc2pPSf .card-title {
  font-weight: 600;
}
.cid-uL0Gc2pPSf .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-uL0Gc2pPSf .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #ff3424;
  background-color: #ffffff;
  border: 2px solid #ff3424;
}
.cid-uL0Gc2pPSf .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #ff3424;
}
.cid-uL0Gc2pPSf .card-img .icon span {
  color: #ff3424;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-uL0Gc2pPSf .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uL0Gc2pPSf .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-uL0Gc2pPSf .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-uL0Gc2pPSf .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-uL0Gc2pPSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0Gc2pPSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0GcD4Vc8 {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/screenshot-234.png-1273x703.png");
}
.cid-uL0GcD4Vc8 .row {
  flex-direction: row-reverse;
}
.cid-uL0GcD4Vc8 .mbr-text,
.cid-uL0GcD4Vc8 .mbr-section-btn {
  color: #ffffff;
}
.cid-uL0GcD4Vc8 .mbr-section-title {
  color: #ffffff;
}
.cid-uL0GcD4Vc8 .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uL0GcD4Vc8 * {
    text-align: center;
  }
  .cid-uL0GcD4Vc8 .buttons-wrap {
    justify-content: center;
  }
}
.cid-uL0GcD4Vc8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0GcD4Vc8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0Gs4xp2p {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-uL0Gs4xp2p .row {
  row-gap: 40px;
}
.cid-uL0Gs4xp2p .mbr-section-head {
  padding-bottom: 50px;
}
.cid-uL0Gs4xp2p .mbr-section-title {
  color: #ff3424;
}
.cid-uL0Gs4xp2p .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-uL0Gs4xp2p .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-uL0Gs4xp2p .item-img img {
  width: 100%;
  aspect-ratio: calc(37 / (11 * 3));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-uL0Gs4xp2p .item-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-uL0Gs4xp2p .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-uL0Gs4xp2p .item-content {
  flex-grow: 1;
  padding: 31px 42px 43px;
  background-color: #f6f6f6;
}
.cid-uL0Gs4xp2p .item-title {
  color: #303030;
}
.cid-uL0Gs4xp2p .mbr-text {
  margin-bottom: 4px;
  color: #303030;
  text-decoration: underline;
}
.cid-uL0Gs4xp2p .icons-menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 12px;
}
.cid-uL0Gs4xp2p .iconfont-wrapper {
  padding: 11px;
  border-radius: 50%;
  transition: opacity 0.2s ease-out;
}
.cid-uL0Gs4xp2p .iconfont-wrapper .mbr-iconfont {
  font-size: 14px;
  color: #303030;
  transition: all 0.2s ease-out;
}
.cid-uL0Gs4xp2p .iconfont-wrapper:hover {
  background-color: #efe6f7;
}
.cid-uL0Gs4xp2p .iconfont-wrapper:hover .mbr-iconfont {
  color: #9b8db7;
}
.cid-uL0Gs4xp2p .mbr-section-btn {
  margin-top: 10px;
}
.cid-uL0GthbfXY {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #121212;
}
.cid-uL0GthbfXY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0GthbfXY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0GthbfXY .title-wrapper {
  padding-left: 35%;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uL0GthbfXY .title-wrapper {
    padding-left: 0;
  }
}
.cid-uL0GthbfXY .title-wrapper .mbr-tag {
  margin-bottom: 16px;
}
.cid-uL0GthbfXY .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uL0GthbfXY .mbr-section-btn {
  padding-left: 35%;
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uL0GthbfXY .mbr-section-btn {
    padding-left: 0;
    margin-top: 20px;
  }
}
.cid-uL0GthbfXY .mbr-section-btn .btn::after,
.cid-uL0GthbfXY .mbr-section-btn .btn::before {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
}
.cid-uL0GthbfXY .mbr-section-btn .btn:hover,
.cid-uL0GthbfXY .mbr-section-btn .btn:focus {
  color: #ffffff !important;
}
.cid-uL0GthbfXY .mbr-section-btn .btn:hover::after,
.cid-uL0GthbfXY .mbr-section-btn .btn:focus::after {
  background-image: linear-gradient(90deg, #386bb7, #e24c4a 150%);
  opacity: 1;
}
.cid-uL0GthbfXY .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-bottom: 2px solid #adadad;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 992px) {
  .cid-uL0GthbfXY .panel-group .card {
    padding: 20px 0;
  }
}
.cid-uL0GthbfXY .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0 !important;
  padding: 0;
}
.cid-uL0GthbfXY .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  position: relative;
}
.cid-uL0GthbfXY .panel-group .card .card-header .panel-title .panel-number {
  position: absolute;
  left: 0;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uL0GthbfXY .panel-group .card .card-header .panel-title .panel-number {
    display: none;
  }
}
.cid-uL0GthbfXY .panel-group .card .card-header .panel-title .panel-title-edit {
  padding-left: 35%;
  padding-right: 20px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uL0GthbfXY .panel-group .card .card-header .panel-title .panel-title-edit {
    padding-left: 0;
  }
}
.cid-uL0GthbfXY .panel-group .card .card-header .panel-title .arrow-wrapper {
  position: absolute;
  right: 0;
  width: 10px;
  height: 10px;
  background-image: linear-gradient(135deg, transparent 50%, #adadad 50%);
  transition: all .3s ease;
}
.cid-uL0GthbfXY .panel-group .card .card-header .panel-title:not(.collapsed) .arrow-wrapper {
  background-image: linear-gradient(45deg, transparent 50%, #adadad 50%);
}
.cid-uL0GthbfXY .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .cid-uL0GthbfXY .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
  }
}
.cid-uL0GthbfXY .panel-group .card .panel-collapse .panel-body .panel-text {
  padding-left: 35%;
  display: inline-block;
  margin-bottom: 0;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-uL0GthbfXY .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
    padding-left: 0;
  }
}
.cid-uL0GthbfXY .mbr-section-title {
  color: #ffffff;
}
.cid-uL0GthbfXY .mbr-tag {
  color: #adadad;
}
.cid-uL0GthbfXY .panel-number {
  color: #ffffff;
}
.cid-uL0GthbfXY .panel-title-edit {
  color: #ffffff;
}
.cid-uL0GthbfXY .panel-text {
  color: #c7c7c7;
}
.cid-uL0GwYMDfl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uL0GwYMDfl .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-uL0GwYMDfl .heading-wrap {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #5aac98;
  border-top-right-radius: 6px;
  border-top-left-radius: 6px;
}
.cid-uL0GwYMDfl .form {
  background-color: #fafafa;
  border: 1px solid #e5e5e5;
}
.cid-uL0GwYMDfl .form form {
  border-radius: 4px;
}
.cid-uL0GwYMDfl .form form > div {
  padding: 2rem 1rem;
}
@media (max-width: 991px) {
  .cid-uL0GwYMDfl .form form {
    padding: 1rem;
  }
}
.cid-uL0GwYMDfl .form form .mbr-section-btn {
  text-align: center;
  width: 100%;
}
.cid-uL0GwYMDfl .form form .mbr-section-btn .btn {
  display: inline-block;
}
.cid-uL0GwYMDfl .form form .form-group .form-control {
  background-color: #ffffff;
  font-size: 14px;
  border: 1px solid #dddfe0;
  border-radius: 3px;
  color: #232323;
}
.cid-uL0GwYMDfl .form form .form-group textarea {
  min-height: 170px;
}
.cid-uL0GBfKZ2c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #080813;
}
.cid-uL0GBfKZ2c .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0GBfKZ2c .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0GBfKZ2c .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uL0GBfKZ2c .content-wrapper .mbr-section-title span {
  color: #ff3424;
}
.cid-uL0GBfKZ2c .content-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uL0GBfKZ2c .content-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all .3s ease;
}
.cid-uL0GBfKZ2c .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uL0GBfKZ2c .content-wrapper .list .item-wrap:hover,
.cid-uL0GBfKZ2c .content-wrapper .list .item-wrap:focus {
  color: #ff3424;
}
.cid-uL0GBfKZ2c .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #ff3424, #292739);
}
@media (max-width: 992px) {
  .cid-uL0GBfKZ2c .border-wrap {
    margin-top: 32px;
  }
}
.cid-uL0GBfKZ2c .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uL0GBfKZ2c .list {
  color: #bbbbbb;
  text-align: center;
}
.cid-uL0GBfKZ2c .list,
.cid-uL0GBfKZ2c .item-wrap {
  color: #ffffff;
}
.cid-uL0GBfKZ2c .mbr-section-title,
.cid-uL0GBfKZ2c .mbr-section-btn {
  color: #ff3424;
}
.cid-uL0GC4ahu6 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #131313;
}
.cid-uL0GC4ahu6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0GC4ahu6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0GC4ahu6 .container-fluid {
  padding: 0;
}
@media (max-width: 1440px) {
  .cid-uL0GC4ahu6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uL0GC4ahu6 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uL0GC4ahu6 .container {
    padding: 0 30px;
  }
}
.cid-uL0GC4ahu6 .google-map {
  border-top: 2px solid #9c9c9c;
  border-bottom: 2px solid #9c9c9c;
}
.cid-uL0GC4ahu6 .google-map iframe {
  border-radius: 0 !important;
  height: 500px;
  filter: grayscale(100%);
}
.cid-uL0GCvibhN {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uL0GCvibhN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0GCvibhN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0GCvibhN .copyright {
  color: #ffffff;
}
.cid-uL0GCvibhN .line {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uL0GCvibhN .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uL0GCvibhN .row .copyright {
    text-align: center;
    padding-bottom: 2rem;
  }
}
.cid-uL0GCvibhN .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uL0GCvibhN .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uL0GCvibhN .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uL0GCvibhN .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uL0GCvibhN .row-links .row-links-soc {
    justify-content: center;
  }
}
.cid-uL0GCvibhN .row-links-soc,
.cid-uL0GCvibhN .row-links-soc-item .row-links-soc-item {
  color: #ffffff;
}
.cid-uL0GCvibhN .copyright,
.cid-uL0GCvibhN .line {
  color: #ffffff;
}
.cid-uL0GCvibhN .row-links-soc {
  color: #ffffff;
}
.cid-uL0KQ9OU74 {
  background-color: transparent;
}
.cid-uL0KQ9OU74 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uL0KQ9OU74 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uL0KQ9OU74 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uL0KQ9OU74 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uL0KQ9OU74 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uL0KQ9OU74 .menu_box .navbar.opened,
  .cid-uL0KQ9OU74 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uL0KQ9OU74 .navbar-dropdown {
  position: relative !important;
}
.cid-uL0KQ9OU74 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uL0KQ9OU74 .btn:hover {
  box-shadow: none;
}
.cid-uL0KQ9OU74 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uL0KQ9OU74 .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uL0KQ9OU74 .nav-item {
    margin: 0 !important;
  }
}
.cid-uL0KQ9OU74 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uL0KQ9OU74 .nav-item .nav-link::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #000000;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
}
.cid-uL0KQ9OU74 .nav-item .nav-link:hover::before,
.cid-uL0KQ9OU74 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uL0KQ9OU74 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uL0KQ9OU74 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uL0KQ9OU74 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uL0KQ9OU74 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uL0KQ9OU74 .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-uL0KQ9OU74 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uL0KQ9OU74 .offcanvas_box {
    display: none;
  }
}
.cid-uL0KQ9OU74 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uL0KQ9OU74 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uL0KQ9OU74 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uL0KQ9OU74 .container {
  display: flex;
  margin: auto;
}
.cid-uL0KQ9OU74 .iconfont-wrapper {
  color: #000000;
  font-size: 17px;
  margin-right: 10px;
  margin-bottom: 5px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.2s ease-in-out;
}
.cid-uL0KQ9OU74 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uL0KQ9OU74 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uL0KQ9OU74 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uL0KQ9OU74 .navbar-nav {
    margin: 0;
  }
}
.cid-uL0KQ9OU74 .dropdown-menu,
.cid-uL0KQ9OU74 .navbar.opened {
  background-color: false !important;
}
.cid-uL0KQ9OU74 .nav-item:focus,
.cid-uL0KQ9OU74 .nav-link:focus {
  outline: none;
}
.cid-uL0KQ9OU74 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uL0KQ9OU74 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uL0KQ9OU74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uL0KQ9OU74 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uL0KQ9OU74 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uL0KQ9OU74 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uL0KQ9OU74 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uL0KQ9OU74 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uL0KQ9OU74 .navbar.opened {
  transition: all 0.3s;
}
.cid-uL0KQ9OU74 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uL0KQ9OU74 .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uL0KQ9OU74 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uL0KQ9OU74 .navbar.collapsed {
  justify-content: center;
}
.cid-uL0KQ9OU74 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uL0KQ9OU74 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uL0KQ9OU74 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uL0KQ9OU74 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uL0KQ9OU74 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uL0KQ9OU74 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uL0KQ9OU74 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uL0KQ9OU74 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uL0KQ9OU74 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uL0KQ9OU74 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uL0KQ9OU74 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uL0KQ9OU74 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uL0KQ9OU74 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uL0KQ9OU74 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uL0KQ9OU74 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uL0KQ9OU74 .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uL0KQ9OU74 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uL0KQ9OU74 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uL0KQ9OU74 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uL0KQ9OU74 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uL0KQ9OU74 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uL0KQ9OU74 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uL0KQ9OU74 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uL0KQ9OU74 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uL0KQ9OU74 .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-uL0KQ9OU74 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uL0KQ9OU74 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uL0KQ9OU74 .dropdown-item.active,
.cid-uL0KQ9OU74 .dropdown-item:active {
  background-color: transparent;
}
.cid-uL0KQ9OU74 .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uL0KQ9OU74 .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uL0KQ9OU74 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uL0KQ9OU74 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uL0KQ9OU74 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uL0KQ9OU74 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uL0KQ9OU74 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uL0KQ9OU74 button.navbar-toggler {
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  color: #ffffff;
  background: #ff5753;
}
.cid-uL0KQ9OU74 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uL0KQ9OU74 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uL0KQ9OU74 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL0KQ9OU74 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uL0KQ9OU74 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uL0KQ9OU74 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL0KQ9OU74 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uL0KQ9OU74 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uL0KQ9OU74 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uL0KQ9OU74 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uL0KQ9OU74 .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-uL0KQ9OU74 .navbar {
    height: 70px;
  }
  .cid-uL0KQ9OU74 .navbar.opened {
    height: auto;
  }
  .cid-uL0KQ9OU74 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uL0KQ9OU74 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uL0KQ9OU74 .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uL0KQ9OU74 .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uL0KQ9OU74 .navbar-caption:hover {
  color: #5aac98;
}
@media (min-width: 992px) {
  .cid-uL0KQ9OU74 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uL0KQ9OU74 .text_widget {
  margin-bottom: 32px;
}
.cid-uL0KQ9OU74 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uL0KQ9OU74 .text_widget a:hover,
.cid-uL0KQ9OU74 .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uL0KQ9OU74 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uL0KQ9OU74 .icons-menu-main {
  display: flex;
}
.cid-uL0KQ9OU74 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uL0KQ9OU74 .navbar-caption {
  color: #000000;
}
.cid-uL0KQ9OU74 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uL0KQ9OU74 .mbr-section-subtitle,
.cid-uL0KQ9OU74 .text_widget,
.cid-uL0KQ9OU74 .mbr-section-btn {
  text-align: center;
}
.cid-uL0KQ9OU74 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uL0KUXDq0x {
  display: flex;
  padding-top: 75px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-uL0KUXDq0x {
    align-items: center;
  }
  .cid-uL0KUXDq0x .row {
    justify-content: center;
  }
}
.cid-uL0KUXDq0x p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uL0KUXDq0x .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uL0KUXDq0x {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uL0KUXDq0x .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uL0KUXDq0x .content-wrap {
    width: 100%;
  }
}
.cid-uL0KUXDq0x .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uL0KUXDq0x .mbr-text,
.cid-uL0KUXDq0x .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uL0KUXDq0x .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uL0KQdZMWe {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #080813;
}
.cid-uL0KQdZMWe .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0KQdZMWe .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0KQdZMWe .content-wrapper .mbr-section-title {
  margin-bottom: 32px;
}
.cid-uL0KQdZMWe .content-wrapper .mbr-section-title span {
  color: #bcfe1e;
}
.cid-uL0KQdZMWe .content-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uL0KQdZMWe .content-wrapper .list .item-wrap {
  margin-bottom: 16px;
  transition: all .3s ease;
}
.cid-uL0KQdZMWe .content-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uL0KQdZMWe .content-wrapper .list .item-wrap:hover,
.cid-uL0KQdZMWe .content-wrapper .list .item-wrap:focus {
  color: #bcfe1e;
}
.cid-uL0KQdZMWe .border-wrap {
  margin-top: 64px;
  height: 2px;
  background: linear-gradient(90deg, #292739, #bcfe1e, #292739);
}
@media (max-width: 992px) {
  .cid-uL0KQdZMWe .border-wrap {
    margin-top: 32px;
  }
}
.cid-uL0KQdZMWe .mbr-section-title {
  color: #ffffff;
  text-align: center;
}
.cid-uL0KQdZMWe .list {
  color: #bbbbbb;
  text-align: center;
}
.cid-uL0KQem7lY {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #131313;
}
.cid-uL0KQem7lY .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0KQem7lY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0KQem7lY .container-fluid {
  padding: 0;
}
@media (max-width: 1440px) {
  .cid-uL0KQem7lY .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uL0KQem7lY .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uL0KQem7lY .container {
    padding: 0 30px;
  }
}
.cid-uL0KQem7lY .google-map {
  border-top: 2px solid #9c9c9c;
  border-bottom: 2px solid #9c9c9c;
}
.cid-uL0KQem7lY .google-map iframe {
  border-radius: 0 !important;
  height: 500px;
  filter: grayscale(100%);
}
.cid-uL0KQeJ7jM {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uL0KQeJ7jM .mbr-fallback-image.disabled {
  display: none;
}
.cid-uL0KQeJ7jM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uL0KQeJ7jM .copyright {
  color: #ffffff;
}
.cid-uL0KQeJ7jM .line {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uL0KQeJ7jM .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uL0KQeJ7jM .row .copyright {
    text-align: center;
    padding-bottom: 2rem;
  }
}
.cid-uL0KQeJ7jM .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uL0KQeJ7jM .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uL0KQeJ7jM .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uL0KQeJ7jM .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uL0KQeJ7jM .row-links .row-links-soc {
    justify-content: center;
  }
}
.cid-uL0KQeJ7jM .row-links-soc,
.cid-uL0KQeJ7jM .row-links-soc-item .row-links-soc-item {
  color: #ffffff;
}
.cid-uL0KQeJ7jM .copyright,
.cid-uL0KQeJ7jM .line {
  color: #ffffff;
}
.cid-uL0KQeJ7jM .row-links-soc {
  color: #ffffff;
}
