body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.5rem;
}
.display-5 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.875rem;
}
/* ---- 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: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #bd032a !important;
}
.bg-success {
  background-color: #009cb1 !important;
}
.bg-info {
  background-color: #e08a04 !important;
}
.bg-warning {
  background-color: #e8bc00 !important;
}
.bg-danger {
  background-color: #169a8c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #bd032a !important;
  border-color: #bd032a !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #680217 !important;
  border-color: #680217 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #680217 !important;
  border-color: #680217 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3d699c !important;
  border-color: #3d699c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #253f5e !important;
  border-color: #253f5e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #253f5e !important;
  border-color: #253f5e !important;
}
.btn-info,
.btn-info:active {
  background-color: #e08a04 !important;
  border-color: #e08a04 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #8b5602 !important;
  border-color: #8b5602 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8b5602 !important;
  border-color: #8b5602 !important;
}
.btn-success,
.btn-success:active {
  background-color: #009cb1 !important;
  border-color: #009cb1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #00505a !important;
  border-color: #00505a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #00505a !important;
  border-color: #00505a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e8bc00 !important;
  border-color: #e8bc00 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #917600 !important;
  border-color: #917600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #917600 !important;
  border-color: #917600 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #169a8c !important;
  border-color: #169a8c !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #0b4e47 !important;
  border-color: #0b4e47 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0b4e47 !important;
  border-color: #0b4e47 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #bd032a;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #680217 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #bd032a !important;
  border-color: #bd032a !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #3d699c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #253f5e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3d699c !important;
  border-color: #3d699c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e08a04;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #8b5602 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #e08a04 !important;
  border-color: #e08a04 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #009cb1;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #00505a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #009cb1 !important;
  border-color: #009cb1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #e8bc00;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #917600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e8bc00 !important;
  border-color: #e8bc00 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #169a8c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #0b4e47 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #169a8c !important;
  border-color: #169a8c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #bd032a !important;
}
.text-secondary {
  color: #3d699c !important;
}
.text-success {
  color: #009cb1 !important;
}
.text-info {
  color: #e08a04 !important;
}
.text-warning {
  color: #e8bc00 !important;
}
.text-danger {
  color: #169a8c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #590114 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #203853 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #00424b !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #7c4c02 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #826900 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #09413b !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #bd032a;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #e08a04;
}
.alert-warning {
  background-color: #e8bc00;
}
.alert-danger {
  background-color: #169a8c;
}
.mbr-gallery-filter li.active .btn {
  background-color: #bd032a;
  border-color: #bd032a;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #bd032a;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #fc436a;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #31e7ff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fee0b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff1b5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4ae5d5;
}
/* Scroll to top button*/
.form-control {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.5rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #bd032a !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.5rem;
}
blockquote {
  border-color: #bd032a;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #bd032a;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #bd032a;
}
.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: #bd032a;
  border-bottom-color: #bd032a;
}
.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: #bd032a !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: #3d699c !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='%23bd032a' %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-uSKt1fdPaO {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f7f7f7;
}
.cid-uSKt1fdPaO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSKt1fdPaO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSKt1fdPaO .container {
    padding: 0 20px;
  }
}
.cid-uSKt1fdPaO .title-wrapper {
  position: relative;
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-uSKt1fdPaO .title-wrapper {
    padding: 0;
  }
}
.cid-uSKt1fdPaO .title-wrapper .logo-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSKt1fdPaO .title-wrapper .logo-wrap {
    margin-bottom: 16px;
  }
}
.cid-uSKt1fdPaO .title-wrapper .logo-wrap img {
  display: inline-flex;
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .cid-uSKt1fdPaO .title-wrapper .logo-wrap img {
    width: 70px;
    height: 70px;
  }
}
.cid-uSKt1fdPaO .title-wrapper .title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSKt1fdPaO .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-uSKt1fdPaO .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uSKt1fdPaO .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSKt1fdPaO .title-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.cid-uSKt1fdPaO .title-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uSKt1fdPaO .title-wrapper .image-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSKt1fdPaO .title-wrapper .image-wrap {
    display: none;
  }
}
.cid-uSKt1fdPaO .title-wrapper .image_1 {
  top: 0;
  left: -2rem;
}
.cid-uSKt1fdPaO .title-wrapper .image_2 {
  top: -9rem;
  left: 15rem;
  height: 120px;
}
.cid-uSKt1fdPaO .title-wrapper .image_3 {
  top: -3rem;
  right: -2rem;
}
.cid-uSKt1fdPaO .title-wrapper .image_4 {
  right: -2rem;
  bottom: 0;
}
.cid-uSKt1fdPaO .title-wrapper .image_5 {
  bottom: -8rem;
  right: 12rem;
  height: 120px;
}
.cid-uSKt1fdPaO .title-wrapper .image_6 {
  bottom: -8rem;
  left: 14rem;
  height: 120px;
}
.cid-uSKt1fdPaO .title-wrapper .image_7 {
  left: -3rem;
  bottom: 0;
}
.cid-uSKt1fdPaO .mbr-section-title {
  color: #ffffff;
}
.cid-uSKt1fdPaO .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSKt1fdPaO .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uSKt1fdPaO .mbr-section-title,
.cid-uSKt1fdPaO .mbr-section-btn,
.cid-uSKt1fdPaO .logo-wrap {
  text-align: center;
  color: #000000;
}
.cid-uSJl2ZJ5gG {
  display: flex;
  padding-top: 45px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/bukitlarut.webp");
}
.cid-uSJl2ZJ5gG .mbr-overlay {
  background-color: #000000;
  opacity: 0.6;
}
.cid-uSJl2ZJ5gG .content-wrap {
  padding: 5rem 1rem;
  max-width: 800px;
}
@media (min-width: 768px) {
  .cid-uSJl2ZJ5gG {
    align-items: center;
  }
  .cid-uSJl2ZJ5gG .row {
    justify-content: center;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-uSJl2ZJ5gG .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-uSJl2ZJ5gG {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-uSJl2ZJ5gG .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-uSJl2ZJ5gG .content-wrap {
    width: 100%;
  }
}
.cid-uSJl2ZJ5gG .mbr-section-title {
  text-align: center;
}
.cid-uSJl2ZJ5gG .mbr-text,
.cid-uSJl2ZJ5gG .mbr-section-btn {
  text-align: center;
}
.cid-uSJnRBvMNb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdfcfa;
}
.cid-uSJnRBvMNb .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJnRBvMNb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSJnRBvMNb .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSJnRBvMNb .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSJnRBvMNb .container {
    padding: 0;
  }
}
.cid-uSJnRBvMNb .row {
  justify-content: center;
  margin: 0;
}
.cid-uSJnRBvMNb .card {
  border-radius: 0;
  padding: 0;
}
.cid-uSJnRBvMNb .card .card-wrapper {
  background-color: #bd032a;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSJnRBvMNb .card .card-wrapper {
    padding: 30px 16px;
  }
}
.cid-uSJnRBvMNb .card .card-wrapper .card-wrap .icon-wrap {
  margin-bottom: 20px;
}
.cid-uSJnRBvMNb .card .card-wrapper .card-wrap .icon-wrap .mbr-iconfont {
  font-size: 40px;
  display: inline-flex;
  color: #ffffff;
}
.cid-uSJnRBvMNb .card .card-wrapper .card-wrap .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uSJnRBvMNb .card .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uSJnRBvMNb .card .card-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-uSJnRBvMNb .card:nth-child(2n) .card-wrapper {
  background-color: #8f001e;
}
.cid-uSJnRBvMNb .mbr-card-title {
  color: #ffffff;
}
.cid-uSJnRBvMNb .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uSJnRBvMNb .mbr-card-title,
.cid-uSJnRBvMNb .mbr-section-btn,
.cid-uSJnRBvMNb .icon-wrap {
  text-align: center;
}
.cid-uSJsvIQgCw {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #f7f7f7;
}
.cid-uSJsvIQgCw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJsvIQgCw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSJsvIQgCw .container-fluid {
  padding: 0 60px;
}
@media (max-width: 992px) {
  .cid-uSJsvIQgCw .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 992px) {
  .cid-uSJsvIQgCw .container {
    padding: 0 30px;
  }
}
.cid-uSJsvIQgCw .row {
  justify-content: center;
}
.cid-uSJsvIQgCw .item {
  margin-bottom: 50px;
}
.cid-uSJsvIQgCw .item a:hover .item-wrapper .item-img img,
.cid-uSJsvIQgCw .item a:focus .item-wrapper .item-img img {
  transform: scale(1.05);
}
.cid-uSJsvIQgCw .item a .item-wrapper .item-img {
  overflow: hidden;
  margin-bottom: 20px;
}
.cid-uSJsvIQgCw .item a .item-wrapper .item-img img {
  height: 370px;
  object-fit: cover;
  transition: all 0.3s ease-in-out;
}
.cid-uSJsvIQgCw .item a .item-wrapper .item-content .mbr-card-title {
  margin-bottom: 0;
}
.cid-uSJsvIQgCw .item a .item-wrapper .item-content .mbr-desc {
  margin-bottom: 0;
}
.cid-uSJsvIQgCw .mbr-card-title {
  color: #bd032a;
}
.cid-uSJsvIQgCw .mbr-desc {
  color: #212529;
}
.cid-uSJtmJqlG2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdfcfa;
}
.cid-uSJtmJqlG2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJtmJqlG2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSJtmJqlG2 .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-uSJtmJqlG2 .container-fluid {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .cid-uSJtmJqlG2 .container {
    padding: 0;
  }
}
.cid-uSJtmJqlG2 .row {
  justify-content: center;
  margin: 0;
}
.cid-uSJtmJqlG2 .card {
  border-radius: 0;
  padding: 0;
}
.cid-uSJtmJqlG2 .card .card-wrapper {
  background-color: #bd032a;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 992px) {
  .cid-uSJtmJqlG2 .card .card-wrapper {
    padding: 30px 16px;
  }
}
.cid-uSJtmJqlG2 .card .card-wrapper .card-wrap .icon-wrap {
  margin-bottom: 20px;
}
.cid-uSJtmJqlG2 .card .card-wrapper .card-wrap .icon-wrap .mbr-iconfont {
  font-size: 40px;
  display: inline-flex;
  color: #ffffff;
}
.cid-uSJtmJqlG2 .card .card-wrapper .card-wrap .mbr-card-title {
  margin-bottom: 16px;
}
.cid-uSJtmJqlG2 .card .card-wrapper .card-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-uSJtmJqlG2 .card .card-wrapper .mbr-section-btn {
  margin-top: 30px;
}
.cid-uSJtmJqlG2 .card:nth-child(2n) .card-wrapper {
  background-color: #8f001e;
}
.cid-uSJtmJqlG2 .mbr-card-title {
  color: #ffffff;
}
.cid-uSJtmJqlG2 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uSJtmJqlG2 .mbr-card-title,
.cid-uSJtmJqlG2 .mbr-section-btn,
.cid-uSJtmJqlG2 .icon-wrap {
  text-align: center;
}
.cid-uSJvohmhLr {
  padding-top: 5rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/img-20200222-183647-min-2000x1500.webp");
}
.cid-uSJvohmhLr [class^='socicon-']:before,
.cid-uSJvohmhLr [class*=' socicon-']:before {
  line-height: 55px;
}
.cid-uSJvohmhLr .btn-social {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  border-width: 3px;
  border-style: solid;
  width: 55px;
  height: 55px;
  line-height: 55px;
  padding: 0;
  position: relative;
  cursor: pointer;
  color: #ffffff;
  transition: all 0.3s;
  border-color: #ffffff;
}
.cid-uSJvohmhLr .btn-social:hover {
  background: #ffffff;
}
.cid-uSJvohmhLr .btn-social:hover i.socicon {
  color: #000000 !important;
}
.cid-uSJvohmhLr .btn-social:hover span {
  color: #000000 !important;
}
.cid-uSJvohmhLr .mbr-section-title {
  color: #2e6b75;
}
.cid-uSJvohmhLr .mbr-social-likes {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: wrap;
}
.cid-uSJvohmhLr .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSJvohmhLr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uSJvohmhLr .mbr-section-title,
.cid-uSJvohmhLr .mbr-social-likes {
  color: #ffffff;
}
.cid-uSKeSZr8jM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7f7f7;
  overflow: hidden;
}
.cid-uSKeSZr8jM .mbr-text {
  color: #131313;
}
.cid-uSVNSwJB54 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f7f7f7;
}
.cid-uSVNSwJB54 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSVNSwJB54 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSVNSwJB54 .container {
    padding: 0 20px;
  }
}
.cid-uSVNSwJB54 .title-wrapper {
  position: relative;
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-uSVNSwJB54 .title-wrapper {
    padding: 0;
  }
}
.cid-uSVNSwJB54 .title-wrapper .logo-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSVNSwJB54 .title-wrapper .logo-wrap {
    margin-bottom: 16px;
  }
}
.cid-uSVNSwJB54 .title-wrapper .logo-wrap img {
  display: inline-flex;
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .cid-uSVNSwJB54 .title-wrapper .logo-wrap img {
    width: 70px;
    height: 70px;
  }
}
.cid-uSVNSwJB54 .title-wrapper .title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSVNSwJB54 .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-uSVNSwJB54 .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uSVNSwJB54 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSVNSwJB54 .title-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.cid-uSVNSwJB54 .title-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uSVNSwJB54 .title-wrapper .image-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSVNSwJB54 .title-wrapper .image-wrap {
    display: none;
  }
}
.cid-uSVNSwJB54 .title-wrapper .image_1 {
  top: 0;
  left: -2rem;
}
.cid-uSVNSwJB54 .title-wrapper .image_2 {
  top: -9rem;
  left: 15rem;
  height: 120px;
}
.cid-uSVNSwJB54 .title-wrapper .image_3 {
  top: -3rem;
  right: -2rem;
}
.cid-uSVNSwJB54 .title-wrapper .image_4 {
  right: -2rem;
  bottom: 0;
}
.cid-uSVNSwJB54 .title-wrapper .image_5 {
  bottom: -8rem;
  right: 12rem;
  height: 120px;
}
.cid-uSVNSwJB54 .title-wrapper .image_6 {
  bottom: -8rem;
  left: 14rem;
  height: 120px;
}
.cid-uSVNSwJB54 .title-wrapper .image_7 {
  left: -3rem;
  bottom: 0;
}
.cid-uSVNSwJB54 .mbr-section-title {
  color: #ffffff;
}
.cid-uSVNSwJB54 .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSVNSwJB54 .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uSVNSwJB54 .mbr-section-title,
.cid-uSVNSwJB54 .mbr-section-btn,
.cid-uSVNSwJB54 .logo-wrap {
  text-align: center;
  color: #000000;
}
.cid-uSJSbrZnfE {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffcf65;
}
.cid-uSJSbrZnfE .mbr-text {
  color: #000000;
}
.cid-uSJSbrZnfE .mbr-section-subtitle {
  color: #000000;
}
.cid-uSJSbrZnfE .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSKioOYmW7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7f7f7;
  overflow: hidden;
}
.cid-uSKioOYmW7 .mbr-text {
  color: #131313;
}
.cid-uSVNZwjH9j {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f7f7f7;
}
.cid-uSVNZwjH9j .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSVNZwjH9j .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSVNZwjH9j .container {
    padding: 0 20px;
  }
}
.cid-uSVNZwjH9j .title-wrapper {
  position: relative;
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-uSVNZwjH9j .title-wrapper {
    padding: 0;
  }
}
.cid-uSVNZwjH9j .title-wrapper .logo-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSVNZwjH9j .title-wrapper .logo-wrap {
    margin-bottom: 16px;
  }
}
.cid-uSVNZwjH9j .title-wrapper .logo-wrap img {
  display: inline-flex;
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .cid-uSVNZwjH9j .title-wrapper .logo-wrap img {
    width: 70px;
    height: 70px;
  }
}
.cid-uSVNZwjH9j .title-wrapper .title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSVNZwjH9j .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-uSVNZwjH9j .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uSVNZwjH9j .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSVNZwjH9j .title-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.cid-uSVNZwjH9j .title-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uSVNZwjH9j .title-wrapper .image-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSVNZwjH9j .title-wrapper .image-wrap {
    display: none;
  }
}
.cid-uSVNZwjH9j .title-wrapper .image_1 {
  top: 0;
  left: -2rem;
}
.cid-uSVNZwjH9j .title-wrapper .image_2 {
  top: -9rem;
  left: 15rem;
  height: 120px;
}
.cid-uSVNZwjH9j .title-wrapper .image_3 {
  top: -3rem;
  right: -2rem;
}
.cid-uSVNZwjH9j .title-wrapper .image_4 {
  right: -2rem;
  bottom: 0;
}
.cid-uSVNZwjH9j .title-wrapper .image_5 {
  bottom: -8rem;
  right: 12rem;
  height: 120px;
}
.cid-uSVNZwjH9j .title-wrapper .image_6 {
  bottom: -8rem;
  left: 14rem;
  height: 120px;
}
.cid-uSVNZwjH9j .title-wrapper .image_7 {
  left: -3rem;
  bottom: 0;
}
.cid-uSVNZwjH9j .mbr-section-title {
  color: #ffffff;
}
.cid-uSVNZwjH9j .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSVNZwjH9j .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uSVNZwjH9j .mbr-section-title,
.cid-uSVNZwjH9j .mbr-section-btn,
.cid-uSVNZwjH9j .logo-wrap {
  text-align: center;
  color: #000000;
}
.cid-uSJSEA6FJ1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffcf65;
}
.cid-uSJSEA6FJ1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uSJSEA6FJ1 .mbr-section-subtitle {
  color: #000000;
}
.cid-uSJSEA6FJ1 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSKisuKJQg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7f7f7;
  overflow: hidden;
}
.cid-uSKisuKJQg .mbr-text {
  color: #131313;
}
.cid-uSVO3flJoX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #f7f7f7;
}
.cid-uSVO3flJoX .mbr-fallback-image.disabled {
  display: none;
}
.cid-uSVO3flJoX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uSVO3flJoX .container {
    padding: 0 20px;
  }
}
.cid-uSVO3flJoX .title-wrapper {
  position: relative;
  padding: 0 20%;
}
@media (max-width: 992px) {
  .cid-uSVO3flJoX .title-wrapper {
    padding: 0;
  }
}
.cid-uSVO3flJoX .title-wrapper .logo-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSVO3flJoX .title-wrapper .logo-wrap {
    margin-bottom: 16px;
  }
}
.cid-uSVO3flJoX .title-wrapper .logo-wrap img {
  display: inline-flex;
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 100%;
}
@media (max-width: 768px) {
  .cid-uSVO3flJoX .title-wrapper .logo-wrap img {
    width: 70px;
    height: 70px;
  }
}
.cid-uSVO3flJoX .title-wrapper .title-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .cid-uSVO3flJoX .title-wrapper .title-wrap {
    margin-bottom: 30px;
  }
}
.cid-uSVO3flJoX .title-wrapper .title-wrap .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uSVO3flJoX .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 0;
}
.cid-uSVO3flJoX .title-wrapper .mbr-text {
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.cid-uSVO3flJoX .title-wrapper .mbr-section-btn {
  position: relative;
  z-index: 1;
}
.cid-uSVO3flJoX .title-wrapper .image-wrap {
  position: absolute;
  width: 200px;
  height: 200px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-uSVO3flJoX .title-wrapper .image-wrap {
    display: none;
  }
}
.cid-uSVO3flJoX .title-wrapper .image_1 {
  top: 0;
  left: -2rem;
}
.cid-uSVO3flJoX .title-wrapper .image_2 {
  top: -9rem;
  left: 15rem;
  height: 120px;
}
.cid-uSVO3flJoX .title-wrapper .image_3 {
  top: -3rem;
  right: -2rem;
}
.cid-uSVO3flJoX .title-wrapper .image_4 {
  right: -2rem;
  bottom: 0;
}
.cid-uSVO3flJoX .title-wrapper .image_5 {
  bottom: -8rem;
  right: 12rem;
  height: 120px;
}
.cid-uSVO3flJoX .title-wrapper .image_6 {
  bottom: -8rem;
  left: 14rem;
  height: 120px;
}
.cid-uSVO3flJoX .title-wrapper .image_7 {
  left: -3rem;
  bottom: 0;
}
.cid-uSVO3flJoX .mbr-section-title {
  color: #ffffff;
}
.cid-uSVO3flJoX .mbr-section-subtitle {
  color: #000000;
  text-align: center;
}
.cid-uSVO3flJoX .mbr-text {
  color: #ffffff;
  text-align: center;
}
.cid-uSVO3flJoX .mbr-section-title,
.cid-uSVO3flJoX .mbr-section-btn,
.cid-uSVO3flJoX .logo-wrap {
  text-align: center;
  color: #000000;
}
.cid-uSJT2YhOuM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffcf65;
}
.cid-uSJT2YhOuM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uSJT2YhOuM .mbr-section-subtitle {
  color: #000000;
}
.cid-uSJT2YhOuM .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uSKiwAdPfl {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7f7f7;
  overflow: hidden;
}
.cid-uSKiwAdPfl .mbr-text {
  color: #131313;
}
