body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #a61a3d !important;
}
.bg-success {
  background-color: #ff4f7b !important;
}
.bg-info {
  background-color: #188ef4 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #a61a3d !important;
  border-color: #a61a3d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #641025 !important;
  border-color: #641025 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #641025 !important;
  border-color: #641025 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #0e8f61 !important;
  border-color: #0e8f61 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #074932 !important;
  border-color: #074932 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #074932 !important;
  border-color: #074932 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #0966b7 !important;
  border-color: #0966b7 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #ff0242 !important;
  border-color: #ff0242 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #4e0c1d !important;
  color: #4e0c1d !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff !important;
  background-color: #a61a3d !important;
  border-color: #a61a3d !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #a61a3d !important;
  border-color: #a61a3d !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #053222 !important;
  color: #053222 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #0e8f61 !important;
  border-color: #0e8f61 !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0e8f61 !important;
  border-color: #0e8f61 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #08589e !important;
  color: #08589e !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #188ef4 !important;
  border-color: #188ef4 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #e8003a !important;
  color: #e8003a !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #ff4f7b !important;
  border-color: #ff4f7b !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.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,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #a61a3d !important;
}
.text-secondary {
  color: #0e8f61 !important;
}
.text-success {
  color: #ff4f7b !important;
}
.text-info {
  color: #188ef4 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #4e0c1d !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #053222 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #e8003a !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #08589e !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #ff4f7b;
}
.alert-info {
  background-color: #188ef4;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn {
  border-radius: 100px;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  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: #a61a3d;
  border-color: #a61a3d;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #a61a3d;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #e55a7d;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #dbedfd;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #b7b7b7;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #a61a3d;
}
/* 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;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #a61a3d;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #a61a3d;
}
.btn-social + .btn {
  margin-left: .1rem;
}
@media (min-width: 768px) {
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
  .rounded-left {
    border-top-left-radius: 100px !important;
    border-bottom-left-radius: 100px !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #a61a3d;
  color: #ffffff;
}
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #a61a3d;
  border-bottom-color: #a61a3d;
}
.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: #a61a3d !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: #0e8f61 !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%;
}
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='%23a61a3d' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rrB9iRzYxJ .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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rrB9iRzYxJ .nav-item,
.cid-rrB9iRzYxJ .nav-link,
.cid-rrB9iRzYxJ .navbar-caption {
  font-weight: normal;
}
.cid-rrB9iRzYxJ .nav-item:focus,
.cid-rrB9iRzYxJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rrB9iRzYxJ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rrB9iRzYxJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rrB9iRzYxJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rrB9iRzYxJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
  background: none;
}
.cid-rrB9iRzYxJ .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rrB9iRzYxJ .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rrB9iRzYxJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rrB9iRzYxJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rrB9iRzYxJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rrB9iRzYxJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rrB9iRzYxJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rrB9iRzYxJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rrB9iRzYxJ .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-rrB9iRzYxJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rrB9iRzYxJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rrB9iRzYxJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rrB9iRzYxJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rrB9iRzYxJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rrB9iRzYxJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rrB9iRzYxJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rrB9iRzYxJ .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-rrB9iRzYxJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rrB9iRzYxJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rrB9iRzYxJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rrB9iRzYxJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rrB9iRzYxJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rrB9iRzYxJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rrB9iRzYxJ .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rrB9iRzYxJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rrB9iRzYxJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rrB9iRzYxJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rrB9iRzYxJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rrB9iRzYxJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rrB9iRzYxJ .dropdown-item.active,
.cid-rrB9iRzYxJ .dropdown-item:active {
  background-color: transparent;
}
.cid-rrB9iRzYxJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rrB9iRzYxJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rrB9iRzYxJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rrB9iRzYxJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rrB9iRzYxJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rrB9iRzYxJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rrB9iRzYxJ .navbar-buttons {
  text-align: center;
}
.cid-rrB9iRzYxJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a61a3d;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rrB9iRzYxJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rrB9iRzYxJ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rrB9iRzYxJ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rrB9iRzYxJ .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rrB9iRzYxJ .soc-item {
  margin: .5rem .3rem;
}
.cid-rrB9iRzYxJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rrB9iRzYxJ .navbar {
    height: 77px;
  }
  .cid-rrB9iRzYxJ .navbar.opened {
    height: auto;
  }
  .cid-rrB9iRzYxJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tzhrNAl1et {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #efefef;
}
.cid-tzhrNAl1et .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzhrNAl1et .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tzhrNAl1et .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tzhrNAl1et .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzhrNAl1et .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzhrNAl1et .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tzhrNAl1et .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tzhrNAl1et .mbr-section-title {
  color: #73087a;
}
.cid-tzhrNAl1et .mbr-section-subtitle,
.cid-tzhrNAl1et .subtitle-wrap {
  color: #19303d;
}
.cid-tzhrNAl1et .mbr-text,
.cid-tzhrNAl1et .mbr-section-btn {
  color: #19303d;
}
.cid-tAPDeOqAKP {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  background: linear-gradient(180deg, #ffffff, #5eeebb);
}
@media (min-width: 992px) {
  .cid-tAPDeOqAKP .content-col {
    transform: translateX(-5rem);
    z-index: 1;
  }
}
@media (max-width: 575px) {
  .cid-tAPDeOqAKP .row {
    text-align: center!important;
  }
}
.cid-tAPDeOqAKP .btn {
  width: -webkit-fill-available;
}
.cid-tAPDeOqAKP .col-lg-8 {
  z-index: 2;
}
.cid-tAPDeOqAKP .content-container {
  width: 100%;
  padding: 3rem 1.5rem;
  padding-left: 4.5rem;
  padding-top: 10rem;
  border-radius: 2rem;
  background-color: #5eeebb;
  background: linear-gradient(180deg, #5eeebb, #ffffff);
}
@media (max-width: 1400px) {
  .cid-tAPDeOqAKP .content-container {
    padding: 2rem 1rem;
    padding-left: 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tAPDeOqAKP .content-container {
    padding: 1rem 0rem;
    padding-top: 2rem;
  }
}
@media (max-width: 992px) {
  .cid-tAPDeOqAKP .content-container {
    padding: 3rem 2rem;
  }
}
.cid-tAPDeOqAKP img {
  border-radius: 2rem;
}
@media (max-width: 992px) {
  .cid-tAPDeOqAKP img {
    margin-bottom: 2rem;
  }
}
.cid-tAPDeOqAKP .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 575px) {
  .cid-tAPDeOqAKP .mbr-section-title {
    text-align: center;
  }
}
.cid-tAPDeOqAKP .mbr-text {
  color: #272523;
}
.cid-tAPDeOqAKP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAPDeOqAKP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAPDeOqAKP .mbr-section-title,
.cid-tAPDeOqAKP .mbr-section-btn {
  color: #ae42c8;
}
.cid-tAPDUSscZ3 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-tAPDUSscZ3 .mbr-section-title {
  margin: 0;
}
.cid-tAPDUSscZ3 .mbr-section-subtitle {
  margin-bottom: 2rem;
  color: #8d97ad;
}
.cid-tAPDUSscZ3 .mbr-text {
  margin: 0;
  color: #efefef;
}
.cid-tAPDUSscZ3 .wrapper {
  padding: 2rem;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  border-radius: .25rem;
}
.cid-tAPDUSscZ3 .card1 {
  background: linear-gradient(45deg, #2bdc9d, #1dc9cb);
}
.cid-tAPDUSscZ3 .card2 {
  background: linear-gradient(45deg, #1dc9cb, #306de8);
}
.cid-tAPDUSscZ3 .card3 {
  background: linear-gradient(45deg, #ff4f7b, #ff695c);
}
.cid-tAPDUSscZ3 .card4 {
  background: linear-gradient(45deg, #1dc9cb, #1dc9cb);
}
@media (max-width: 991px) {
  .cid-tAPDUSscZ3 .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-tAPDUSscZ3 .mbr-card-title {
  padding-bottom: 1rem;
}
.cid-tAPDUSscZ3 .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tAhW6ZQZek {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f9f9fc;
}
.cid-tAhW6ZQZek .image-wrapper img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tAhW6ZQZek .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-tAhW6ZQZek .image-wrapper {
    margin-bottom: 10px;
  }
}
.cid-tAhW6ZQZek .text {
  padding-left: 58px;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-tAhW6ZQZek .text {
    padding-left: 1rem;
  }
}
.cid-tAhW6ZQZek .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tAhW6ZQZek .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-tAhW6ZQZek .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tAhW6ZQZek .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tAhW6ZQZek .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 45px;
}
@media (max-width: 992px) {
  .cid-tAhW6ZQZek .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tAhW6ZQZek .text img {
    height: 294px;
  }
}
.cid-tAhW6ZQZek .mbr-section-subtitle {
  color: #FF4712;
}
.cid-tAhW6ZQZek .mbr-section-title {
  color: #73087a;
  text-align: center;
}
.cid-tAhW6ZQZek .mbr-text {
  color: #84858a;
}
.cid-tAhW6ZQZek .mbr-section-title DIV {
  text-align: center;
}
.cid-tzhrQUqxuO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-tzhrQUqxuO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzhrQUqxuO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzhrQUqxuO .row {
  padding: 1rem;
}
.cid-tzhrQUqxuO .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-tzhrQUqxuO .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tzhrQUqxuO .title-wrapper {
    padding: 0;
  }
}
.cid-tzhrQUqxuO .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-tzhrQUqxuO .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tzhrQUqxuO .cards .card {
  margin-bottom: 20px;
}
.cid-tzhrQUqxuO .cards .card .mbr-number {
  margin: 0;
}
.cid-tzhrQUqxuO .cards .card .mbr-desc {
  margin: 0;
}
.cid-tzhrQUqxuO .mbr-section-title {
  color: #73087a;
  text-align: left;
}
.cid-tzhrQUqxuO .mbr-text {
  color: #0e8f61;
  text-align: center;
}
.cid-tzhrQUqxuO .mbr-number {
  color: #73087a;
}
.cid-tzhrQUqxuO .mbr-desc {
  color: #1e4381;
}
.cid-tzgOxL69sF {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/background9.webp");
}
.cid-tzgOxL69sF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzgOxL69sF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzgOxL69sF .col-title {
  margin-bottom: 30px;
  padding: 0 30px !important;
}
.cid-tzgOxL69sF .mbr-section-title {
  color: #112B6D;
}
.cid-tzgOxL69sF .mbr-section-subtitle {
  color: #0e8f61;
  margin-top: 20px;
}
.cid-tzgOxL69sF .number-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .number-container {
    display: none;
  }
}
.cid-tzgOxL69sF .number-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.33333333%;
  padding: 0 10px;
}
.cid-tzgOxL69sF .number-item:not(:first-child)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  right: 50%;
  top: calc(50% - 1px);
  background-color: #0e8f61;
}
.cid-tzgOxL69sF .number-text {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  color: #ffffff;
  background-color: #0e8f61;
}
.cid-tzgOxL69sF .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .cards-container {
    flex-wrap: wrap;
  }
}
.cid-tzgOxL69sF .card {
  width: 33.33333333%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .card {
    width: 100%;
    padding: 0 10px 30px;
  }
}
.cid-tzgOxL69sF .card-box {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .card-box {
    display: flex;
    align-items: center;
  }
}
.cid-tzgOxL69sF .iconfont-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .iconfont-wrapper {
    min-width: 130px;
    width: auto;
    margin-bottom: 0;
    margin-right: 25px;
  }
}
.cid-tzgOxL69sF .iconfont-wrapper .mbr-iconfont {
  font-size: 130px;
  color: #0e8f61;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .iconfont-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-tzgOxL69sF .card-container {
  width: 100%;
  padding: 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .card-container {
    flex-grow: 1;
    padding: 0;
  }
}
.cid-tzgOxL69sF .card-title {
  color: #04367c;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .card-title {
    margin-bottom: 20px;
    text-align: left !important;
  }
}
.cid-tzgOxL69sF .card-text {
  color: #444444;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tzgOxL69sF .card-text {
    text-align: left !important;
  }
}
.cid-tzgOxL69sF .btn-container {
  padding: 40px 30px 0 !important;
}
.cid-tzgOxL69sF .mbr-section-title,
.cid-tzgOxL69sF .mbr-section-btn {
  color: #73087a;
}
.cid-tAhv1RgPPU {
  padding-top: 8rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tAhv1RgPPU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tAhv1RgPPU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tAhv1RgPPU .row {
  row-gap: 40px;
}
.cid-tAhv1RgPPU .text-wrap {
  width: 100%;
  padding: 0 12% 0 0;
}
@media (max-width: 1439px) {
  .cid-tAhv1RgPPU .text-wrap {
    padding: 0 10% 0 0;
  }
}
.cid-tAhv1RgPPU .mbr-section-title {
  color: #73087a;
}
.cid-tAhv1RgPPU .mbr-text {
  color: #303030;
  margin-top: 16px;
}
.cid-tAhv1RgPPU .text-items-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 28px;
  width: 100%;
}
.cid-tAhv1RgPPU .text-item {
  width: 50%;
  padding-right: 20%;
}
@media (max-width: 991px) {
  .cid-tAhv1RgPPU .text-item {
    padding-right: 10%;
  }
}
@media (max-width: 767px) {
  .cid-tAhv1RgPPU .text-item {
    width: 100%;
    padding-right: 0;
  }
}
.cid-tAhv1RgPPU .item-title {
  color: #73087a;
}
.cid-tAhv1RgPPU .item-text {
  color: #058384;
  margin-top: 5px;
}
.cid-tAhv1RgPPU .mbr-text,
.cid-tAhv1RgPPU .mbr-section-btn {
  color: #04367c;
}
.cid-tzkYs5w1LM {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tzkYs5w1LM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzkYs5w1LM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzkYs5w1LM .row {
  row-gap: 40px;
}
.cid-tzkYs5w1LM .text-wrap {
  width: 100%;
  padding: 0 12% 0 0;
}
@media (max-width: 1439px) {
  .cid-tzkYs5w1LM .text-wrap {
    padding: 0 10% 0 0;
  }
}
.cid-tzkYs5w1LM .mbr-section-title {
  color: #73087a;
}
.cid-tzkYs5w1LM .mbr-text {
  color: #303030;
  margin-top: 16px;
}
.cid-tzkYs5w1LM .text-items-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  row-gap: 28px;
  width: 100%;
}
.cid-tzkYs5w1LM .text-item {
  width: 50%;
  padding-right: 20%;
}
@media (max-width: 991px) {
  .cid-tzkYs5w1LM .text-item {
    padding-right: 10%;
  }
}
@media (max-width: 767px) {
  .cid-tzkYs5w1LM .text-item {
    width: 100%;
    padding-right: 0;
  }
}
.cid-tzkYs5w1LM .item-title {
  color: #73087a;
}
.cid-tzkYs5w1LM .item-text {
  color: #058384;
  margin-top: 5px;
}
.cid-tzkYs5w1LM .mbr-text,
.cid-tzkYs5w1LM .mbr-section-btn {
  color: #04367c;
}
.cid-tzkYsQAfGz {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #efefef;
}
.cid-tzkYsQAfGz .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzkYsQAfGz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzkYsQAfGz .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tzkYsQAfGz .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tzkYsQAfGz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tzkYsQAfGz .mbr-text,
.cid-tzkYsQAfGz .mbr-section-btn {
  text-align: left;
}
.cid-rrG4UQ4DE3 {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #a61a3d;
}
.cid-rrG4UQ4DE3 .mbr-section-subtitle {
  color: #ffffff;
  text-align: center;
}
.cid-rrG4UQ4DE3 .mbr-section-title {
  text-align: center;
  color: #ffffff;
}
.cid-rrHPQQLi8W {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffea;
}
.cid-rrHPQQLi8W .mbr-iconfont {
  color: #8d97ad;
}
.cid-rrHPQQLi8W .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-rrHPQQLi8W .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-rrHPQQLi8W .mbr-section-subtitle {
  color: #0e8f61;
}
.cid-rrHPQQLi8W .card-title {
  margin-bottom: 0.3rem;
  color: #8d2553;
}
.cid-rrHPQQLi8W .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rrHPQQLi8W .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-rrHPQQLi8W .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-rrHPQQLi8W H2 {
  color: #73087a;
}
.cid-rrHPQQLi8W .mbr-text,
.cid-rrHPQQLi8W .social-links {
  text-align: center;
}
.cid-rrG50TvWSW {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rrG50TvWSW .mbr-overlay {
  background: #efefef;
}
.cid-rrG50TvWSW .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rrG50TvWSW .client-name {
  color: #8d97ad;
}
.cid-rrG50TvWSW .wrap-img {
  padding-bottom: 1rem;
}
.cid-rrG50TvWSW .wrap-img img {
  max-width: 100%;
}
.cid-rrG50TvWSW .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tzhexRvVYP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #efefef;
}
.cid-tzhexRvVYP .mbr-fallback-image.disabled {
  display: none;
}
.cid-tzhexRvVYP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tzhexRvVYP .content-container {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tzhexRvVYP .content-container {
    flex-wrap: wrap;
  }
}
.cid-tzhexRvVYP .col-text {
  max-width: 700px;
  width: 100%;
  padding-top: 12px;
  margin-left: 2.5rem;
}
@media (max-width: 991px) {
  .cid-tzhexRvVYP .col-text {
    max-width: 500px;
    margin-left: 1.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tzhexRvVYP .col-text {
    width: 100%;
    max-width: 100%;
    margin: 1.5rem 0 0 !important;
  }
}
.cid-tzhexRvVYP .card-wrapper {
  width: 100%;
}
.cid-tzhexRvVYP .card-box {
  width: 100%;
}
.cid-tzhexRvVYP .card-title {
  color: #0e8f61;
  margin-bottom: 4px;
  width: 100%;
}
.cid-tzhexRvVYP .card-subtitle {
  color: #0e8f61;
  margin-bottom: 0;
  opacity: 0.8;
  width: 100%;
}
.cid-tzhexRvVYP .mbr-text {
  color: #08579f;
  margin-bottom: 24px;
  width: 100%;
}
.cid-tzhexRvVYP .col-img {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media (max-width: 767px) {
  .cid-tzhexRvVYP .col-img {
    width: 100%;
  }
}
.cid-tzhexRvVYP .image-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  width: 250px;
  aspect-ratio: 1;
}
@media (max-width: 991px) {
  .cid-tzhexRvVYP .image-wrapper {
    width: 200px;
  }
}
@media (max-width: 767px) {
  .cid-tzhexRvVYP .image-wrapper {
    width: 250px;
  }
}
.cid-tzhexRvVYP .image-wrapper img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.cid-tzhexRvVYP .iconfont-wrapper {
  position: relative;
  z-index: 11;
  padding: 8px;
}
.cid-tzhexRvVYP .mbr-iconfont {
  font-size: 48px;
  color: #75083a;
}
.cid-rrB9FgoAx9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .content {
    text-align: center;
  }
  .cid-rrB9FgoAx9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rrB9FgoAx9 .logo-subtitle {
  color: #8d97ad;
}
.cid-rrB9FgoAx9 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rrB9FgoAx9 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rrB9FgoAx9 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rrB9FgoAx9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rrB9FgoAx9 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rrB9FgoAx9 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rrB9FgoAx9 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rrB9FgoAx9 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rrB9FgoAx9 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rrB9FgoAx9 .list-item {
  display: flex;
}
.cid-rrB9FgoAx9 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rrB9FgoAx9 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rrB9FgoAx9 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rrB9FgoAx9 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rrB9FgoAx9 .logo-subtitle,
.cid-rrB9FgoAx9 .media-wrap {
  color: #04367c;
}
.cid-rrB9FgoAx9 .copyright > p {
  color: #04367c;
}
.cid-rrB9FgoAx9 P {
  text-align: left;
  color: #04367c;
}
.cid-rrB9FgoAx9 .mbr-text {
  color: #04367c;
}
.cid-rrB9FgoAx9 .column-title {
  color: #04367c;
}
.cid-tB2s2JRAZ6 .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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tB2s2JRAZ6 .nav-item,
.cid-tB2s2JRAZ6 .nav-link,
.cid-tB2s2JRAZ6 .navbar-caption {
  font-weight: normal;
}
.cid-tB2s2JRAZ6 .nav-item:focus,
.cid-tB2s2JRAZ6 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tB2s2JRAZ6 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-tB2s2JRAZ6 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tB2s2JRAZ6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-tB2s2JRAZ6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-tB2s2JRAZ6 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-tB2s2JRAZ6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tB2s2JRAZ6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tB2s2JRAZ6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tB2s2JRAZ6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tB2s2JRAZ6 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
  background: none;
}
.cid-tB2s2JRAZ6 .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-tB2s2JRAZ6 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-tB2s2JRAZ6 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-tB2s2JRAZ6 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tB2s2JRAZ6 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tB2s2JRAZ6 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-tB2s2JRAZ6 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-tB2s2JRAZ6 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tB2s2JRAZ6 .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-tB2s2JRAZ6 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tB2s2JRAZ6 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tB2s2JRAZ6 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-tB2s2JRAZ6 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tB2s2JRAZ6 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tB2s2JRAZ6 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-tB2s2JRAZ6 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tB2s2JRAZ6 .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-tB2s2JRAZ6 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tB2s2JRAZ6 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tB2s2JRAZ6 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-tB2s2JRAZ6 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tB2s2JRAZ6 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tB2s2JRAZ6 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-tB2s2JRAZ6 .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-tB2s2JRAZ6 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tB2s2JRAZ6 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tB2s2JRAZ6 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tB2s2JRAZ6 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tB2s2JRAZ6 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tB2s2JRAZ6 .dropdown-item.active,
.cid-tB2s2JRAZ6 .dropdown-item:active {
  background-color: transparent;
}
.cid-tB2s2JRAZ6 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tB2s2JRAZ6 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tB2s2JRAZ6 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-tB2s2JRAZ6 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tB2s2JRAZ6 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tB2s2JRAZ6 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tB2s2JRAZ6 .navbar-buttons {
  text-align: center;
}
.cid-tB2s2JRAZ6 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tB2s2JRAZ6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a61a3d;
}
.cid-tB2s2JRAZ6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tB2s2JRAZ6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tB2s2JRAZ6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tB2s2JRAZ6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tB2s2JRAZ6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tB2s2JRAZ6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tB2s2JRAZ6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tB2s2JRAZ6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tB2s2JRAZ6 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-tB2s2JRAZ6 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-tB2s2JRAZ6 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-tB2s2JRAZ6 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-tB2s2JRAZ6 .soc-item {
  margin: .5rem .3rem;
}
.cid-tB2s2JRAZ6 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tB2s2JRAZ6 .navbar {
    height: 77px;
  }
  .cid-tB2s2JRAZ6 .navbar.opened {
    height: auto;
  }
  .cid-tB2s2JRAZ6 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tB2s2Kmzig {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/g11988-1080x500.webp");
}
.cid-tB2s2Kmzig .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB2s2Kmzig .mbr-section-subtitle {
  width: fit-content;
  position: relative;
  display: inline-block;
  z-index: 2;
}
.cid-tB2s2Kmzig .mbr-section-subtitle:before {
  position: absolute;
  content: '';
  left: 0;
  bottom: 10%;
  width: 100%;
  height: 9px;
  background: #c6ffe0;
  z-index: -1;
}
.cid-tB2s2Kmzig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB2s2Kmzig .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-tB2s2Kmzig .image-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-tB2s2Kmzig .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-tB2s2Kmzig .mbr-section-title {
  color: #73087a;
  text-align: left;
}
.cid-tB2s2Kmzig .mbr-section-subtitle,
.cid-tB2s2Kmzig .subtitle-wrap {
  color: #19303d;
}
.cid-tB2s2Kmzig .mbr-text,
.cid-tB2s2Kmzig .mbr-section-btn {
  color: #19303d;
}
#custom-html-4u {
  /* Type valid CSS here */
}
#custom-html-4u div {
  padding: 80px 0;
  color: #777;
  text-align: center;
}
#custom-html-4u p {
  font-size: 60px;
  color: #777;
}
.cid-tB2s2LvDW3 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #efefef;
}
.cid-tB2s2LvDW3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB2s2LvDW3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB2s2LvDW3 .row {
  padding: 1rem;
}
.cid-tB2s2LvDW3 .row::before {
  content: '';
  display: block;
  width: 65%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #ffffff;
  border-radius: 400px 0 0 0;
}
.cid-tB2s2LvDW3 .title-wrapper {
  padding-left: 110px;
  z-index: 1;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tB2s2LvDW3 .title-wrapper {
    padding: 0;
  }
}
.cid-tB2s2LvDW3 .title-wrapper .mbr-section-title {
  margin-bottom: 15px;
}
.cid-tB2s2LvDW3 .title-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-tB2s2LvDW3 .cards .card {
  margin-bottom: 20px;
}
.cid-tB2s2LvDW3 .cards .card .mbr-number {
  margin: 0;
}
.cid-tB2s2LvDW3 .cards .card .mbr-desc {
  margin: 0;
}
.cid-tB2s2LvDW3 .mbr-section-title {
  color: #73087a;
  text-align: left;
}
.cid-tB2s2LvDW3 .mbr-text {
  color: #0e8f61;
  text-align: center;
}
.cid-tB2s2LvDW3 .mbr-number {
  color: #73087a;
}
.cid-tB2s2LvDW3 .mbr-desc {
  color: #1e4381;
}
.cid-tB2s2LO253 {
  padding-top: 7rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/background9.webp");
}
.cid-tB2s2LO253 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tB2s2LO253 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tB2s2LO253 .col-title {
  margin-bottom: 30px;
  padding: 0 30px !important;
}
.cid-tB2s2LO253 .mbr-section-title {
  color: #112B6D;
}
.cid-tB2s2LO253 .mbr-section-subtitle {
  color: #0e8f61;
  margin-top: 20px;
}
.cid-tB2s2LO253 .number-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .number-container {
    display: none;
  }
}
.cid-tB2s2LO253 .number-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 33.33333333%;
  padding: 0 10px;
}
.cid-tB2s2LO253 .number-item:not(:first-child)::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  right: 50%;
  top: calc(50% - 1px);
  background-color: #0e8f61;
}
.cid-tB2s2LO253 .number-text {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 30px;
  color: #ffffff;
  background-color: #0e8f61;
}
.cid-tB2s2LO253 .cards-container {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .cards-container {
    flex-wrap: wrap;
  }
}
.cid-tB2s2LO253 .card {
  width: 33.33333333%;
  padding: 10px;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .card {
    width: 100%;
    padding: 0 10px 30px;
  }
}
.cid-tB2s2LO253 .card-box {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .card-box {
    display: flex;
    align-items: center;
  }
}
.cid-tB2s2LO253 .iconfont-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .iconfont-wrapper {
    min-width: 130px;
    width: auto;
    margin-bottom: 0;
    margin-right: 25px;
  }
}
.cid-tB2s2LO253 .iconfont-wrapper .mbr-iconfont {
  font-size: 130px;
  color: #0e8f61;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .iconfont-wrapper .mbr-iconfont {
    font-size: 80px;
  }
}
.cid-tB2s2LO253 .card-container {
  width: 100%;
  padding: 20px 20px 0;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .card-container {
    flex-grow: 1;
    padding: 0;
  }
}
.cid-tB2s2LO253 .card-title {
  color: #04367c;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .card-title {
    margin-bottom: 20px;
    text-align: left !important;
  }
}
.cid-tB2s2LO253 .card-text {
  color: #444444;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .cid-tB2s2LO253 .card-text {
    text-align: left !important;
  }
}
.cid-tB2s2LO253 .btn-container {
  padding: 40px 30px 0 !important;
}
.cid-tB2s2LO253 .mbr-section-title,
.cid-tB2s2LO253 .mbr-section-btn {
  color: #73087a;
}
.cid-tB2s2OKVIB {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tB2s2OKVIB .mbr-overlay {
  background: #efefef;
}
.cid-tB2s2OKVIB .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-tB2s2OKVIB .client-name {
  color: #8d97ad;
}
.cid-tB2s2OKVIB .wrap-img {
  padding-bottom: 1rem;
}
.cid-tB2s2OKVIB .wrap-img img {
  max-width: 100%;
}
.cid-tB2s2OKVIB .card-box p {
  color: #8d97ad;
  margin: 0;
  padding-bottom: 1.5rem;
}
.cid-tB2s2NKgxM {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #ffffea;
}
.cid-tB2s2NKgxM .mbr-iconfont {
  color: #8d97ad;
}
.cid-tB2s2NKgxM .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-tB2s2NKgxM .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-tB2s2NKgxM .mbr-section-subtitle {
  color: #0e8f61;
}
.cid-tB2s2NKgxM .card-title {
  margin-bottom: 0.3rem;
  color: #8d2553;
}
.cid-tB2s2NKgxM .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-tB2s2NKgxM .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tB2s2NKgxM .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-tB2s2NKgxM H2 {
  color: #73087a;
}
.cid-tB2s2NKgxM .mbr-text,
.cid-tB2s2NKgxM .social-links {
  text-align: center;
}
.cid-tB2s2PxET4 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-tB2s2PxET4 .content {
    text-align: center;
  }
  .cid-tB2s2PxET4 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-tB2s2PxET4 .logo-subtitle {
  color: #8d97ad;
}
.cid-tB2s2PxET4 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-tB2s2PxET4 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tB2s2PxET4 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tB2s2PxET4 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tB2s2PxET4 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tB2s2PxET4 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-tB2s2PxET4 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-tB2s2PxET4 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-tB2s2PxET4 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tB2s2PxET4 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tB2s2PxET4 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tB2s2PxET4 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tB2s2PxET4 .list-item {
  display: flex;
}
.cid-tB2s2PxET4 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-tB2s2PxET4 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-tB2s2PxET4 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-tB2s2PxET4 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-tB2s2PxET4 .logo-subtitle,
.cid-tB2s2PxET4 .media-wrap {
  color: #04367c;
}
.cid-tB2s2PxET4 .copyright > p {
  color: #04367c;
}
.cid-tB2s2PxET4 P {
  text-align: left;
  color: #04367c;
}
.cid-tB2s2PxET4 .mbr-text {
  color: #04367c;
}
.cid-tB2s2PxET4 .column-title {
  color: #04367c;
}
.cid-rrB9iRzYxJ .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;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rrB9iRzYxJ .nav-item,
.cid-rrB9iRzYxJ .nav-link,
.cid-rrB9iRzYxJ .navbar-caption {
  font-weight: normal;
}
.cid-rrB9iRzYxJ .nav-item:focus,
.cid-rrB9iRzYxJ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rrB9iRzYxJ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rrB9iRzYxJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rrB9iRzYxJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rrB9iRzYxJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rrB9iRzYxJ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #f4f8fa;
  background: none;
}
.cid-rrB9iRzYxJ .navbar.opened {
  transition: all .3s;
  background: #f4f8fa !important;
}
.cid-rrB9iRzYxJ .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rrB9iRzYxJ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rrB9iRzYxJ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rrB9iRzYxJ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rrB9iRzYxJ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 3.8rem - 1rem);
  }
}
.cid-rrB9iRzYxJ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rrB9iRzYxJ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rrB9iRzYxJ .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-rrB9iRzYxJ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rrB9iRzYxJ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rrB9iRzYxJ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rrB9iRzYxJ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rrB9iRzYxJ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rrB9iRzYxJ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rrB9iRzYxJ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rrB9iRzYxJ .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-rrB9iRzYxJ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rrB9iRzYxJ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rrB9iRzYxJ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rrB9iRzYxJ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rrB9iRzYxJ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rrB9iRzYxJ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rrB9iRzYxJ .navbar.navbar-short {
  background: #f4f8fa !important;
  min-height: 60px;
}
.cid-rrB9iRzYxJ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rrB9iRzYxJ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rrB9iRzYxJ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rrB9iRzYxJ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rrB9iRzYxJ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rrB9iRzYxJ .dropdown-item.active,
.cid-rrB9iRzYxJ .dropdown-item:active {
  background-color: transparent;
}
.cid-rrB9iRzYxJ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rrB9iRzYxJ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rrB9iRzYxJ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #f4f8fa;
}
.cid-rrB9iRzYxJ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rrB9iRzYxJ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rrB9iRzYxJ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rrB9iRzYxJ .navbar-buttons {
  text-align: center;
}
.cid-rrB9iRzYxJ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #a61a3d;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rrB9iRzYxJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rrB9iRzYxJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rrB9iRzYxJ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rrB9iRzYxJ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rrB9iRzYxJ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rrB9iRzYxJ .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rrB9iRzYxJ .soc-item {
  margin: .5rem .3rem;
}
.cid-rrB9iRzYxJ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rrB9iRzYxJ .navbar {
    height: 77px;
  }
  .cid-rrB9iRzYxJ .navbar.opened {
    height: auto;
  }
  .cid-rrB9iRzYxJ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tBXYu9jjtd {
  background-image: url("../../../assets/images/background9.webp");
}
.cid-tBXYu9jjtd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tBXYu9jjtd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-rrB9FgoAx9 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #cccccc;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .content {
    text-align: center;
  }
  .cid-rrB9FgoAx9 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rrB9FgoAx9 .logo-subtitle {
  color: #8d97ad;
}
.cid-rrB9FgoAx9 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rrB9FgoAx9 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rrB9FgoAx9 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rrB9FgoAx9 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rrB9FgoAx9 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-rrB9FgoAx9 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rrB9FgoAx9 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rrB9FgoAx9 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rrB9FgoAx9 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rrB9FgoAx9 .footer-lower .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-rrB9FgoAx9 .list-item {
  display: flex;
}
.cid-rrB9FgoAx9 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rrB9FgoAx9 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rrB9FgoAx9 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rrB9FgoAx9 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rrB9FgoAx9 .logo-subtitle,
.cid-rrB9FgoAx9 .media-wrap {
  color: #04367c;
}
.cid-rrB9FgoAx9 .copyright > p {
  color: #04367c;
}
.cid-rrB9FgoAx9 P {
  text-align: left;
  color: #04367c;
}
.cid-rrB9FgoAx9 .mbr-text {
  color: #04367c;
}
.cid-rrB9FgoAx9 .column-title {
  color: #04367c;
}
