body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  line-height: 1.5;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  line-height: 1.3;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.875rem;
  line-height: 1.3;
}
.display-5 > .mbr-iconfont {
  font-size: 3rem;
}
.display-7 {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  line-height: 2;
}
.display-7 > .mbr-iconfont {
  font-size: 2rem;
}
/* ---- 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: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.9rem !important;
    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.5rem;
    font-size: calc( 1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.30625rem + (1.875 - 1.30625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1rem;
    font-size: calc( 1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0875rem + (1.25 - 1.0875) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.4rem 1rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 8px;
}
.bg-primary {
  background-color: #ff513c !important;
}
.bg-success {
  background-color: #fff000 !important;
}
.bg-info {
  background-color: #61728a !important;
}
.bg-warning {
  background-color: #d52b27 !important;
}
.bg-danger {
  background-color: #1352ff !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #ef1a00 !important;
  border-color: #ef1a00 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #ef1a00 !important;
  border-color: #ef1a00 !important;
}
.btn-primary:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #282f39 !important;
  border-color: #282f39 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #080a0c !important;
  border-color: #080a0c !important;
}
.btn-secondary:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-info,
.btn-info:active {
  background-color: #61728a !important;
  border-color: #61728a !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #414d5d !important;
  border-color: #414d5d !important;
}
.btn-info:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-success,
.btn-success:active {
  background-color: #fff000 !important;
  border-color: #fff000 !important;
  color: #000000 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #000000 !important;
  background-color: #b3a800 !important;
  border-color: #b3a800 !important;
}
.btn-success:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #941e1b !important;
  border-color: #941e1b !important;
}
.btn-warning:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #1352ff !important;
  border-color: #1352ff !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0035c5 !important;
  border-color: #0035c5 !important;
}
.btn-danger:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-white,
.btn-white:active {
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
  color: #737373 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #737373 !important;
  background-color: #cdcdcd !important;
  border-color: #cdcdcd !important;
}
.btn-white:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-white:hover {
  color: white!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 {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-black:hover {
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #ff513c;
  color: #ff513c;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #ff513c;
  border-color: #ff513c;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff513c !important;
  border-color: #ff513c !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #282f39;
  color: #282f39;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #282f39;
  border-color: #282f39;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282f39 !important;
  border-color: #282f39 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #61728a;
  color: #61728a;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #61728a;
  border-color: #61728a;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #61728a !important;
  border-color: #61728a !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #fff000;
  color: #fff000;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #000000;
  background-color: #fff000;
  border-color: #fff000;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #000000 !important;
  background-color: #fff000 !important;
  border-color: #fff000 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #d52b27;
  color: #d52b27;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #d52b27;
  border-color: #d52b27;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d52b27 !important;
  border-color: #d52b27 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #1352ff;
  color: #1352ff;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #1352ff;
  border-color: #1352ff;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #1352ff !important;
  border-color: #1352ff !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background: none;
  border-color: #f3f3f3;
  color: #f3f3f3;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #737373;
  background-color: #f3f3f3;
  border-color: #f3f3f3;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #737373 !important;
  background-color: #f3f3f3 !important;
  border-color: #f3f3f3 !important;
}
.text-primary {
  color: #ff513c !important;
}
.text-secondary {
  color: #282f39 !important;
}
.text-success {
  color: #fff000 !important;
}
.text-info {
  color: #61728a !important;
}
.text-warning {
  color: #d52b27 !important;
}
.text-danger {
  color: #1352ff !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #ffaca2 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #526075 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #fff666 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #99a6b8 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #e77e7b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #799dff !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #61728a;
}
.alert-warning {
  background-color: #d52b27;
}
.alert-danger {
  background-color: #1352ff;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff513c;
  border-color: #ff513c;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ff513c;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffccc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #a8b3c2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #f7d2d1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfe8ff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #ff513c;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff513c;
  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: #ff513c;
  border-bottom-color: #ff513c;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #ff513c !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: #282f39 !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='%23ff513c' %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-rZqcaGjRSg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZqcaGjRSg .nav-item,
.cid-rZqcaGjRSg .nav-link,
.cid-rZqcaGjRSg .navbar-caption {
  font-weight: normal;
}
.cid-rZqcaGjRSg .nav-item:focus,
.cid-rZqcaGjRSg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZqcaGjRSg .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZqcaGjRSg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZqcaGjRSg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZqcaGjRSg .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-rZqcaGjRSg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rZqcaGjRSg .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rZqcaGjRSg .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rZqcaGjRSg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZqcaGjRSg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZqcaGjRSg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZqcaGjRSg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rZqcaGjRSg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-rZqcaGjRSg .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZqcaGjRSg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZqcaGjRSg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rZqcaGjRSg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZqcaGjRSg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-rZqcaGjRSg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZqcaGjRSg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rZqcaGjRSg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZqcaGjRSg .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rZqcaGjRSg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZqcaGjRSg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZqcaGjRSg .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZqcaGjRSg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZqcaGjRSg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZqcaGjRSg .dropdown-item.active,
.cid-rZqcaGjRSg .dropdown-item:active {
  background-color: transparent;
}
.cid-rZqcaGjRSg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZqcaGjRSg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZqcaGjRSg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rZqcaGjRSg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZqcaGjRSg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZqcaGjRSg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rZqcaGjRSg .navbar-buttons {
  text-align: center;
}
.cid-rZqcaGjRSg .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-rZqcaGjRSg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqcaGjRSg .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rZqcaGjRSg a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rZqcaGjRSg .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rZqcaGjRSg .soc-item {
  margin: .5rem .3rem;
}
.cid-rZqcaGjRSg .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZqcaGjRSg .navbar {
    height: 77px;
  }
  .cid-rZqcaGjRSg .navbar.opened {
    height: auto;
  }
  .cid-rZqcaGjRSg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0dVDWKbfu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/home-page-image-car-logo-proshine-1001x562.jpeg");
}
.cid-u0dVDWKbfu .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dVDWKbfu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dVDWKbfu .container-fluid {
  padding: 0 80px;
}
@media (max-width: 992px) {
  .cid-u0dVDWKbfu .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u0dVDWKbfu .container-fluid {
    padding: 0 16px;
  }
}
@media (max-width: 992px) {
  .cid-u0dVDWKbfu .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-u0dVDWKbfu .container {
    padding: 0 16px;
  }
}
.cid-u0dVDWKbfu .content-wrapper {
  margin-bottom: 20%;
}
.cid-u0dVDWKbfu .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u0dVDWKbfu .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0dVDWKbfu .content-wrapper .mbr-section-btn {
  margin-top: 16px;
}
.cid-u0dVDWKbfu .mbr-section-title {
  color: #000000;
}
.cid-u0dVDWKbfu .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-u0dVDWKbfu .mbr-section-title,
.cid-u0dVDWKbfu .mbr-section-btn {
  text-align: center;
  color: #ffffff;
}
.cid-rZqcRWiMig {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #000000;
}
.cid-rZqcRWiMig .content-left-wrapper .mbr-section-subtitle {
  color: #b6af8b;
}
.cid-rZqcRWiMig .content-left-wrapper .btn {
  margin: 0.4rem !important;
  justify-content: space-between;
}
.cid-rZqcRWiMig .content-left-wrapper .btn .mbr-iconfont {
  order: 2;
  margin-left: 24px;
}
.cid-u0dNlkowaT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u0dNlkowaT .mbr-section-title {
  color: #06182d;
}
.cid-u0dNlkowaT .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #55acee;
  background: linear-gradient(#55acee 0%, #007bff 69%, #1352ff 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0dNlkowaT .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u0dNlkowaT .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0dNlkowaT .card:nth-child(even) {
  margin-top: 70px;
}
.cid-u0dNlkowaT .card:nth-child(odd)::after {
  content: "";
  background-size: contain;
  background-image: url("../../../assets/images/arrow2.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 185px;
  height: 50px;
  z-index: 4;
  top: 1px;
  right: -148px;
}
.cid-u0dNlkowaT .card:nth-child(2)::after {
  content: "";
  background-size: contain;
  background-image: url("../../../assets/images/arrow2.png");
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 175px;
  height: 80px;
  z-index: 4;
  bottom: -12px;
  right: -100px;
  transform: scale(1, -1);
}
.cid-u0dNlkowaT .card .card-wrapper {
  height: 100%;
}
.cid-u0dNlkowaT .card .card-wrapper .card-img {
  position: relative;
}
.cid-u0dNlkowaT .card .card-wrapper .card-img:hover img {
  transform: rotateY(180deg);
}
.cid-u0dNlkowaT .card .card-wrapper .card-img img {
  border-radius: 100%;
  height: 200px;
  width: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 0.3s all ease-in-out;
  margin-left: auto;
  margin-right: auto;
}
.cid-u0dNlkowaT .card .card-wrapper .card-box {
  padding-top: 1rem;
}
.cid-u0dNlkowaT .card .card-wrapper .card-box .card-title {
  margin-bottom: 0;
  color: #06182d;
  text-align: center;
  font-weight: 700;
}
.cid-u0dNlkowaT .card .card-wrapper .card-box .mbr-text {
  text-align: center;
  color: #030f1c;
}
@media (max-width: 991px) {
  .cid-u0dNlkowaT .card:after {
    background-image: none !important;
    display: none !important;
  }
  .cid-u0dNlkowaT .card:nth-child(even) {
    margin-top: 0;
  }
}
.cid-u0dNlkowaT .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dNlkowaT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dNlkowaT .card .card-wrapper .card-box .mbr-text {
  color: #ffffff;
}
.cid-u0dNlkowaT .card .card-wrapper .card-box .card-title {
  color: #55acee;
}
.cid-u0dNlkowaT .mbr-section-title,
.cid-u0dNlkowaT .col {
  color: #ffffff;
}
.cid-u0dUzzwFyM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
@media (max-width: 992px) and (max-width: 992px) {
  .cid-u0dUzzwFyM .container {
    padding: 0 24px;
  }
}
.cid-u0dUzzwFyM .card {
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-u0dUzzwFyM .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-u0dUzzwFyM .title-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-u0dUzzwFyM .title-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-u0dUzzwFyM .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-u0dUzzwFyM .mbr-section-btn {
    text-align: left;
  }
}
.cid-u0dUzzwFyM .mbr-section-title {
  color: #F9F6E0;
}
.cid-u0dUzzwFyM .mbr-text {
  color: #F9F6E0;
}
.cid-u0dUzzwFyM .mbr-section-title,
.cid-u0dUzzwFyM .mbr-section-btn {
  color: #ffffff;
}
.cid-u0cvfoCwwl {
  padding-top: 30px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u0cvfoCwwl .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0cvfoCwwl .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-u0cvfoCwwl .card:hover {
  transform: translateY(-20px);
}
.cid-u0cvfoCwwl .card .card-wrapper {
  background: #999999;
  background-position: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-u0cvfoCwwl .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff000;
  line-height: 0.6;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-price {
  color: #fff000;
  line-height: 0.6;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-text,
.cid-u0cvfoCwwl .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-u0cvfoCwwl .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0cvfoCwwl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-list,
.cid-u0cvfoCwwl .mbr-section-btn {
  color: #000000;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-price,
.cid-u0cvfoCwwl .price-wrap {
  color: #007bff;
}
.cid-u0cvfoCwwl .card .card-wrapper .card-box .mbr-usd,
.cid-u0cvfoCwwl .price-wrap {
  color: #007bff;
}
.cid-u0cTOvKQee {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #000000;
}
.cid-u0cTOvKQee .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0cTOvKQee .card {
  padding: 5px;
  transition: transform 0.6s ease 0s;
}
.cid-u0cTOvKQee .card:hover {
  transform: translateY(-20px);
}
.cid-u0cTOvKQee .card .card-wrapper {
  background: #999999;
  background-position: center;
  padding: 40px 20px;
  cursor: pointer;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-u0cTOvKQee .card .card-wrapper {
    padding: 2rem 1rem;
  }
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .card-subtitle {
  color: #ffffff;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .start-from {
  line-height: 1.2;
  margin-bottom: 15px;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-usd {
  vertical-align: top;
  display: inline-block;
  color: #fff000;
  line-height: 0.6;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-price {
  color: #fff000;
  line-height: 0.6;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-text,
.cid-u0cTOvKQee .card .card-wrapper .card-box .link-align {
  color: #ffffff;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-list {
  margin-top: 20px;
  color: #ffffff;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-list .list li {
  line-height: 1.75;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-list .list li:before {
  font-weight: 900;
  color: #ffffff;
  display: inline-block;
  content: "✓";
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
}
.cid-u0cTOvKQee .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0cTOvKQee .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-price,
.cid-u0cTOvKQee .price-wrap {
  color: #007bff;
}
.cid-u0cTOvKQee .card .card-wrapper .card-box .mbr-usd,
.cid-u0cTOvKQee .price-wrap {
  color: #007bff;
}
.cid-u18UG9eyhj {
  padding-top: 75px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/img-20240102-wa0017-removebg-preview-577x433.png");
}
.cid-u18UG9eyhj .mbr-section-title.mbr-bold {
  font-weight: 700;
}
.cid-u18UG9eyhj .mbr-section-subtitle {
  color: #ffffff;
}
.cid-u18UG9eyhj .mbr-section-subtitle.mbr-bold {
  font-weight: 700;
}
.cid-u18UG9eyhj .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u18UG9eyhj .mbr-text {
  color: #ffffff;
}
.cid-u18UG9eyhj .text-wrap {
  transition: all 0.3s;
  padding: 23px;
  bottom: 0;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  overflow: hidden;
  position: relative;
}
.cid-u18UG9eyhj .text-wrap .icons-wrap .icon-wrapper {
  background: transparent;
  display: flex;
  width: 31px;
  height: 31px;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #61728a;
  transition: all 0.3s;
  z-index: 4;
  cursor: pointer;
  margin: 0 0.2rem;
}
.cid-u18UG9eyhj .text-wrap .icons-wrap .icon-wrapper:hover {
  background-color: #55acee;
  border-color: #55acee;
}
.cid-u18UG9eyhj .text-wrap .icons-wrap .icon-wrapper:hover .link-icon {
  color: #ffffff;
}
.cid-u18UG9eyhj .text-wrap .icons-wrap .icon-wrapper .link-icon {
  display: inline-block;
  color: #ffffff;
  transition: all 0.3s;
  font-size: 14px;
  justify-content: center;
}
.cid-u18UG9eyhj .text-wrap .icons-wrap::before {
  height: 2px;
  width: 30%;
  top: 50%;
  right: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #61728a;
}
@media (max-width: 992px) {
  .cid-u18UG9eyhj .text-wrap .icons-wrap::before {
    display: none;
  }
}
.cid-u18UG9eyhj .text-wrap .icons-wrap::after {
  height: 2px;
  width: 30%;
  top: 50%;
  left: 58%;
  position: absolute;
  display: inline-block;
  content: "";
  background-color: #61728a;
}
@media (max-width: 992px) {
  .cid-u18UG9eyhj .text-wrap .icons-wrap::after {
    display: none;
  }
}
.cid-u18UG9eyhj .buttons-wrap {
  text-align: center;
}
.cid-u18UG9eyhj .buttons-wrap .mbr-section-btn {
  display: inline-block;
}
.cid-u18UG9eyhj .buttons-wrap .mbr-section-btn .btn {
  padding-left: 39px;
  padding-right: 39px;
}
.cid-u18UG9eyhj .buttons-wrap .mbr-section-btn .btn-success-outline {
  color: #ffffff;
}
.cid-u18UG9eyhj .buttons-wrap .mbr-section-btn .btn-success-outline:hover {
  color: #000000;
}
.cid-u18UG9eyhj .buttons-wrap .or {
  text-align: center;
  display: inline;
  margin-left: 25px;
  margin-right: 25px;
}
.cid-u18UG9eyhj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u18UG9eyhj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1rHqgEbSA {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #000000;
}
.cid-u1rHqgEbSA .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1rHqgEbSA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1rHqgEbSA .container-fluid {
  padding: 0 40px;
}
@media (max-width: 992px) {
  .cid-u1rHqgEbSA .container-fluid {
    padding: 0 20px;
  }
}
.cid-u1rHqgEbSA .container-fluid .row {
  margin: 0;
}
@media (max-width: 992px) {
  .cid-u1rHqgEbSA .container {
    padding: 0 20px;
  }
}
.cid-u1rHqgEbSA .container .row {
  margin: 0;
}
.cid-u1rHqgEbSA .row {
  justify-content: center;
}
.cid-u1rHqgEbSA .item {
  padding: 0;
}
.cid-u1rHqgEbSA .item .item-wrapper a {
  display: block;
}
.cid-u1rHqgEbSA .item .item-wrapper a:hover .item-img img {
  transform: scale(1.05);
}
.cid-u1rHqgEbSA .item .item-wrapper a .item-img {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding: 70px 50px;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-u1rHqgEbSA .item .item-wrapper a .item-img {
    padding: 24px;
  }
}
.cid-u1rHqgEbSA .item .item-wrapper a .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-u1rHqgEbSA .item .item-wrapper a .item-img .item-content {
  position: relative;
  z-index: 1;
}
.cid-u1rHqgEbSA .item .item-wrapper a .item-img .item-content .item-title {
  margin-bottom: 0;
}
.cid-u1rHqgEbSA .item .item-wrapper a .item-img .item-content .mbr-desc {
  margin-bottom: 10px;
}
.cid-u1rHqgEbSA .item-title {
  color: #ffffff;
}
.cid-u1rHqgEbSA .mbr-desc {
  color: #ffffff;
}
.cid-rZqcV6Qo1h {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #000000;
}
.cid-rZqcV6Qo1h .img-wrap {
  position: relative;
}
.cid-rZqcV6Qo1h .img-wrap img {
  width: 100%;
}
.cid-rZqcV6Qo1h .img-wrap .icon-label {
  padding: 19px;
  left: auto;
  top: 0;
  right: 0;
  bottom: auto;
  background-color: #1352ff;
  z-index: 100;
  position: absolute;
}
.cid-rZqcV6Qo1h .img-wrap .icon-label .mbr-iconfont {
  color: #ffffff;
  font-size: 27px;
  line-height: 1;
}
@media (max-width: 768px) {
  .cid-rZqcV6Qo1h .img-wrap .icon-label {
    left: 0;
    top: auto;
    right: auto;
    bottom: 0;
  }
}
.cid-rZqcV6Qo1h .mbr-section-title {
  color: #ffffff;
}
.cid-rZqcV6Qo1h .mbr-section-subtitle {
  color: #ffffff;
}
.cid-rZqcV6Qo1h .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-rZqcV6Qo1h .mbr-section-text {
  color: #ffffff;
}
.cid-rZqcV6Qo1h .form-control {
  box-shadow: none;
  padding: 0.7em 1.07em 0em 0.8em;
  background-color: #e9e9e9;
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  color: #b8b8b8;
  line-height: 1.43;
  min-height: 3.5em;
  border-radius: .25rem;
}
.cid-rZqcV6Qo1h .form-control:focus,
.cid-rZqcV6Qo1h .form-control:hover {
  border: 0px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  background-color: #333333;
}
.cid-rZqcV6Qo1h .form-control.textarea {
  padding-top: 40px;
}
.cid-rZqcV6Qo1h .form-group {
  margin-bottom: 1.5rem;
}
.cid-rZqcV6Qo1h input::-webkit-input-placeholder,
.cid-rZqcV6Qo1h textarea::-webkit-input-placeholder {
  color: #b8b8b8;
}
.cid-rZqcV6Qo1h input:-moz-placeholder,
.cid-rZqcV6Qo1h textarea:-moz-placeholder {
  color: #b8b8b8;
}
.cid-rZqcV6Qo1h .jq-selectbox li,
.cid-rZqcV6Qo1h .jq-selectbox li {
  background-color: #e9e9e9;
  color: #000000;
}
.cid-rZqcV6Qo1h .jq-selectbox li:hover,
.cid-rZqcV6Qo1h .jq-selectbox li.selected {
  background-color: #333333;
  color: #ffffff;
}
.cid-rZqcV6Qo1h .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #e9e9e9;
}
.cid-rZqcV6Qo1h .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #333333;
}
.cid-rZqcV6Qo1h .text-blocks .mbr-text {
  color: #ffffff;
}
.cid-rZqcV6Qo1h a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-rZqcV6Qo1h .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-rZqcV6Qo1h .input-group-btn {
  display: block;
  text-align: left;
}
.cid-rZqcV6Qo1h .input-group-btn .btn-sm {
  padding: 7px 39px;
}
.cid-rZqcV6Qo1h textarea.form-control {
  resize: none;
}
@media (max-width: 767px) {
  .cid-rZqcV6Qo1h h2 {
    padding-top: 2rem;
  }
  .cid-rZqcV6Qo1h .input-group-btn {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .cid-rZqcV6Qo1h .container > .row > .col-md-6:first-child {
    padding-right: 30px;
  }
  .cid-rZqcV6Qo1h .container > .row > .col-md-6:last-child {
    padding-left: 30px;
  }
}
.cid-u0dAnhA2XD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #55acee;
}
.cid-u0dAnhA2XD p {
  text-align: center;
}
.cid-u0dAnhA2XD .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-u0dAnhA2XD .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-u0dAnhA2XD a {
  font-weight: normal;
}
.cid-u0dAnhA2XD .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-u0dAnhA2XD .copyright .list-inline {
  margin-bottom: 0;
}
.cid-u0dAnhA2XD .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-u0dAnhA2XD .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-u0dAnhA2XD li a {
  position: relative;
}
.cid-u0dAnhA2XD li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-u0dAnhA2XD li a:hover:before {
  width: 100%;
}
.cid-u0dAnhA2XD .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #151515;
  text-align: right;
}
.cid-u0dAnhA2XD .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-u0dAnhA2XD .d-flex {
    flex-direction: column;
  }
  .cid-u0dAnhA2XD .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-u0dAnhA2XD .icon-transition span {
  display: block;
}
.cid-u0dAnhA2XD .list-inline-item a {
  display: block;
}
.cid-u0dAnhA2XD .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0dAnhA2XD .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-u0dAnhA2XD .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-u0dAnhA2XD .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-u0dAnhA2XD .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u0dAnhA2XD .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-u0dAnhA2XD .logo-footer {
    text-align: center;
  }
  .cid-u0dAnhA2XD .social-media {
    justify-content: center;
  }
}
.cid-rZqcaGjRSg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZqcaGjRSg .nav-item,
.cid-rZqcaGjRSg .nav-link,
.cid-rZqcaGjRSg .navbar-caption {
  font-weight: normal;
}
.cid-rZqcaGjRSg .nav-item:focus,
.cid-rZqcaGjRSg .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rZqcaGjRSg .dropdown-item:hover:before {
    transform: scale(1, 1);
  }
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rZqcaGjRSg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-rZqcaGjRSg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rZqcaGjRSg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rZqcaGjRSg .collapsed .icons-menu {
  padding-left: 16px;
}
.cid-rZqcaGjRSg .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #000000;
}
.cid-rZqcaGjRSg .navbar.opened {
  transition: all .3s;
  background: #000000 !important;
}
.cid-rZqcaGjRSg .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rZqcaGjRSg .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-rZqcaGjRSg .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rZqcaGjRSg .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rZqcaGjRSg .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rZqcaGjRSg .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rZqcaGjRSg .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  justify-content: center;
}
.cid-rZqcaGjRSg .navbar.collapsed .icons-menu {
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rZqcaGjRSg .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rZqcaGjRSg .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rZqcaGjRSg .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rZqcaGjRSg .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rZqcaGjRSg .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    justify-content: center;
  }
  .cid-rZqcaGjRSg .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rZqcaGjRSg .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-rZqcaGjRSg .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rZqcaGjRSg .navbar.navbar-short {
  background: #000000 !important;
  min-height: 60px;
}
.cid-rZqcaGjRSg .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rZqcaGjRSg .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rZqcaGjRSg .navbar-brand {
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rZqcaGjRSg .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rZqcaGjRSg .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rZqcaGjRSg .dropdown-item.active,
.cid-rZqcaGjRSg .dropdown-item:active {
  background-color: transparent;
}
.cid-rZqcaGjRSg .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rZqcaGjRSg .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rZqcaGjRSg .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-rZqcaGjRSg .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rZqcaGjRSg .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rZqcaGjRSg ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-rZqcaGjRSg .navbar-buttons {
  text-align: center;
}
.cid-rZqcaGjRSg .navbar-buttons .btn.btn-sm {
  padding: 6px 24px !important;
  min-width: 140px;
  line-height: 1.5;
}
.cid-rZqcaGjRSg button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  align-self: center;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rZqcaGjRSg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rZqcaGjRSg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rZqcaGjRSg .navbar-dropdown {
  padding: .5rem 1rem;
}
.cid-rZqcaGjRSg a.nav-link {
  justify-content: center;
  display: flex;
  align-items: center;
}
.cid-rZqcaGjRSg .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rZqcaGjRSg .soc-item {
  margin: .5rem .3rem;
}
.cid-rZqcaGjRSg .icons-menu {
  flex-wrap: wrap;
  display: flex;
  justify-content: center;
  padding-right: 1rem;
  text-align: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rZqcaGjRSg .navbar {
    height: 77px;
  }
  .cid-rZqcaGjRSg .navbar.opened {
    height: auto;
  }
  .cid-rZqcaGjRSg .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-u0dhy3hriq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u0dhy3hriq .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-u0dhy3hriq .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u0dhy3hriq .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u0dhy3hriq .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0dhy3hriq .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u0dhy3hriq .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0dhy3hriq .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u0dhy3hriq .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u0dhy3hriq .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0dhy3hriq .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u0dhy3hriq .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #666666;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u0dhy3hriq .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u0dhy3hriq .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u0dhy3hriq .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u0dhy3hriq .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u0dhy3hriq .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u0dhy3hriq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dhy3hriq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dhy3hriq .card .wrapper .mbr-section-title {
  color: #999999;
}
.cid-u0dhy3hriq .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u0dhy3hriq .card .wrapper .mbr-list,
.cid-u0dhy3hriq .social-media,
.cid-u0dhy3hriq .mbr-section-btn {
  color: #ffffff;
}
.cid-u0dhyJw4WG {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u0dhyJw4WG .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/mbr-2-1920x1280.jpg");
}
.cid-u0dhyJw4WG .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #fff000;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u0dhyJw4WG .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u0dhyJw4WG .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u0dhyJw4WG .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u0dhyJw4WG .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u0dhyJw4WG .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u0dhyJw4WG .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dhyJw4WG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-section-title {
  color: #fff000;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-list,
.cid-u0dhyJw4WG .social-media,
.cid-u0dhyJw4WG .mbr-section-btn {
  color: #ffffff;
}
.cid-u0dhyJw4WG .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u0dhzfvmeq {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u0dhzfvmeq .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/mbr-4-1920x1280.jpg");
}
.cid-u0dhzfvmeq .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #666666;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u0dhzfvmeq .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u0dhzfvmeq .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u0dhzfvmeq .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u0dhzfvmeq .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u0dhzfvmeq .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u0dhzfvmeq .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dhzfvmeq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-section-title {
  color: #999999;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u0dhzfvmeq .card .wrapper .mbr-list,
.cid-u0dhzfvmeq .social-media,
.cid-u0dhzfvmeq .mbr-section-btn {
  color: #ffffff;
}
.cid-u0drWMayC6 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u0drWMayC6 .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/mbr-1920x1440.jpg");
}
.cid-u0drWMayC6 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u0drWMayC6 .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u0drWMayC6 .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0drWMayC6 .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u0drWMayC6 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0drWMayC6 .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u0drWMayC6 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u0drWMayC6 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0drWMayC6 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u0drWMayC6 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u0drWMayC6 .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u0drWMayC6 .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u0drWMayC6 .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u0drWMayC6 .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u0drWMayC6 .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u0drWMayC6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0drWMayC6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0drWMayC6 .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u0drWMayC6 .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u0drWMayC6 .card .wrapper .mbr-list,
.cid-u0drWMayC6 .social-media,
.cid-u0drWMayC6 .mbr-section-btn {
  color: #ffffff;
}
.cid-u0dsz5W4dj {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u0dsz5W4dj .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/close-up-car-care-process-1-1000x667.jpeg");
}
.cid-u0dsz5W4dj .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u0dsz5W4dj .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u0dsz5W4dj .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u0dsz5W4dj .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u0dsz5W4dj .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u0dsz5W4dj .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u0dsz5W4dj .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dsz5W4dj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u0dsz5W4dj .card .wrapper .mbr-list,
.cid-u0dsz5W4dj .social-media,
.cid-u0dsz5W4dj .mbr-section-btn {
  color: #ffffff;
}
.cid-u0drYe0AeB {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u0drYe0AeB .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/beautiful-car-interior-clean-up-service-1-667x1000.jpg");
}
.cid-u0drYe0AeB .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u0drYe0AeB .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u0drYe0AeB .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0drYe0AeB .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u0drYe0AeB .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0drYe0AeB .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u0drYe0AeB .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u0drYe0AeB .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0drYe0AeB .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u0drYe0AeB .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u0drYe0AeB .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u0drYe0AeB .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u0drYe0AeB .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u0drYe0AeB .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u0drYe0AeB .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u0drYe0AeB .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0drYe0AeB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0drYe0AeB .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u0drYe0AeB .card .wrapper .mbr-list,
.cid-u0drYe0AeB .social-media,
.cid-u0drYe0AeB .mbr-section-btn {
  color: #ffffff;
}
.cid-u0drYe0AeB .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u0dmbhhl0V {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u0dmbhhl0V .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/micro-fiber-724x483.jpeg");
}
.cid-u0dmbhhl0V .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u0dmbhhl0V .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u0dmbhhl0V .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u0dmbhhl0V .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u0dmbhhl0V .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u0dmbhhl0V .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u0dmbhhl0V .mbr-fallback-image.disabled {
  display: none;
}
.cid-u0dmbhhl0V .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u0dmbhhl0V .card .wrapper .mbr-list,
.cid-u0dmbhhl0V .social-media,
.cid-u0dmbhhl0V .mbr-section-btn {
  color: #ffffff;
}
.cid-u18LAJq8Bz {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u18LAJq8Bz .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/img-20240112-wa0026-1080x1080.jpeg");
}
.cid-u18LAJq8Bz .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u18LAJq8Bz .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u18LAJq8Bz .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u18LAJq8Bz .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u18LAJq8Bz .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u18LAJq8Bz .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u18LAJq8Bz .mbr-fallback-image.disabled {
  display: none;
}
.cid-u18LAJq8Bz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u18LAJq8Bz .card .wrapper .mbr-list,
.cid-u18LAJq8Bz .social-media,
.cid-u18LAJq8Bz .mbr-section-btn {
  color: #ffffff;
}
.cid-u19qUYZt3o {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u19qUYZt3o .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/img-20240112-wa0027-1440x1440.jpeg");
}
.cid-u19qUYZt3o .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u19qUYZt3o .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u19qUYZt3o .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u19qUYZt3o .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u19qUYZt3o .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u19qUYZt3o .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u19qUYZt3o .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u19qUYZt3o .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u19qUYZt3o .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u19qUYZt3o .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u19qUYZt3o .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u19qUYZt3o .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u19qUYZt3o .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u19qUYZt3o .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u19qUYZt3o .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u19qUYZt3o .mbr-fallback-image.disabled {
  display: none;
}
.cid-u19qUYZt3o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u19qUYZt3o .card .wrapper .mbr-list,
.cid-u19qUYZt3o .social-media,
.cid-u19qUYZt3o .mbr-section-btn {
  color: #ffffff;
}
.cid-u19qUYZt3o .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u19qUYZt3o .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u19qVRveto {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u19qVRveto .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/img-20240112-wa0039-1-1440x1440.jpeg");
}
.cid-u19qVRveto .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u19qVRveto .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u19qVRveto .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u19qVRveto .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u19qVRveto .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u19qVRveto .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u19qVRveto .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u19qVRveto .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u19qVRveto .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u19qVRveto .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u19qVRveto .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u19qVRveto .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u19qVRveto .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u19qVRveto .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u19qVRveto .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u19qVRveto .mbr-fallback-image.disabled {
  display: none;
}
.cid-u19qVRveto .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u19qVRveto .card .wrapper .mbr-list,
.cid-u19qVRveto .social-media,
.cid-u19qVRveto .mbr-section-btn {
  color: #ffffff;
}
.cid-u19qVRveto .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u19qVRveto .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u1rHEPAEQ3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #000000;
}
.cid-u1rHEPAEQ3 .img-wrap {
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  background-position: 50% 50%;
  z-index: 2;
  background-image: url("../../../assets/images/img-20240112-wa0003-1080x810.jpg");
}
.cid-u1rHEPAEQ3 .card {
  border-radius: 0;
  margin: auto 0;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-section-title {
  color: #06182d;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-section-title span {
  line-height: 1;
  color: #ffffff;
  padding: 0 6px 1px 5px;
  transform: skew(-14deg);
  background: #ff5e3a;
  background: linear-gradient(#ff5e3a 0%, #ff653c 69%, #ff4e3c 100%);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0;
  position: relative;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-section-subtitle {
  color: #06182d;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-section-subtitle.display-7 {
  letter-spacing: 0;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-text {
  color: #61728a;
  font-weight: 300;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-list {
  margin-top: 20px;
  color: #606060;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-list .list {
  list-style-type: none;
  padding-left: 0;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-list .list li {
  line-height: 1.75;
  padding-top: 5px;
  padding-bottom: 5px;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-list .list li:before {
  font-weight: 900;
  color: #55acee;
  display: inline-block;
  content: "\e97c";
  font-family: "Moririse2" !important;
  text-align: center;
  line-height: 1.5em;
  transition: all 0.3s;
  width: 25px;
  height: 25px;
  margin-right: 15px;
}
.cid-u1rHEPAEQ3 .card .wrapper .link-wrap {
  width: 100%;
}
.cid-u1rHEPAEQ3 .card .wrapper .link-wrap .link {
  position: relative;
  cursor: pointer;
  letter-spacing: 1px;
  display: inline-block;
  width: fit-content;
  transition: all 0.3s;
  transition-delay: 0.15s;
  text-align: left;
}
.cid-u1rHEPAEQ3 .card .wrapper .link-wrap .link:after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: currentColor;
  bottom: -6px;
  opacity: 0.2;
  left: 0;
}
.cid-u1rHEPAEQ3 .card .wrapper .link-wrap .link:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 0;
  transition: all 0.4s ease-in-out;
  background: currentColor;
  bottom: -6px;
  left: auto;
  right: 0;
}
.cid-u1rHEPAEQ3 .card .wrapper .link-wrap .link:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
.cid-u1rHEPAEQ3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-u1rHEPAEQ3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-text {
  color: #ffffff;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-section-title {
  color: #ffffff;
}
.cid-u1rHEPAEQ3 .card .wrapper .mbr-list,
.cid-u1rHEPAEQ3 .social-media,
.cid-u1rHEPAEQ3 .mbr-section-btn {
  color: #ffffff;
}
.cid-u0dAnhA2XD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #55acee;
}
.cid-u0dAnhA2XD p {
  text-align: center;
}
.cid-u0dAnhA2XD .text-copyright {
  width: 100%;
  margin-bottom: 0;
}
.cid-u0dAnhA2XD .img-logo-footer {
  margin-right: 1rem;
  max-width: 3rem;
}
.cid-u0dAnhA2XD a {
  font-weight: normal;
}
.cid-u0dAnhA2XD .copyright li {
  list-style: disc;
  margin: 0 1rem;
}
.cid-u0dAnhA2XD .copyright .list-inline {
  margin-bottom: 0;
}
.cid-u0dAnhA2XD .copyright .list-inline .list-inline-item {
  margin: 10px 15px;
}
@media (max-width: 767px) {
  .cid-u0dAnhA2XD .copyright .list-inline .list-inline-item {
    margin: 10px 6px;
  }
}
.cid-u0dAnhA2XD li a {
  position: relative;
}
.cid-u0dAnhA2XD li a:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: all 0.3s;
}
.cid-u0dAnhA2XD li a:hover:before {
  width: 100%;
}
.cid-u0dAnhA2XD .text-logo-footer {
  display: inline-block;
  vertical-align: middle;
  color: #151515;
  text-align: right;
}
.cid-u0dAnhA2XD .logo-footer {
  line-height: normal;
}
@media (max-width: 767px) {
  .cid-u0dAnhA2XD .d-flex {
    flex-direction: column;
  }
  .cid-u0dAnhA2XD .d-flex li {
    width: fit-content;
    margin: auto;
  }
}
.cid-u0dAnhA2XD .icon-transition span {
  display: block;
}
.cid-u0dAnhA2XD .list-inline-item a {
  display: block;
}
.cid-u0dAnhA2XD .social-btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-u0dAnhA2XD .media-container-row {
  align-items: center;
  justify-content: space-between;
}
.cid-u0dAnhA2XD .icon-transition span {
  color: #ffffff;
  display: block;
  text-align: center;
  height: 2rem;
  border-radius: 50%;
  line-height: 2rem;
  width: 2rem;
  transition: all 0.3s ease-out 0s;
  font-size: 1.5rem;
}
.cid-u0dAnhA2XD .social-media {
  display: flex;
  justify-content: flex-start;
}
.cid-u0dAnhA2XD .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-u0dAnhA2XD .social-media ul li {
  padding: 4px;
  display: inline-block;
}
@media (max-width: 991px) {
  .cid-u0dAnhA2XD .logo-footer {
    text-align: center;
  }
  .cid-u0dAnhA2XD .social-media {
    justify-content: center;
  }
}
