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: #a25dae !important;
  border-color: #a25dae !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: #854890 !important;
  border-color: #854890 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #854890 !important;
  border-color: #854890 !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: #a25dae;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #854890 !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: #a25dae !important;
  border-color: #a25dae !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: #a25dae !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: #854890 !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: #a25dae !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-uOEanz0p4l {
  background-color: transparent;
}
.cid-uOEanz0p4l .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uOEanz0p4l .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uOEanz0p4l .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOEanz0p4l .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOEanz0p4l .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uOEanz0p4l .menu_box .navbar.opened,
  .cid-uOEanz0p4l .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uOEanz0p4l .navbar-dropdown {
  position: relative !important;
}
.cid-uOEanz0p4l .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uOEanz0p4l .btn:hover {
  box-shadow: none;
}
.cid-uOEanz0p4l .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uOEanz0p4l .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uOEanz0p4l .nav-item {
    margin: 0 !important;
  }
}
.cid-uOEanz0p4l .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uOEanz0p4l .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-uOEanz0p4l .nav-item .nav-link:hover::before,
.cid-uOEanz0p4l .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uOEanz0p4l .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOEanz0p4l .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uOEanz0p4l .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uOEanz0p4l .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOEanz0p4l .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-uOEanz0p4l .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uOEanz0p4l .offcanvas_box {
    display: none;
  }
}
.cid-uOEanz0p4l .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uOEanz0p4l .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uOEanz0p4l .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uOEanz0p4l .container {
  display: flex;
  margin: auto;
}
.cid-uOEanz0p4l .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-uOEanz0p4l .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uOEanz0p4l .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uOEanz0p4l .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uOEanz0p4l .navbar-nav {
    margin: 0;
  }
}
.cid-uOEanz0p4l .dropdown-menu,
.cid-uOEanz0p4l .navbar.opened {
  background-color: false !important;
}
.cid-uOEanz0p4l .nav-item:focus,
.cid-uOEanz0p4l .nav-link:focus {
  outline: none;
}
.cid-uOEanz0p4l .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOEanz0p4l .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOEanz0p4l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOEanz0p4l .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOEanz0p4l .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOEanz0p4l .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOEanz0p4l .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uOEanz0p4l .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uOEanz0p4l .navbar.opened {
  transition: all 0.3s;
}
.cid-uOEanz0p4l .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uOEanz0p4l .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uOEanz0p4l .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOEanz0p4l .navbar.collapsed {
  justify-content: center;
}
.cid-uOEanz0p4l .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOEanz0p4l .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOEanz0p4l .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOEanz0p4l .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOEanz0p4l .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOEanz0p4l .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uOEanz0p4l .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uOEanz0p4l .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uOEanz0p4l .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uOEanz0p4l .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOEanz0p4l .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOEanz0p4l .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uOEanz0p4l .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOEanz0p4l .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uOEanz0p4l .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOEanz0p4l .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uOEanz0p4l .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uOEanz0p4l .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uOEanz0p4l .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uOEanz0p4l .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOEanz0p4l .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uOEanz0p4l .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOEanz0p4l .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOEanz0p4l .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOEanz0p4l .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-uOEanz0p4l .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uOEanz0p4l .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOEanz0p4l .dropdown-item.active,
.cid-uOEanz0p4l .dropdown-item:active {
  background-color: transparent;
}
.cid-uOEanz0p4l .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uOEanz0p4l .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uOEanz0p4l .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOEanz0p4l .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOEanz0p4l .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOEanz0p4l ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uOEanz0p4l .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOEanz0p4l 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-uOEanz0p4l button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uOEanz0p4l button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOEanz0p4l button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOEanz0p4l button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOEanz0p4l button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOEanz0p4l nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOEanz0p4l nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOEanz0p4l nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOEanz0p4l nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOEanz0p4l a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uOEanz0p4l .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-uOEanz0p4l .navbar {
    height: 70px;
  }
  .cid-uOEanz0p4l .navbar.opened {
    height: auto;
  }
  .cid-uOEanz0p4l .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOEanz0p4l .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uOEanz0p4l .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uOEanz0p4l .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uOEanz0p4l .navbar-caption:hover {
  color: #5aac98;
}
@media (min-width: 992px) {
  .cid-uOEanz0p4l .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uOEanz0p4l .text_widget {
  margin-bottom: 32px;
}
.cid-uOEanz0p4l .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uOEanz0p4l .text_widget a:hover,
.cid-uOEanz0p4l .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uOEanz0p4l .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uOEanz0p4l .icons-menu-main {
  display: flex;
}
.cid-uOEanz0p4l .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uOEanz0p4l .navbar-caption {
  color: #000000;
}
.cid-uOEanz0p4l .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uOEanz0p4l .mbr-section-subtitle,
.cid-uOEanz0p4l .text_widget,
.cid-uOEanz0p4l .mbr-section-btn {
  text-align: center;
}
.cid-uOEanz0p4l a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOEaqwTX6F {
  flex-direction: column !important;
  justify-content: center;
  background-image: url("../../../assets/images/screenshot-160.png-1191x795.png");
}
.cid-uOEaqwTX6F .row.heading {
  margin-bottom: 72px;
}
.cid-uOEaqwTX6F .card {
  flex-direction: row;
  justify-content: center;
}
.cid-uOEaqwTX6F .card-box {
  display: flex;
  flex-direction: column;
}
.cid-uOEaqwTX6F .card-box .card-title {
  color: #ffffff;
}
.cid-uOEaqwTX6F .card-box .mbr-text {
  color: #ffffff;
}
.cid-uOEaqwTX6F .card-box .link .btn {
  margin: 0;
}
.cid-uOEaqwTX6F .card .card-img {
  border-radius: 70px;
  text-align: center;
  padding: 0;
  position: relative;
  display: block;
  width: 70px;
  height: 70px;
  border: 2px solid #ffffff;
}
.cid-uOEaqwTX6F .card .card-img span {
  text-align: center;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.65;
  display: inline-block;
}
.cid-uOEaqwTX6F .card-title {
  margin: 0;
}
.cid-uOEaqwTX6F .card-img,
.cid-uOEaqwTX6F .card-box {
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uOEaqwTX6F .card {
    flex-direction: column;
    align-items: center;
  }
  .cid-uOEaqwTX6F .card .card-img {
    margin-bottom: 1.5rem;
  }
  .cid-uOEaqwTX6F .card .card-box {
    width: 100%;
    padding-left: 0;
  }
  .cid-uOEaqwTX6F .card .card-box .card-title,
  .cid-uOEaqwTX6F .card .card-box .mbr-text,
  .cid-uOEaqwTX6F .card .card-box .link {
    text-align: center;
  }
}
@media (min-width: 768px) {
  .cid-uOEaqwTX6F .card {
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
.cid-uOEaqwTX6F .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEaqwTX6F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEarYJ0hg {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOEarYJ0hg .card-wrapper {
  border-radius: 4px;
}
.cid-uOEarYJ0hg .card-subtitle {
  color: #0095ff;
}
.cid-uOEarYJ0hg .mbr-text,
.cid-uOEarYJ0hg .card-subtitle {
  color: #232323;
}
.cid-uOEarYJ0hg .mbr-iconfont {
  font-size: 90px;
  color: #39937c;
}
.cid-uOEarYJ0hg .icon {
  text-align: end;
}
@media (max-width: 768px) {
  .cid-uOEarYJ0hg .icon {
    margin-bottom: 15px;
  }
  .cid-uOEarYJ0hg * {
    text-align: center !important;
  }
}
.cid-uOEarYJ0hg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEarYJ0hg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEauRm85g {
  padding-top: 8rem;
  padding-bottom: 8rem;
  background-color: #ffffff;
}
.cid-uOEauRm85g .mbr-text,
.cid-uOEauRm85g .mbr-section-btn {
  color: #333333;
}
.cid-uOEauRm85g .mbr-section-title {
  color: #39937c;
}
.cid-uOEauRm85g .buttons-wrap .link {
  display: flex;
}
@media (max-width: 768px) {
  .cid-uOEauRm85g * {
    text-align: center;
  }
  .cid-uOEauRm85g .buttons-wrap {
    justify-content: center;
  }
}
.cid-uOEauRm85g .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEauRm85g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEavKqn0q {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-uOEavKqn0q .card-wrapper {
  border-radius: 0;
  padding: 2rem;
}
.cid-uOEavKqn0q .card-title {
  font-weight: 600;
}
.cid-uOEavKqn0q .card-img {
  text-align: center;
  padding: 0;
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
  width: 100%;
}
.cid-uOEavKqn0q .card-img .icon {
  width: 195px;
  height: 195px;
  border-radius: 50%;
  display: inline-block;
  line-height: 195px;
  text-align: center;
  transition: all .3s;
  color: #5aac98;
  background-color: #ffffff;
  border: 2px solid #5aac98;
}
.cid-uOEavKqn0q .card-img .icon .mbr-iconfont {
  font-size: 120px;
  line-height: 1.59;
  color: #5aac98;
}
.cid-uOEavKqn0q .card-img .icon span {
  color: #5aac98;
  font-size: 60px;
  line-height: 1em;
  text-align: center;
  vertical-align: middle;
  display: inline-block;
}
@media (max-width: 992px) {
  .cid-uOEavKqn0q .card {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOEavKqn0q .card-img .icon {
    width: 145px;
    height: 145px;
    line-height: 145px;
  }
  .cid-uOEavKqn0q .card-img .icon .mbr-iconfont {
    font-size: 70px;
    line-height: 2.01;
  }
  .cid-uOEavKqn0q .card-img .icon span {
    font-size: 50px;
    line-height: 1em;
  }
}
.cid-uOEavKqn0q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEavKqn0q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEawMNncg {
  background-image: url("../../../assets/images/screenshot-162.png-1062x795.png");
}
.cid-uOEawMNncg .mbr-text {
  margin-top: 40px;
  margin-bottom: 50px;
}
.cid-uOEawMNncg .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEawMNncg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEaHGMZ89 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOEaHGMZ89 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEaHGMZ89 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEaHGMZ89 .title-wrapper {
  display: flex;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .title-wrapper {
    display: block;
    margin-bottom: 30px;
  }
}
.cid-uOEaHGMZ89 .title-wrapper .label-wrapper {
  width: 35%;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .title-wrapper .label-wrapper {
    width: 100%;
  }
}
.cid-uOEaHGMZ89 .title-wrapper .label-wrapper .mbr-label {
  display: inline-block;
  padding: 4px 20px;
  margin-bottom: 20px;
  border: 1px solid #e4ed64;
}
.cid-uOEaHGMZ89 .title-wrapper .mbr-section-title {
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-uOEaHGMZ89 .panel-group .card {
  position: relative;
  padding: 40px 0;
  background-color: transparent;
  border-top: 1px solid #e0e0e0;
  border-radius: 0 !important;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .panel-group .card {
    padding: 30px 0;
  }
}
.cid-uOEaHGMZ89 .panel-group .card .card-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .icon-wrap {
  width: 35%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .icon-wrap {
    width: 25%;
  }
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .icon-wrap .mbr-iconfont {
  width: 50px;
  height: 50px;
  min-width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  margin-right: 10px;
  transition: all .3s ease;
  font-size: 24px;
  background-color: #39937c;
  color: #ffffff;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .icon-wrap .svg1 {
  position: absolute;
  bottom: 0;
  left: 24px;
  transform: rotate(180deg);
  width: 26px;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .icon-wrap .svg1 path {
  transition: all .3s ease;
  fill: #39937c;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .panel-title-edit {
  width: 65%;
  padding-right: 30px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .panel-title-edit {
    width: 70%;
  }
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .icon-wrapper {
  position: absolute;
  right: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title .icon-wrapper .mbr-iconfont {
  font-size: 18px;
  transition: all 0.3s ease-in-out;
  color: #000000;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title:hover .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title:hover .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrapper .mbr-iconfont {
  transform: rotate(-180deg);
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .mbr-iconfont {
  background-color: #000000;
  color: #ffffff;
}
.cid-uOEaHGMZ89 .panel-group .card .card-header .panel-title:not(.collapsed) .icon-wrap .svg1 path {
  fill: #000000;
}
.cid-uOEaHGMZ89 .panel-group .card .panel-collapse .panel-body {
  margin-top: 40px;
  margin-left: 35%;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .panel-group .card .panel-collapse .panel-body {
    margin-top: 20px;
    margin-left: 0;
  }
}
.cid-uOEaHGMZ89 .panel-group .card .panel-collapse .panel-body .panel-text {
  display: inline-flex;
  width: 60%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOEaHGMZ89 .panel-group .card .panel-collapse .panel-body .panel-text {
    width: 100%;
  }
}
.cid-uOEaHGMZ89 .mbr-label {
  color: #000000;
}
.cid-uOEaHGMZ89 .mbr-section-title {
  color: #000000;
}
.cid-uOEaHGMZ89 .panel-title-edit {
  color: #000000;
}
.cid-uOEaHGMZ89 .panel-text {
  color: #8a8a8a;
}
.cid-uOEaLA8Mmc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-uOEaLA8Mmc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEaLA8Mmc .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-uOEaLA8Mmc .container {
    padding: 0 30px;
  }
}
.cid-uOEaLA8Mmc .items .item {
  margin-bottom: 60px;
}
.cid-uOEaLA8Mmc .items .item:last-child {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uOEaLA8Mmc .items .item {
    margin-bottom: 30px;
  }
}
.cid-uOEaLA8Mmc .items .item .item-wrapper .card-box .card-title {
  margin-bottom: 10px;
}
.cid-uOEaLA8Mmc .items .item .item-wrapper .card-box .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.cid-uOEaLA8Mmc .items .item .item-wrapper .card-box .list .item-wrap {
  opacity: .6;
  margin-bottom: 0;
  line-height: 180%;
  cursor: pointer;
}
.cid-uOEaLA8Mmc .dragArea.row {
  margin: 0;
}
.cid-uOEaLA8Mmc .dragArea.row .mbr-section-title {
  margin-bottom: 45px !important;
}
.cid-uOEaLA8Mmc .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-uOEaLA8Mmc .dragArea.row .form-group .form-control {
  background-color: #ededed;
  padding: 20px;
  box-shadow: none;
  border: none !important;
  border-radius: 0 !important;
}
.cid-uOEaLA8Mmc .dragArea.row .form-group .form-control::placeholder {
  color: #9c9c9c;
}
.cid-uOEaLA8Mmc .dragArea.row .form-group .form-control:hover,
.cid-uOEaLA8Mmc .dragArea.row .form-group .form-control:focus {
  box-shadow: none;
  border: none !important;
}
.cid-uOEaLA8Mmc .dragArea.row .form-group .form-check {
  padding-left: 2.1em;
}
.cid-uOEaLA8Mmc .dragArea.row .form-group .form-check .form-check-input {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
.cid-uOEaLA8Mmc .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-uOEaLA8Mmc .mbr-section-title {
  color: #000000;
}
.cid-uOEaLA8Mmc .card-title {
  color: #000000;
}
.cid-uOEaLA8Mmc .list {
  color: #000000;
}
.cid-uOEaLA8Mmc .mbr-text {
  color: #000000;
}
.cid-uOEaLA8Mmc label {
  color: #000000;
}
.cid-uOEaM8dvhq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #131313;
}
.cid-uOEaM8dvhq .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEaM8dvhq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEaM8dvhq .container-fluid {
  padding: 0;
}
@media (max-width: 1440px) {
  .cid-uOEaM8dvhq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uOEaM8dvhq .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uOEaM8dvhq .container {
    padding: 0 30px;
  }
}
.cid-uOEaM8dvhq .google-map {
  border-top: 2px solid #9c9c9c;
  border-bottom: 2px solid #9c9c9c;
}
.cid-uOEaM8dvhq .google-map iframe {
  border-radius: 0 !important;
  height: 500px;
  filter: grayscale(100%);
}
.cid-uOEaMCCwjs {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uOEaMCCwjs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEaMCCwjs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEaMCCwjs .copyright {
  color: #ffffff;
}
.cid-uOEaMCCwjs .line {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uOEaMCCwjs .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uOEaMCCwjs .row .copyright {
    text-align: center;
    padding-bottom: 2rem;
  }
}
.cid-uOEaMCCwjs .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOEaMCCwjs .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOEaMCCwjs .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOEaMCCwjs .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uOEaMCCwjs .row-links .row-links-soc {
    justify-content: center;
  }
}
.cid-uOEaMCCwjs .row-links-soc,
.cid-uOEaMCCwjs .row-links-soc-item .row-links-soc-item {
  color: #ffffff;
}
.cid-uOEaMCCwjs .copyright,
.cid-uOEaMCCwjs .line {
  color: #ffffff;
}
.cid-uOEaMCCwjs .row-links-soc {
  color: #ffffff;
}
.cid-uOEhYRfHK0 {
  background-color: transparent;
}
.cid-uOEhYRfHK0 .navbar-dropdown {
  background-color: #ffffff !important;
  padding: 0;
}
.cid-uOEhYRfHK0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background-color: #ffffff !important;
  background: #ffffff;
}
.cid-uOEhYRfHK0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOEhYRfHK0 .menu_box {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-uOEhYRfHK0 .menu_box {
    flex-direction: column;
    align-items: flex-start;
  }
  .cid-uOEhYRfHK0 .menu_box .navbar.opened,
  .cid-uOEhYRfHK0 .menu_box .navbar-collapse {
    background-color: #ffffff !important;
    transition: all 0s ease 0s;
  }
}
.cid-uOEhYRfHK0 .navbar-dropdown {
  position: relative !important;
}
.cid-uOEhYRfHK0 .btn {
  min-height: auto;
  box-shadow: none;
  margin-top: 0;
}
.cid-uOEhYRfHK0 .btn:hover {
  box-shadow: none;
}
.cid-uOEhYRfHK0 .nav-item {
  margin: 4px 15px;
}
@media (min-width: 1200px) {
  .cid-uOEhYRfHK0 .nav-item {
    margin: 4px 10px;
  }
}
@media (max-width: 991px) {
  .cid-uOEhYRfHK0 .nav-item {
    margin: 0 !important;
  }
}
.cid-uOEhYRfHK0 .nav-item .nav-link {
  transition: all 0.5s ease-out;
  border-radius: .5rem !important;
  position: relative;
}
.cid-uOEhYRfHK0 .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-uOEhYRfHK0 .nav-item .nav-link:hover::before,
.cid-uOEhYRfHK0 .nav-item .nav-link:focus::before {
  width: 100%;
}
.cid-uOEhYRfHK0 .dropdown-menu {
  border-radius: 0;
  box-shadow: none;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-uOEhYRfHK0 .dropdown-menu {
    padding: 18px 34px 22px;
    min-width: 250px;
    top: auto !important;
    left: -40px !important;
  }
  .cid-uOEhYRfHK0 .dropdown-menu.dropdown-submenu {
    left: 215px !important;
    top: -45% !important;
  }
}
@media (max-width: 991px) {
  .cid-uOEhYRfHK0 .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]::after,
  .cid-uOEhYRfHK0 .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-uOEhYRfHK0 .show.dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(45deg);
    margin-top: -4px;
  }
  .cid-uOEhYRfHK0 .offcanvas_box {
    display: none;
  }
}
.cid-uOEhYRfHK0 .dropdown-item {
  border: none;
  font-weight: 300 !important;
}
.cid-uOEhYRfHK0 .nav-dropdown .link {
  font-weight: 400 !important;
  padding: 0 !important;
  margin: 0 !important;
}
.cid-uOEhYRfHK0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0;
}
.cid-uOEhYRfHK0 .container {
  display: flex;
  margin: auto;
}
.cid-uOEhYRfHK0 .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-uOEhYRfHK0 .iconfont-wrapper:last-child {
  margin-right: 0;
}
.cid-uOEhYRfHK0 .iconfont-wrapper:hover {
  opacity: .5;
}
.cid-uOEhYRfHK0 .navbar-nav {
  margin: 0 1rem;
}
@media (min-width: 992px) {
  .cid-uOEhYRfHK0 .navbar-nav {
    margin: 0;
  }
}
.cid-uOEhYRfHK0 .dropdown-menu,
.cid-uOEhYRfHK0 .navbar.opened {
  background-color: false !important;
}
.cid-uOEhYRfHK0 .nav-item:focus,
.cid-uOEhYRfHK0 .nav-link:focus {
  outline: none;
}
.cid-uOEhYRfHK0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOEhYRfHK0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOEhYRfHK0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOEhYRfHK0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOEhYRfHK0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOEhYRfHK0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOEhYRfHK0 .navbar {
  min-height: 70px;
  padding: 10px 0;
  transition: all 0.3s;
  border-bottom-width: 0;
}
@media (max-width: 992px) {
  .cid-uOEhYRfHK0 .navbar {
    min-height: 30px;
    max-height: none;
  }
}
.cid-uOEhYRfHK0 .navbar.opened {
  transition: all 0.3s;
}
.cid-uOEhYRfHK0 .navbar .dropdown-item {
  padding: 0;
  margin: 8px 0;
}
.cid-uOEhYRfHK0 .navbar .navbar-logo img {
  max-width: 40px;
  min-height: 40px;
  object-fit: contain;
  border-radius: 10px !important;
}
.cid-uOEhYRfHK0 .navbar .navbar-collapse {
  justify-content: center;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOEhYRfHK0 .navbar.collapsed {
  justify-content: center;
}
.cid-uOEhYRfHK0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOEhYRfHK0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOEhYRfHK0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOEhYRfHK0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOEhYRfHK0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOEhYRfHK0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: left;
}
.cid-uOEhYRfHK0 .navbar.collapsed .icons-menu {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-uOEhYRfHK0 .navbar .nav-item {
    padding: .5rem 0;
  }
  .cid-uOEhYRfHK0 .navbar .navbar-collapse {
    padding: 34px 0;
    border-radius: 16px;
    width: 100%;
  }
  .cid-uOEhYRfHK0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOEhYRfHK0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOEhYRfHK0 .navbar .dropdown-menu {
    padding: 6px 0 6px 15px;
  }
  .cid-uOEhYRfHK0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOEhYRfHK0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
    margin-top: -0.4rem;
  }
  .cid-uOEhYRfHK0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOEhYRfHK0 .navbar ul.navbar-nav {
    overflow: hidden;
    margin: 0;
  }
  .cid-uOEhYRfHK0 .navbar ul.navbar-nav li {
    margin: 0;
  }
  .cid-uOEhYRfHK0 .navbar .dropdown-menu .dropdown-item {
    padding: 0 !important;
    margin: 0;
    margin-top: 8px;
    text-align: left;
  }
  .cid-uOEhYRfHK0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 0;
    width: 100%;
    justify-content: space-between;
  }
  .cid-uOEhYRfHK0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOEhYRfHK0 .navbar .icons-menu {
    padding: 0;
  }
}
.cid-uOEhYRfHK0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOEhYRfHK0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOEhYRfHK0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOEhYRfHK0 .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-uOEhYRfHK0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 700;
}
.cid-uOEhYRfHK0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOEhYRfHK0 .dropdown-item.active,
.cid-uOEhYRfHK0 .dropdown-item:active {
  background-color: transparent;
}
.cid-uOEhYRfHK0 .navbar-expand-lg .navbar-nav .nav-link {
  margin: 8px 12px !important;
}
@media (min-width: 991px) {
  .cid-uOEhYRfHK0 .navbar-expand-lg .navbar-nav .nav-link {
    margin: 8px 10px !important;
  }
}
.cid-uOEhYRfHK0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOEhYRfHK0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOEhYRfHK0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOEhYRfHK0 ul.navbar-nav {
  flex-wrap: wrap;
  padding: 0;
}
.cid-uOEhYRfHK0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOEhYRfHK0 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-uOEhYRfHK0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 10px;
  margin-top: 14px;
  width: 26px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-uOEhYRfHK0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOEhYRfHK0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOEhYRfHK0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOEhYRfHK0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOEhYRfHK0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOEhYRfHK0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOEhYRfHK0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOEhYRfHK0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOEhYRfHK0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.cid-uOEhYRfHK0 .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-uOEhYRfHK0 .navbar {
    height: 70px;
  }
  .cid-uOEhYRfHK0 .navbar.opened {
    height: auto;
  }
  .cid-uOEhYRfHK0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOEhYRfHK0 .navbar-dropdown .navbar-logo {
  margin-right: 10px;
}
@media (min-width: 768px) {
  .cid-uOEhYRfHK0 .container-fluid {
    padding-left: 64px;
    padding-right: 64px;
  }
}
.cid-uOEhYRfHK0 .mbr-section-btn-main .btn {
  margin: 8px;
  width: fit-content;
  white-space: nowrap;
}
.cid-uOEhYRfHK0 .navbar-caption:hover {
  color: #5aac98;
}
@media (min-width: 992px) {
  .cid-uOEhYRfHK0 .dropdown-menu.dropdown-submenu {
    left: 175px !important;
    top: -45% !important;
  }
}
.cid-uOEhYRfHK0 .text_widget {
  margin-bottom: 32px;
}
.cid-uOEhYRfHK0 .text_widget a {
  transition: all 0.3s ease-out;
}
.cid-uOEhYRfHK0 .text_widget a:hover,
.cid-uOEhYRfHK0 .text_widget a:focus {
  opacity: .8;
}
@media (min-width: 992px) {
  .cid-uOEhYRfHK0 .navbar-nav.nav-dropdown {
    display: -webkit-flex;
    width: 100%;
    justify-content: flex-end;
    min-width: 200px;
    padding-right: 90px;
  }
}
.cid-uOEhYRfHK0 .icons-menu-main {
  display: flex;
}
.cid-uOEhYRfHK0 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uOEhYRfHK0 .navbar-caption {
  color: #000000;
}
.cid-uOEhYRfHK0 .mbr-text {
  color: #000000;
  text-align: center;
}
.cid-uOEhYRfHK0 .mbr-section-subtitle,
.cid-uOEhYRfHK0 .text_widget,
.cid-uOEhYRfHK0 .mbr-section-btn {
  text-align: center;
}
.cid-uOEhYRfHK0 a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  background-image: none;
}
.cid-uOEi4j0KC1 {
  display: flex;
  padding-top: 75px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .cid-uOEi4j0KC1 {
    align-items: center;
  }
  .cid-uOEi4j0KC1 .row {
    justify-content: center;
  }
}
.cid-uOEi4j0KC1 p {
  line-height: 1.5;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uOEi4j0KC1 .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uOEi4j0KC1 {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uOEi4j0KC1 .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uOEi4j0KC1 .content-wrap {
    width: 100%;
  }
}
.cid-uOEi4j0KC1 .mbr-section-title {
  text-align: center;
  color: #000000;
}
.cid-uOEi4j0KC1 .mbr-text,
.cid-uOEi4j0KC1 .mbr-section-btn {
  text-align: left;
  color: #232323;
}
.cid-uOEi4j0KC1 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uOEhYUmlyD {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #000000;
}
.cid-uOEhYUmlyD .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEhYUmlyD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEhYUmlyD .copyright {
  color: #ffffff;
}
.cid-uOEhYUmlyD .line {
  width: 100%;
  height: 1px;
  opacity: 0.5;
  background: currentColor;
  margin-bottom: 2rem;
}
.cid-uOEhYUmlyD .center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-uOEhYUmlyD .row .copyright {
    text-align: center;
    padding-bottom: 2rem;
  }
}
.cid-uOEhYUmlyD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOEhYUmlyD .row-links .row-links-soc {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOEhYUmlyD .row-links .row-links-soc li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOEhYUmlyD .row-links .row-links-soc li p {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-uOEhYUmlyD .row-links .row-links-soc {
    justify-content: center;
  }
}
.cid-uOEhYUmlyD .row-links-soc,
.cid-uOEhYUmlyD .row-links-soc-item .row-links-soc-item {
  color: #ffffff;
}
.cid-uOEhYUmlyD .copyright,
.cid-uOEhYUmlyD .line {
  color: #ffffff;
}
.cid-uOEhYUmlyD .row-links-soc {
  color: #ffffff;
}
