body {
  font-family: DM Sans;
}
.display-1 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.67px;
  font-weight: 400;
}
.display-1 > .mbr-iconfont {
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 3.56rem;
  line-height: 1.05;
  letter-spacing: -0.58px;
  font-weight: 400;
}
.display-2 > .mbr-iconfont {
  font-size: 4.45rem;
}
.display-4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.11rem;
  line-height: 1.68;
}
.display-4 > .mbr-iconfont {
  font-size: 1.3875rem;
}
.display-5 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.7rem;
  line-height: 1.2;
  letter-spacing: -0.38px;
  font-weight: 400;
}
.display-5 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-7 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.68;
  font-weight: 400;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.72rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.38rem;
    font-size: calc( 1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.8399999999999999rem + (3.4 - 1.8399999999999999) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.848rem;
    font-size: calc( 1.896rem + (3.56 - 1.896) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.896rem + (3.56 - 1.896) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.888rem;
    font-size: calc( 1.0385rem + (1.11 - 1.0385) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0385rem + (1.11 - 1.0385) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* Buttons */
@keyframes scale-in {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  to {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes scale-out {
  0% {
    transform: scaleX(1);
    transform-origin: right;
  }
  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}
.btn {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-sm {
  padding: 0.75rem 1rem;
  border-radius: 0;
}
.btn-md {
  padding: 1rem 2rem;
  border-radius: 0;
}
.btn-lg {
  padding: 1rem 2rem;
  border-radius: 0;
}
.bg-primary {
  background-color: #c5a55a !important;
}
.btn-secondary {
  background-color: #4c3f91 !important;
}
.bg-success {
  background-color: #9145b6 !important;
}
.bg-info {
  background-color: #b958a5 !important;
}
.bg-warning {
  background-color: #ff5677 !important;
}
.bg-danger {
  background-color: #afd3ce !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #c5a55a !important;
  border-color: #c5a55a !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background: #afd3ce !important;
  color: #000000 !important;
  border-color: #afd3ce !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #afd3ce !important;
  border-color: #afd3ce !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #4c3f91 !important;
  border-color: #4c3f91 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background: #ff5677 !important;
  color: #ffffff !important;
  border-color: #ff5677 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff5677 !important;
  border-color: #ff5677 !important;
}
.btn-info,
.btn-info:active {
  background-color: #c5a55a !important;
  border-color: #c5a55a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background: #4c3f91 !important;
  color: #ffffff !important;
  border-color: #4c3f91 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #4c3f91 !important;
  border-color: #4c3f91 !important;
}
.btn-success,
.btn-success:active {
  background-color: #9145b6 !important;
  border-color: #9145b6 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background: #c5a55a !important;
  color: #ffffff !important;
  border-color: #c5a55a !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c5a55a !important;
  border-color: #c5a55a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ff5677 !important;
  border-color: #ff5677 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background: #9145b6 !important;
  color: #ffffff !important;
  border-color: #9145b6 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9145b6 !important;
  border-color: #9145b6 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #afd3ce !important;
  border-color: #afd3ce !important;
  color: #000000 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background: #9145b6 !important;
  color: #ffffff !important;
  border-color: #9145b6 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #000000 !important;
  background-color: #9145b6 !important;
  border-color: #9145b6 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #333333 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background: #000000 !important;
  color: #ffffff !important;
  border-color: #000000 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #333333 !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black,
.btn-black:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background: #ffffff !important;
  color: #333333 !important;
  border-color: #ffffff !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #c5a55a;
  color: #c5a55a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff !important;
  background-color: #c5a55a !important;
  border-color: #c5a55a !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #c5a55a !important;
  border-color: #c5a55a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #4c3f91;
  color: #4c3f91;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff !important;
  background-color: #4c3f91 !important;
  border-color: #4c3f91 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #4c3f91 !important;
  border-color: #4c3f91 !important;
}
.btn-info-outline {
  color: #c5a55a !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-info-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #c5a55a;
}
.btn-info-outline:hover {
  background-color: transparent !important;
  color: #ff5677 !important;
}
.btn-info-outline:active {
  outline: none;
}
.btn-info-outline:hover:after {
  background-color: #ff5677;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #9145b6;
  color: #9145b6;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff !important;
  background-color: #9145b6 !important;
  border-color: #9145b6 !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9145b6 !important;
  border-color: #9145b6 !important;
}
.btn-warning-outline {
  color: #ff5677 !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-warning-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #ff5677;
}
.btn-warning-outline:hover {
  background-color: transparent !important;
  color: #afd3ce !important;
}
.btn-warning-outline:active {
  outline: none;
}
.btn-warning-outline:hover:after {
  background-color: #afd3ce;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-danger-outline {
  color: #c5a55a !important;
  background: transparent !important;
  border: 0 !important;
  padding-top: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  padding-bottom: .25rem !important;
  position: relative;
  font-weight: 500 !important;
  transition: color 0.25s cubic-bezier(0.28, 0.44, 0.49, 1);
}
.btn-danger-outline:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  width: 100%;
  will-change: transform;
  background-color: #c5a55a;
}
.btn-danger-outline:hover {
  background-color: transparent !important;
  color: #4c3f91 !important;
}
.btn-danger-outline:active {
  outline: none;
}
.btn-danger-outline:hover:after {
  background-color: #4c3f91;
  animation: scale-out 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0s forwards, scale-in 0.25s cubic-bezier(0.28, 0.44, 0.49, 1) 0.25s forwards;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background-color: transparent;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #000000;
  border-color: #000000;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background-color: transparent;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #c5a55a !important;
}
.text-secondary {
  color: #4c3f91 !important;
}
.text-success {
  color: #9145b6 !important;
}
.text-info {
  color: #b958a5 !important;
}
.text-warning {
  color: #ff5677 !important;
}
.text-danger {
  color: #afd3ce !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #c5a55a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #4c3f91 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #9145b6 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #b958a5 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ff5677 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #afd3ce !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #fafafa !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #232323 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #c5a55a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b958a5;
}
.alert-warning {
  background-color: #ff5677;
}
.alert-danger {
  background-color: #afd3ce;
}
.mbr-gallery-filter li.active .btn {
  background-color: #c5a55a;
  border-color: #c5a55a;
  color: #ffffff;
}
a,
a:hover {
  color: #c5a55a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e6d8b8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #c7a0db;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dfb2d5;
}
.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*/
.form-control {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.11rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.3875rem;
}
.form-control:-webkit-input-placeholder {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.11rem;
  line-height: 1.68;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.3875rem;
}
blockquote {
  border-color: #c5a55a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #c5a55a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #c5a55a;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #c5a55a;
  border-bottom-color: #c5a55a;
}
.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: #c5a55a !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: #4c3f91 !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='%23c5a55a' %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;
}
.cid-sMhHhY1D6k {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-sMhHhY1D6k nav.navbar {
  position: fixed;
}
.cid-sMhHhY1D6k .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMhHhY1D6k .dropdown-menu {
  padding: 0;
  border-radius: 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  margin-top: 0px;
}
.cid-sMhHhY1D6k .dropdown-item:hover,
.cid-sMhHhY1D6k .dropdown-item:focus {
  color: #c5a55a !important;
}
.cid-sMhHhY1D6k .nav-dropdown .link {
  padding: 0 0em !important;
  margin: 0.667em 1em !important;
  font-weight: 500;
}
.cid-sMhHhY1D6k .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sMhHhY1D6k .nav-link {
  position: relative;
  padding: 0;
}
.cid-sMhHhY1D6k .container {
  display: flex;
  margin: auto;
}
.cid-sMhHhY1D6k .iconfont-wrapper {
  color: #1d2024 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sMhHhY1D6k .dropdown-menu,
.cid-sMhHhY1D6k .navbar.opened {
  background: #ffffff !important;
}
.cid-sMhHhY1D6k .nav-item:focus,
.cid-sMhHhY1D6k .nav-link:focus {
  outline: none;
}
.cid-sMhHhY1D6k .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sMhHhY1D6k .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sMhHhY1D6k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sMhHhY1D6k .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sMhHhY1D6k .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sMhHhY1D6k .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sMhHhY1D6k .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-sMhHhY1D6k .navbar.opened {
  transition: all 0.3s;
}
.cid-sMhHhY1D6k .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sMhHhY1D6k .navbar .navbar-logo img {
  width: auto;
}
.cid-sMhHhY1D6k .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sMhHhY1D6k .navbar.collapsed {
  justify-content: center;
}
.cid-sMhHhY1D6k .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sMhHhY1D6k .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sMhHhY1D6k .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.9rem);
  }
}
.cid-sMhHhY1D6k .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sMhHhY1D6k .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sMhHhY1D6k .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sMhHhY1D6k .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sMhHhY1D6k .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sMhHhY1D6k .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sMhHhY1D6k .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sMhHhY1D6k .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sMhHhY1D6k .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sMhHhY1D6k .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sMhHhY1D6k .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sMhHhY1D6k .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sMhHhY1D6k .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sMhHhY1D6k .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sMhHhY1D6k .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sMhHhY1D6k .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sMhHhY1D6k .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sMhHhY1D6k .navbar.navbar-short {
  min-height: 60px;
}
.cid-sMhHhY1D6k .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sMhHhY1D6k .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sMhHhY1D6k .navbar-brand {
  display: inline-flex;
  align-items: center;
  min-height: 70px;
  flex-shrink: 0;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sMhHhY1D6k .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sMhHhY1D6k .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sMhHhY1D6k .dropdown-item.active,
.cid-sMhHhY1D6k .dropdown-item:active {
  background-color: transparent;
}
.cid-sMhHhY1D6k .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sMhHhY1D6k .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sMhHhY1D6k .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sMhHhY1D6k .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sMhHhY1D6k .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sMhHhY1D6k .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sMhHhY1D6k ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sMhHhY1D6k .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sMhHhY1D6k button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sMhHhY1D6k button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-sMhHhY1D6k button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sMhHhY1D6k button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMhHhY1D6k button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sMhHhY1D6k button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sMhHhY1D6k nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMhHhY1D6k nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sMhHhY1D6k nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sMhHhY1D6k nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sMhHhY1D6k .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sMhHhY1D6k a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sMhHhY1D6k .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: flex-start;
  padding-left: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sMhHhY1D6k .navbar {
    height: 70px;
  }
  .cid-sMhHhY1D6k .navbar.opened {
    height: auto;
  }
  .cid-sMhHhY1D6k .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sMhHhY1D6k .line-animation {
  opacity: 0;
  position: absolute;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  transition: all 0.2s ease-in-out;
}
.cid-sMhHhY1D6k .nav-link:hover .line-animation {
  opacity: 1;
}
.cid-sMhHhY1D6k a {
  display: inline;
  font-weight: bold;
}
.cid-sMhHhY1D6k img {
  display: inline;
  padding-right: 10px;
}
.cid-sMhHhY1D6k .dropdown-toggle:after {
  display: none;
}
.cid-sMhHhY1D6k .navbar .dropdown-item {
  display: block;
  border-radius: 0;
  padding-top: 2px;
  padding-bottom: 2px;
}
.cid-sMhHhY1D6k .dropdown-item:hover {
  color: #ff5677 !important;
}
@media (max-width: 990px) {
  .cid-sMhHhY1D6k .dropdown-menu {
    margin-top: 0px;
  }
  .cid-sMhHhY1D6k .collapse .btn {
    margin: 11px 21px 18px;
  }
}
.cid-sMhHhY1D6k .navbar-collapse .btn {
  display: block;
  margin: 0px 21px 0;
  font-weight: 500;
}
@media (min-width: 992px) {
  .cid-sMhHhY1D6k .navbar-expand-lg .navbar-nav {
    -ms-flex-direction: row;
    flex-direction: row;
    align-items: center;
  }
}
.cid-sMhHhY1D6k .btn {
  display: inline !important;
}
.cid-sMhHhY1D6k .navbar .navbar-collapse ul.navbar-nav li {
  margin: 0 !important;
}
.cid-sMhHhY1D6k .navbar-collapse .nav-link {
  display: inline-flex;
}
.cid-sMhHhY1D6k .mbr-buttons {
  margin: 20px -6px 20px;
}
.cid-sMhHhY1D6k .nav-link:hover:after {
  transform: scaleX(1);
  transform-origin: left center;
}
.cid-sMhHhY1D6k .nav-link:after {
  content: '';
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  border-top-width: .143em;
  border-top-style: solid;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}
.cid-sMcILJzDFu .modal-body .close {
  background: #1b1b1b;
}
.cid-sMcILJzDFu .modal-body .close span {
  font-style: normal;
}
.cid-sMcILJzDFu .carousel-inner > .active,
.cid-sMcILJzDFu .carousel-inner > .next,
.cid-sMcILJzDFu .carousel-inner > .prev {
  display: flex;
}
.cid-sMcILJzDFu .carousel-control .icon-next,
.cid-sMcILJzDFu .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-sMcILJzDFu .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-sMcILJzDFu .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sMcILJzDFu .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-sMcILJzDFu .boxed-slider > div {
  position: relative;
}
.cid-sMcILJzDFu .container img {
  width: 100%;
}
.cid-sMcILJzDFu .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-sMcILJzDFu .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sMcILJzDFu .mbr-table-cell {
  padding: 0;
}
.cid-sMcILJzDFu .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sMcILJzDFu .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sMcILJzDFu .mbr-overlay {
  z-index: 1;
}
.cid-sMcILJzDFu .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sMcILJzDFu .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-sMcILJzDFu .carousel-item.active.right,
.cid-sMcILJzDFu .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sMcILJzDFu .carousel-item.active.left,
.cid-sMcILJzDFu .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-sMcILJzDFu .carousel-item.active,
.cid-sMcILJzDFu .carousel-item.next.left,
.cid-sMcILJzDFu .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-sMcILJzDFu .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-sMcILJzDFu .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sMcILJzDFu .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sMcILJzDFu .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-sMcILJzDFu .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sMcILJzDFu .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sMcILJzDFu .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-sMcILJzDFu .mbr-slider .carousel-indicators li.active,
.cid-sMcILJzDFu .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-sMcILJzDFu .mbr-slider .carousel-indicators li::after,
.cid-sMcILJzDFu .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-sMcILJzDFu .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-sMcILJzDFu .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-sMcILJzDFu .mbr-slider > .container img {
  width: 100%;
}
.cid-sMcILJzDFu .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-sMcILJzDFu .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-sMcILJzDFu .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-sMcILJzDFu .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-sMcILJzDFu .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-sMcILJzDFu .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-sMcILJzDFu .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-sMcILJzDFu .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-sMcILJzDFu .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-sMcILJzDFu .full-screen .carousel-item .container.container-slide {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-sMcILJzDFu .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-sMcILJzDFu .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-sMcILJzDFu .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-sMcILJzDFu H2 {
  text-align: center;
}
.cid-sMcILJzDFu P {
  text-align: center;
}
.cid-sRR2rRcsqc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sRR2rRcsqc .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: .75rem;
}
.cid-sRR2rRcsqc .card {
  margin-bottom: 1.5rem;
}
.cid-sRR2rRcsqc .card-wrapper {
  overflow: visible;
  padding: 2.5rem 1.5rem;
  border-bottom: 8px solid grey;
  background-color: #f5f9fc;
}
@media (max-width: 767px) {
  .cid-sRR2rRcsqc .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-sRR2rRcsqc .card-wrapper-1 {
  border-color: #f47645;
}
.cid-sRR2rRcsqc .card-wrapper-2 {
  border-color: #7acfdf;
}
.cid-sRR2rRcsqc .card-wrapper-3 {
  border-color: #f7d6bf;
}
.cid-sRR2rRcsqc .card-wrapper-4 {
  border-color: #eec39c;
}
.cid-sRR2rRcsqc .card-wrapper-5 {
  border-color: #d4e7eb;
}
.cid-sRR2rRcsqc .card-wrapper-6 {
  border-color: #67beb0;
}
.cid-sRR2rRcsqc .card-text {
  text-align: left;
}
.cid-sRR2rRcsqc .card-number {
  color: #000000;
  text-align: left;
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-sRR2rRcsqc .card-number {
    text-align: center;
  }
}
.cid-sRR2rRcsqc .mbr-section-title {
  text-align: left;
}
.cid-t2dIOjRxj7 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #f5f9fc;
}
.cid-t2dIOjRxj7 span {
  color: #c1c1c1;
}
.cid-t2dIOjRxj7 .mbr-text {
  padding-left: 1.5rem;
}
.cid-t2dIOjRxj7 .mbr-section-title {
  padding-left: 1.5px;
}
.cid-t2dIOjRxj7 .mbr-section-btn {
  margin-top: 22.5px;
}
.cid-t2dIOjRxj7 H1 {
  text-align: left;
  color: #000000;
}
.cid-t2dIOjRxj7 .mbr-text,
.cid-t2dIOjRxj7 .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sgRvQDSyRh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #f5f9fc;
}
.cid-sgRvQDSyRh [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.cid-sgRvQDSyRh .mbr-section-title {
  text-align: left;
}
.cid-sgRvQDSyRh .mbr-section-subtitle {
  margin-top: 1.5rem;
  text-align: left;
}
.cid-sgRvQDSyRh .mbr-section-btn {
  padding-top: 2rem;
}
.cid-sgRvQDSyRh .section-header {
  margin-bottom: 3rem;
}
.cid-sgRvQDSyRh .row-item {
  padding: 3rem;
  padding-top: 3.7rem;
  height: 100%;
}
.cid-sgRvQDSyRh .row-item.card1 {
  background: #7acfdf;
}
.cid-sgRvQDSyRh .row-item.card2 {
  background: #f47645;
}
.cid-sgRvQDSyRh .row-item.card3 {
  background: #f9ad8d;
}
.cid-sgRvQDSyRh .row-item.card4 {
  background: #fde3d9;
}
@media (max-width: 1024px) {
  .cid-sgRvQDSyRh .row-item {
    padding: 2rem;
  }
}
.cid-sgRvQDSyRh .mbr-card-title {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .cid-sgRvQDSyRh .card-img,
  .cid-sgRvQDSyRh .mbr-text,
  .cid-sgRvQDSyRh .mbr-card-title,
  .cid-sgRvQDSyRh .mbr-section-subtitle,
  .cid-sgRvQDSyRh .mbr-section-title,
  .cid-sgRvQDSyRh .underline {
    text-align: center !important;
  }
}
.cid-sgRvQDSyRh .mbr-iconfont {
  background-color: #000000;
  font-size: 30px;
  height: 56px;
  min-width: 56px;
  padding: .7rem;
  color: #fff;
  border: 1px solid #000000;
  border-radius: 50%;
}
.cid-sgRvQDSyRh .card-img {
  margin-bottom: 1.7rem;
  text-align: left;
}
.cid-sgRvQDSyRh .card2 > .mbr-text,
.cid-sgRvQDSyRh .card2 > .mbr-section-btn {
  text-align: left;
}
.cid-sgRvQDSyRh .card1 > .mbr-text,
.cid-sgRvQDSyRh .card1 > .mbr-section-btn {
  text-align: left;
}
.cid-sgRvQDSyRh .card3 > .mbr-text,
.cid-sgRvQDSyRh .card3 > .mbr-section-btn {
  text-align: left;
}
.cid-sgRvQDSyRh .card4 > .mbr-text,
.cid-sgRvQDSyRh .card4 > .mbr-section-btn {
  text-align: left;
}
.cid-sNTu21pRsC {
  padding-top: 0rem;
  padding-bottom: 3rem;
  background-color: #f5f9fc;
}
.cid-sNTu21pRsC .content-row {
  background-color: #7acfdf;
  padding: 5rem;
}
@media (max-width: 767px) {
  .cid-sNTu21pRsC .content-row {
    padding: 1rem;
  }
}
.cid-sNTu21pRsC p {
  margin-bottom: 0rem;
}
.cid-sNTu21pRsC .btn {
  margin-bottom: 0rem;
}
.cid-sNTu21pRsC .mbr-section-title {
  margin-bottom: 20px;
}
.cid-sNTu21pRsC .mbr-section-subtitle {
  opacity: 0.8;
  margin-bottom: 15px;
}
.cid-sNTu21pRsC .mbr-section-btn {
  margin-right: 0rem;
}
@media (max-width: 767px) {
  .cid-sNTu21pRsC .mbr-section-btn {
    text-align: left;
  }
  .cid-sNTu21pRsC .btn {
    margin-left: 0rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-sNTu21pRsC .mbr-section-btn {
    text-align: left;
  }
  .cid-sNTu21pRsC .btn {
    margin-left: 0rem;
  }
}
@media (max-width: 991px) {
  .cid-sNTu21pRsC .mbr-section-btn {
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sNTu21pRsC .btn {
    margin-top: 0rem;
  }
}
.cid-sNTu21pRsC H1 {
  text-align: left;
}
.cid-sNTu21pRsC .mbr-text {
  text-align: left;
}
.cid-sgRvTcp1GG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f9ad8d;
}
.cid-sgRvTcp1GG span {
  color: #c1c1c1;
}
.cid-sgRvTcp1GG .mbr-text {
  padding-left: 1.5rem;
}
.cid-sgRvTcp1GG .mbr-section-title {
  padding-left: 1.5px;
}
.cid-sgRvTcp1GG .mbr-section-btn {
  margin-top: 22.5px;
}
.cid-sgRvTcp1GG H1 {
  text-align: left;
  color: #000000;
}
.cid-sgRvTcp1GG .mbr-text,
.cid-sgRvTcp1GG .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sRcV7kdMPs {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #f5f9fc;
}
.cid-sRcV7kdMPs span {
  color: #c1c1c1;
}
.cid-sRcV7kdMPs .mbr-text {
  padding-left: 1.5rem;
}
.cid-sRcV7kdMPs .mbr-section-title {
  padding-left: 1.5px;
}
.cid-sRcV7kdMPs .mbr-section-btn {
  margin-top: 22.5px;
}
.cid-sRcV7kdMPs H1 {
  text-align: left;
  color: #000000;
}
.cid-sRcV7kdMPs .mbr-text,
.cid-sRcV7kdMPs .mbr-section-btn {
  text-align: left;
  color: #000000;
}
.cid-sRcSzMQZsP {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background: #f5f9fc;
}
.cid-sRcSzMQZsP h3 {
  line-height: 110%;
}
.cid-sRcSzMQZsP .card {
  margin-bottom: 20px;
}
.cid-sRcSzMQZsP .card-main-info {
  position: relative;
  border-radius: 10px;
}
.cid-sRcSzMQZsP .img-text {
  position: absolute;
  bottom: 14px;
  padding: 0 10px;
  color: #fff;
}
.cid-sRcSzMQZsP .card-img {
  width: 100%;
}
.cid-sRcSzMQZsP .mbr-text {
  color: #868c90;
}
.cid-sRcSzMQZsP .mbr-section-title {
  margin: 0;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-sRcSzMQZsP .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-sRcSzMQZsP .card-subtitle {
  line-height: 1.2;
}
.cid-sRcSzMQZsP .card__professional {
  line-height: 1.72;
  font-weight: 300;
}
.cid-sRcSzMQZsP .card-text {
  line-height: 110%;
  font-weight: 500;
}
.cid-sObHzgUehJ {
  padding-top: 4rem;
  padding-bottom: 5rem;
  background: #f47645;
}
.cid-sObHzgUehJ .team-card {
  margin-bottom: 2rem;
  transition: all 0.3s;
}
.cid-sObHzgUehJ .team-card:hover {
  transform: translateY(-10px);
}
.cid-sObHzgUehJ .card-wrap {
  border-radius: 4px;
}
@media (max-width: 991px) {
  .cid-sObHzgUehJ .card-wrap {
    margin-bottom: 2rem;
  }
}
.cid-sObHzgUehJ .card-wrap .image-wrap img {
  width: 100%;
}
.cid-sObHzgUehJ .social-row .soc-item {
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sObHzgUehJ .social-row .soc-item .mbr-iconfont {
  color: #ffffff;
  transition: all 0.3s;
}
.cid-sObHzgUehJ .social-row .soc-item .mbr-iconfont:hover {
  color: #c5a55a;
}
.cid-sObHzgUehJ .content-wrap {
  padding-top: 2rem;
}
.cid-sObHzgUehJ .mbr-role,
.cid-sObHzgUehJ .social-row {
  color: #000000;
}
.cid-sObHzgUehJ .mbr-section-subtitle {
  color: #000000;
  font-weight: 600;
}
.cid-sObHzgUehJ .card-title,
.cid-sObHzgUehJ .social-row {
  color: #f9ad8d;
}
.cid-sObHzgUehJ .mbr-section-text {
  color: #707070;
}
.cid-sObHzgUehJ .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-sObHzgUehJ .card-text,
.cid-sObHzgUehJ .mbr-section-btn,
.cid-sObHzgUehJ .social-row {
  color: #fafafa;
}
.cid-t1omKgGVrK {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #f5f9fc;
}
.cid-t1omKgGVrK H1 {
  color: #000000;
}
.cid-t1omKgGVrK .mbr-text,
.cid-t1omKgGVrK .mbr-section-btn {
  color: #000000;
}
.cid-t1omKgGVrK .mbr-subtitle {
  color: #000000;
}
.cid-t1omKgGVrK .mbr-text {
  margin-top: 1.5rem;
}
.cid-t1omKgGVrK .mbr-section-btn {
  margin-top: 2rem;
}
.cid-sNTVJyGWX1 {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f5f9fc;
}
.cid-sNTVJyGWX1 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-sNTVJyGWX1 .form-control,
.cid-sNTVJyGWX1 .field-input {
  padding: 0.5rem;
  background-color: #f0dec8;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sNTVJyGWX1 .form-control::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .field-input::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .form-control::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .field-input::-webkit-input-placeholder {
  color: #5c6873;
}
.cid-sNTVJyGWX1 .form-control:-moz-placeholder,
.cid-sNTVJyGWX1 .field-input:-moz-placeholder,
.cid-sNTVJyGWX1 .form-control:-moz-placeholder,
.cid-sNTVJyGWX1 .field-input:-moz-placeholder {
  color: #5c6873;
}
.cid-sNTVJyGWX1 .form-control:hover,
.cid-sNTVJyGWX1 .field-input:hover,
.cid-sNTVJyGWX1 .form-control:focus,
.cid-sNTVJyGWX1 .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #522802;
  box-shadow: none;
  outline: none;
}
.cid-sNTVJyGWX1 .form-control:hover::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .field-input:hover::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .form-control:focus::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .field-input:focus::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .form-control:hover::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .field-input:hover::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .form-control:focus::-webkit-input-placeholder,
.cid-sNTVJyGWX1 .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-sNTVJyGWX1 .form-control:hover:-moz-placeholder,
.cid-sNTVJyGWX1 .field-input:hover:-moz-placeholder,
.cid-sNTVJyGWX1 .form-control:focus:-moz-placeholder,
.cid-sNTVJyGWX1 .field-input:focus:-moz-placeholder,
.cid-sNTVJyGWX1 .form-control:hover:-moz-placeholder,
.cid-sNTVJyGWX1 .field-input:hover:-moz-placeholder,
.cid-sNTVJyGWX1 .form-control:focus:-moz-placeholder,
.cid-sNTVJyGWX1 .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-sNTVJyGWX1 .jq-number__spin:hover,
.cid-sNTVJyGWX1 .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-sNTVJyGWX1 .jq-number__spin {
  background-color: #f0dec8;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sNTVJyGWX1 .jq-selectbox li,
.cid-sNTVJyGWX1 .jq-selectbox li {
  background-color: #f0dec8;
  color: #000000;
}
.cid-sNTVJyGWX1 .jq-selectbox li:hover,
.cid-sNTVJyGWX1 .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-sNTVJyGWX1 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sNTVJyGWX1 .jq-number__spin.minus:hover:after,
.cid-sNTVJyGWX1 .jq-number__spin.plus:hover:after {
  border-top-color: #f0dec8;
  border-bottom-color: #f0dec8;
}
.cid-sNTVJyGWX1 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sNTVJyGWX1 .jq-number__spin.minus:after,
.cid-sNTVJyGWX1 .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-sNTVJyGWX1 input::-webkit-clear-button {
  display: none;
}
.cid-sNTVJyGWX1 input::-webkit-inner-spin-button {
  display: none;
}
.cid-sNTVJyGWX1 input::-webkit-outer-spin-button {
  display: none;
}
.cid-sNTVJyGWX1 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sNTVJyGWX1 H4 {
  text-align: center;
}
.cid-sNSZ45IQ4A {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/img-1648-2000x1500.jpeg");
}
.cid-sNSZ45IQ4A .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-sNSZ45IQ4A .social-row {
    justify-content: left;
  }
  .cid-sNSZ45IQ4A .social-row .soc-item {
    margin-right: 0;
    margin: 0 .5rem .5rem 0;
  }
}
.cid-sNSZ45IQ4A .mbr-section-subtitle {
  text-align: left;
  color: #fafafa;
}
.cid-sNSZ45IQ4A a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-sNSZ45IQ4A .addres-list li {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-sNSZ45IQ4A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0px solid #fafafa;
  margin-right: 0.8rem;
  margin-bottom: 1rem;
  height: 3.2rem;
  width: 3.2rem;
}
.cid-sNSZ45IQ4A .soc-item:hover .mbr-iconfont {
  color: #c5a55a;
}
.cid-sNSZ45IQ4A .list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  text-align: left;
  color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sNSZ45IQ4A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sNSZ45IQ4A .list {
    margin-bottom: 0rem;
  }
}
.cid-sNSZ45IQ4A .mbr-iconfont {
  transition: color 0.3s;
  color: #fafafa;
  font-size: 1.2rem;
}
.cid-sNSZ45IQ4A .addres-list {
  text-align: left;
  color: #fafafa;
}
.cid-sNSZ45IQ4A li {
  margin-bottom: .5rem;
}
.cid-sNSZ45IQ4A li:hover {
  opacity: .75;
}
.cid-sNSZ45IQ4A .privacy {
  display: flex;
  justify-content: space-between;
  align-items: left;
  padding-top: 1.5rem;
  margin-top: 4rem;
  border-top: 2px solid #444;
}
.cid-sNSZ45IQ4A SPAN {
  text-align: left;
  color: #fafafa;
}
.cid-sNSZ45IQ4A .privacy-text {
  text-align: left;
}
.cid-sNSZ45IQ4A .mbr-section-subtitle P {
  text-align: left;
}
.cid-sgRvNcGr2o {
  padding-top: 90px;
  padding-bottom: 90px;
  overflow: hidden;
  background: #ffffff;
}
@media (min-width: 1330px) {
  .cid-sgRvNcGr2o .container {
    max-width: 1330px !important;
  }
}
.cid-sgRvNcGr2o .content-wrap {
  background-color: #7acfdf;
}
.cid-sgRvNcGr2o .card-wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-sgRvNcGr2o .card-wrap {
    width: calc(100% + 10rem);
    margin-left: 46px;
  }
}
@media (max-width: 767px) {
  .cid-sgRvNcGr2o .card-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 48px 20px 48px 20px;
  }
}
.cid-sgRvNcGr2o .img-wrap {
  height: 100%;
}
.cid-sgRvNcGr2o .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-sgRvNcGr2o .mbr-section-subtitle {
  animation-delay: .2s;
}
.cid-sgRvNcGr2o .mbr-section-btn {
  margin-top: 2rem;
  margin-bottom: -0.25rem;
  animation-delay: .4s;
}
.cid-sgRvNcGr2o [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-sgRvNcGr2o .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-sgRvNcGr2o .mbr-section-subtitle,
.cid-sgRvNcGr2o .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-sgRvNcGr2o H1 {
  text-align: left;
  color: #000000;
}
.cid-sNMMcL0lVO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNMMcL0lVO .container-fluid {
  padding: 0 3rem;
}
.cid-sNMMcL0lVO .mbr-section-subtitle {
  color: #000000;
}
.cid-sNMMcL0lVO .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNMMcL0lVO .table-wrapper {
  margin: 0 auto;
}
.cid-sNMMcL0lVO .head-item {
  min-width: 70px;
  text-align: left;
}
.cid-sNMMcL0lVO table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sNMMcL0lVO table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #f47645;
  color: white;
  vertical-align: middle;
}
.cid-sNMMcL0lVO table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sNMMcL0lVO .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNMMcL0lVO .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNMMcL0lVO .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-sNMMcL0lVO .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sNMMcL0lVO .dataTables_wrapper {
  display: block;
}
.cid-sNMMcL0lVO .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNMMcL0lVO .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNMMcL0lVO .head-item:after,
.cid-sNMMcL0lVO .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-sNMMcL0lVO .dataTables_filter {
    text-align: center;
  }
  .cid-sNMMcL0lVO .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sNMMcL0lVO .dataTables_filter {
    text-align: center;
  }
  .cid-sNMMcL0lVO .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sNMMcL0lVO .table-wrapper {
    width: 100% !important;
  }
  .cid-sNMMcL0lVO .container-fluid {
    padding: 0 1rem;
  }
  .cid-sNMMcL0lVO table th,
  .cid-sNMMcL0lVO table td {
    padding: 0.75rem;
  }
}
.cid-sNMMcL0lVO .body-item {
  text-align: left;
}
.cid-sNMMdu3A8K {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNMMdu3A8K .container-fluid {
  padding: 0 3rem;
}
.cid-sNMMdu3A8K .mbr-section-subtitle {
  color: #000000;
}
.cid-sNMMdu3A8K .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNMMdu3A8K .table-wrapper {
  margin: 0 auto;
}
.cid-sNMMdu3A8K .head-item {
  min-width: 70px;
  text-align: left;
}
.cid-sNMMdu3A8K table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sNMMdu3A8K table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #7acfdf;
  color: white;
  vertical-align: middle;
}
.cid-sNMMdu3A8K table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sNMMdu3A8K .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNMMdu3A8K .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNMMdu3A8K .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-sNMMdu3A8K .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sNMMdu3A8K .dataTables_wrapper {
  display: block;
}
.cid-sNMMdu3A8K .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNMMdu3A8K .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNMMdu3A8K .head-item:after,
.cid-sNMMdu3A8K .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-sNMMdu3A8K .dataTables_filter {
    text-align: center;
  }
  .cid-sNMMdu3A8K .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sNMMdu3A8K .dataTables_filter {
    text-align: center;
  }
  .cid-sNMMdu3A8K .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sNMMdu3A8K .table-wrapper {
    width: 100% !important;
  }
  .cid-sNMMdu3A8K .container-fluid {
    padding: 0 1rem;
  }
  .cid-sNMMdu3A8K table th,
  .cid-sNMMdu3A8K table td {
    padding: 0.75rem;
  }
}
.cid-sNMMdu3A8K .body-item {
  text-align: left;
}
.cid-sNMMeKl1nD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNMMeKl1nD .container-fluid {
  padding: 0 3rem;
}
.cid-sNMMeKl1nD .mbr-section-subtitle {
  color: #000000;
}
.cid-sNMMeKl1nD .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNMMeKl1nD .table-wrapper {
  margin: 0 auto;
}
.cid-sNMMeKl1nD .head-item {
  min-width: 70px;
  text-align: left;
}
.cid-sNMMeKl1nD table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sNMMeKl1nD table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #f9ad8d;
  color: white;
  vertical-align: middle;
}
.cid-sNMMeKl1nD table td {
  padding: 1.2rem 1.6rem;
  vertical-align: left;
}
.cid-sNMMeKl1nD .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNMMeKl1nD .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNMMeKl1nD .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-sNMMeKl1nD .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sNMMeKl1nD .dataTables_wrapper {
  display: block;
}
.cid-sNMMeKl1nD .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNMMeKl1nD .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNMMeKl1nD .head-item:after,
.cid-sNMMeKl1nD .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-sNMMeKl1nD .dataTables_filter {
    text-align: center;
  }
  .cid-sNMMeKl1nD .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sNMMeKl1nD .dataTables_filter {
    text-align: center;
  }
  .cid-sNMMeKl1nD .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sNMMeKl1nD .table-wrapper {
    width: 100% !important;
  }
  .cid-sNMMeKl1nD .container-fluid {
    padding: 0 1rem;
  }
  .cid-sNMMeKl1nD table th,
  .cid-sNMMeKl1nD table td {
    padding: 0.75rem;
  }
}
.cid-sNMMeKl1nD .body-item {
  text-align: left;
}
.cid-sNMPrlkzBs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNMPrlkzBs .container-fluid {
  padding: 0 3rem;
}
.cid-sNMPrlkzBs .mbr-section-subtitle {
  color: #000000;
}
.cid-sNMPrlkzBs .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNMPrlkzBs .table-wrapper {
  margin: 0 auto;
}
.cid-sNMPrlkzBs .head-item {
  min-width: 70px;
  text-align: left;
}
.cid-sNMPrlkzBs table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sNMPrlkzBs table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #000000;
  color: white;
  vertical-align: middle;
}
.cid-sNMPrlkzBs table td {
  padding: 1.2rem 1.6rem;
  vertical-align: left;
}
.cid-sNMPrlkzBs .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNMPrlkzBs .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNMPrlkzBs .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-sNMPrlkzBs .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sNMPrlkzBs .dataTables_wrapper {
  display: block;
}
.cid-sNMPrlkzBs .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNMPrlkzBs .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNMPrlkzBs .head-item:after,
.cid-sNMPrlkzBs .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-sNMPrlkzBs .dataTables_filter {
    text-align: center;
  }
  .cid-sNMPrlkzBs .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sNMPrlkzBs .dataTables_filter {
    text-align: center;
  }
  .cid-sNMPrlkzBs .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sNMPrlkzBs .table-wrapper {
    width: 100% !important;
  }
  .cid-sNMPrlkzBs .container-fluid {
    padding: 0 1rem;
  }
  .cid-sNMPrlkzBs table th,
  .cid-sNMPrlkzBs table td {
    padding: 0.75rem;
  }
}
.cid-sNMPrlkzBs .body-item {
  text-align: left;
}
.cid-sNMQDBhYtu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNMQDBhYtu .container-fluid {
  padding: 0 3rem;
}
.cid-sNMQDBhYtu .mbr-section-subtitle {
  color: #000000;
}
.cid-sNMQDBhYtu .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNMQDBhYtu .table-wrapper {
  margin: 0 auto;
}
.cid-sNMQDBhYtu .head-item {
  min-width: 70px;
  text-align: left;
}
.cid-sNMQDBhYtu table {
  width: 100% !important;
  margin-top: 6px;
  margin-bottom: 0;
}
.cid-sNMQDBhYtu table th {
  padding: 1.5rem 1rem;
  transition: all 0.2s;
  text-align: center;
  background-color: #000000;
  color: white;
  vertical-align: middle;
}
.cid-sNMQDBhYtu table td {
  padding: 1.2rem 1.6rem;
  vertical-align: middle;
}
.cid-sNMQDBhYtu .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNMQDBhYtu .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNMQDBhYtu .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 10px;
  padding-left: 1rem;
}
.cid-sNMQDBhYtu .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
  text-align: left;
  width: 100%;
}
.cid-sNMQDBhYtu .dataTables_wrapper {
  display: block;
}
.cid-sNMQDBhYtu .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNMQDBhYtu .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNMQDBhYtu .head-item:after,
.cid-sNMQDBhYtu .head-item:before {
  bottom: 50% !important;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
@media (max-width: 992px) {
  .cid-sNMQDBhYtu .dataTables_filter {
    text-align: center;
  }
  .cid-sNMQDBhYtu .table-wrapper {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cid-sNMQDBhYtu .dataTables_filter {
    text-align: center;
  }
  .cid-sNMQDBhYtu .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
  .cid-sNMQDBhYtu .table-wrapper {
    width: 100% !important;
  }
  .cid-sNMQDBhYtu .container-fluid {
    padding: 0 1rem;
  }
  .cid-sNMQDBhYtu table th,
  .cid-sNMQDBhYtu table td {
    padding: 0.75rem;
  }
}
.cid-sNMQDBhYtu .body-item {
  text-align: left;
}
.cid-t1KQQR42sD {
  padding-top: 75px;
  padding-bottom: 30px;
  background-color: #f5f9fc;
}
.cid-t1KQQR42sD H1 {
  color: #000000;
}
.cid-t1KQQR42sD .mbr-text,
.cid-t1KQQR42sD .mbr-section-btn {
  color: #000000;
}
.cid-t1KQQR42sD .mbr-subtitle {
  color: #000000;
}
.cid-t1KQQR42sD .mbr-text {
  margin-top: 1.5rem;
}
.cid-t1KQQR42sD .mbr-section-btn {
  margin-top: 2rem;
}
.cid-t1KRlTTG9N {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f5f9fc;
}
.cid-t1KRlTTG9N .mbr-iconfont {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  color: #fff;
  background-color: #000000;
  margin-bottom: 2rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}
.cid-t1KRlTTG9N .card {
  margin-bottom: 1.5rem;
}
.cid-t1KRlTTG9N .card-wrapper {
  padding: 3rem 2.5rem;
  background-color: #ffffff;
  border-width: 0 0 4px 0;
  border-style: solid;
}
.cid-t1KRlTTG9N .card-wrapper-1 {
  border-color: #67beb0;
}
.cid-t1KRlTTG9N .card-wrapper-2 {
  border-color: #eec39c;
}
.cid-t1KRlTTG9N .card-wrapper-3 {
  border-color: #bcd9df;
}
.cid-t1KRlTTG9N .card-wrapper-4 {
  border-color: #67beb0;
}
.cid-t1KRlTTG9N .card-title {
  position: relative;
  width: 100%;
  cursor: pointer;
  display: block;
  margin-right: 1rem;
  margin-bottom: 2rem;
}
.cid-t1KRlTTG9N .card-text {
  color: #000000;
  text-align: left;
}
.cid-t1KRlTTG9N .card-title,
.cid-t1KRlTTG9N .icon-wrap {
  color: #000000;
  text-align: left;
}
.cid-t1KRlTTG9N .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-t1KRlTTG9N .card-subtitle {
  text-align: left;
}
.cid-t1KQPePzZc {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #f5f9fc;
}
.cid-t1KQPePzZc .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-t1KQPePzZc .form-control,
.cid-t1KQPePzZc .field-input {
  padding: 0.5rem;
  background-color: #f0dec8;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t1KQPePzZc .form-control::-webkit-input-placeholder,
.cid-t1KQPePzZc .field-input::-webkit-input-placeholder,
.cid-t1KQPePzZc .form-control::-webkit-input-placeholder,
.cid-t1KQPePzZc .field-input::-webkit-input-placeholder {
  color: #5c6873;
}
.cid-t1KQPePzZc .form-control:-moz-placeholder,
.cid-t1KQPePzZc .field-input:-moz-placeholder,
.cid-t1KQPePzZc .form-control:-moz-placeholder,
.cid-t1KQPePzZc .field-input:-moz-placeholder {
  color: #5c6873;
}
.cid-t1KQPePzZc .form-control:hover,
.cid-t1KQPePzZc .field-input:hover,
.cid-t1KQPePzZc .form-control:focus,
.cid-t1KQPePzZc .field-input:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #522802;
  box-shadow: none;
  outline: none;
}
.cid-t1KQPePzZc .form-control:hover::-webkit-input-placeholder,
.cid-t1KQPePzZc .field-input:hover::-webkit-input-placeholder,
.cid-t1KQPePzZc .form-control:focus::-webkit-input-placeholder,
.cid-t1KQPePzZc .field-input:focus::-webkit-input-placeholder,
.cid-t1KQPePzZc .form-control:hover::-webkit-input-placeholder,
.cid-t1KQPePzZc .field-input:hover::-webkit-input-placeholder,
.cid-t1KQPePzZc .form-control:focus::-webkit-input-placeholder,
.cid-t1KQPePzZc .field-input:focus::-webkit-input-placeholder {
  color: #c1c1c1;
}
.cid-t1KQPePzZc .form-control:hover:-moz-placeholder,
.cid-t1KQPePzZc .field-input:hover:-moz-placeholder,
.cid-t1KQPePzZc .form-control:focus:-moz-placeholder,
.cid-t1KQPePzZc .field-input:focus:-moz-placeholder,
.cid-t1KQPePzZc .form-control:hover:-moz-placeholder,
.cid-t1KQPePzZc .field-input:hover:-moz-placeholder,
.cid-t1KQPePzZc .form-control:focus:-moz-placeholder,
.cid-t1KQPePzZc .field-input:focus:-moz-placeholder {
  color: #c1c1c1;
}
.cid-t1KQPePzZc .jq-number__spin:hover,
.cid-t1KQPePzZc .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #cccccc;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-t1KQPePzZc .jq-number__spin {
  background-color: #f0dec8;
  border-color: #000000;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-t1KQPePzZc .jq-selectbox li,
.cid-t1KQPePzZc .jq-selectbox li {
  background-color: #f0dec8;
  color: #000000;
}
.cid-t1KQPePzZc .jq-selectbox li:hover,
.cid-t1KQPePzZc .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-t1KQPePzZc .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-t1KQPePzZc .jq-number__spin.minus:hover:after,
.cid-t1KQPePzZc .jq-number__spin.plus:hover:after {
  border-top-color: #f0dec8;
  border-bottom-color: #f0dec8;
}
.cid-t1KQPePzZc .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-t1KQPePzZc .jq-number__spin.minus:after,
.cid-t1KQPePzZc .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-t1KQPePzZc input::-webkit-clear-button {
  display: none;
}
.cid-t1KQPePzZc input::-webkit-inner-spin-button {
  display: none;
}
.cid-t1KQPePzZc input::-webkit-outer-spin-button {
  display: none;
}
.cid-t1KQPePzZc input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-t1KQPePzZc H4 {
  text-align: center;
}
.cid-sNSZ45IQ4A {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-image: url("../../../assets/images/img-1648-2000x1500.jpeg");
}
.cid-sNSZ45IQ4A .social-row {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .cid-sNSZ45IQ4A .social-row {
    justify-content: left;
  }
  .cid-sNSZ45IQ4A .social-row .soc-item {
    margin-right: 0;
    margin: 0 .5rem .5rem 0;
  }
}
.cid-sNSZ45IQ4A .mbr-section-subtitle {
  text-align: left;
  color: #fafafa;
}
.cid-sNSZ45IQ4A a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: left;
}
.cid-sNSZ45IQ4A .addres-list li {
  font-weight: 500;
  margin-bottom: 0;
}
.cid-sNSZ45IQ4A .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 0px solid #fafafa;
  margin-right: 0.8rem;
  margin-bottom: 1rem;
  height: 3.2rem;
  width: 3.2rem;
}
.cid-sNSZ45IQ4A .soc-item:hover .mbr-iconfont {
  color: #c5a55a;
}
.cid-sNSZ45IQ4A .list {
  list-style: none;
  padding-left: 0;
  margin-top: 1.5rem;
  text-align: left;
  color: #fafafa;
}
@media (max-width: 991px) {
  .cid-sNSZ45IQ4A .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sNSZ45IQ4A .list {
    margin-bottom: 0rem;
  }
}
.cid-sNSZ45IQ4A .mbr-iconfont {
  transition: color 0.3s;
  color: #fafafa;
  font-size: 1.2rem;
}
.cid-sNSZ45IQ4A .addres-list {
  text-align: left;
  color: #fafafa;
}
.cid-sNSZ45IQ4A li {
  margin-bottom: .5rem;
}
.cid-sNSZ45IQ4A li:hover {
  opacity: .75;
}
.cid-sNSZ45IQ4A .privacy {
  display: flex;
  justify-content: space-between;
  align-items: left;
  padding-top: 1.5rem;
  margin-top: 4rem;
  border-top: 2px solid #444;
}
.cid-sNSZ45IQ4A SPAN {
  text-align: left;
  color: #fafafa;
}
.cid-sNSZ45IQ4A .privacy-text {
  text-align: left;
}
.cid-sNSZ45IQ4A .mbr-section-subtitle P {
  text-align: left;
}
