body {
  background-color: #ffffff;
}
body {
  font-family: Source Serif 4;
}
.display-1 {
  font-family: 'Source Serif 4', sans-serif;
  font-size: 8rem;
  line-height: 1.1;
  letter-spacing: normal;
  word-spacing: normal;
}
.display-1 > .mbr-iconfont {
  font-size: 10rem;
}
.display-2 {
  font-family: 'Source Serif 4', sans-serif;
  font-size: 4.25rem;
  line-height: 1.15;
  letter-spacing: normal;
  word-spacing: normal;
}
.display-2 > .mbr-iconfont {
  font-size: 5.3125rem;
}
.display-4 {
  font-family: 'Source Serif 4', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: normal;
  word-spacing: normal;
}
.display-4 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-5 {
  font-family: 'Source Serif 4', sans-serif;
  font-size: 2.5rem;
  line-height: 1.25;
  letter-spacing: normal;
  word-spacing: normal;
}
.display-5 > .mbr-iconfont {
  font-size: 3.125rem;
}
.display-7 {
  font-family: 'Source Serif 4', sans-serif;
  font-size: 1.125rem;
  line-height: 1.4;
  letter-spacing: normal;
  word-spacing: normal;
}
.display-7 > .mbr-iconfont {
  font-size: 1.40625rem;
}
/* ---- 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: 6.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 5.6rem;
    font-size: calc( 3.45rem + (8 - 3.45) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.45rem + (8 - 3.45) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    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-5 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.9rem;
    font-size: calc( 1.04375rem + (1.125 - 1.04375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.04375rem + (1.125 - 1.04375) * ((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: #149506 !important;
}
.bg-success {
  background-color: #20ac6b !important;
}
.bg-info {
  background-color: #0aa3c2 !important;
}
.bg-warning {
  background-color: #cc9900 !important;
}
.bg-danger {
  background-color: #ae1e2c !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149506 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #090f10 !important;
  background-color: #29f912 !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #090f10 !important;
  background-color: #29f912 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #001520 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #090f10 !important;
  background-color: #005f90 !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #090f10 !important;
  background-color: #005f90 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0aa3c2 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #090f10 !important;
  background-color: #44daf8 !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #090f10 !important;
  background-color: #44daf8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #20ac6b !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #090f10 !important;
  background-color: #59e4a3 !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #090f10 !important;
  background-color: #59e4a3 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #cc9900 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #090f10 !important;
  background-color: #ffcf3d !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #090f10 !important;
  background-color: #ffcf3d !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ae1e2c !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #090f10 !important;
  background-color: #e55765 !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #090f10 !important;
  background-color: #e55765 !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #090f10 !important;
  background-color: #ffffff !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #090f10 !important;
  background-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #090f10 !important;
  color: #090f10 !important;
  box-shadow: none !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #090f10 !important;
  background-color: #2f545a !important;
  box-shadow: 0 0 6px 6px rgba(5, 153, 255, 0.2) !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #090f10 !important;
  background-color: #2f545a !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #149506;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #094203 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149506 !important;
  border-color: #149506 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #001520;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #001520 !important;
  border-color: #001520 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0aa3c2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #065e70 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0aa3c2 !important;
  border-color: #0aa3c2 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #20ac6b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #12633e !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #20ac6b !important;
  border-color: #20ac6b !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #cc9900;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #755800 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #cc9900 !important;
  border-color: #cc9900 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ae1e2c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #641119 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ae1e2c !important;
  border-color: #ae1e2c !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #090f10;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #090f10 !important;
  border-color: #090f10 !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;
  text-shadow: 6px 0 6px rgba(5, 153, 255, 0.15), 0 6px 6px rgba(5, 153, 255, 0.15), -6px 0 6px rgba(5, 153, 255, 0.15), 0 -6px 6px rgba(5, 153, 255, 0.15) !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: #149506 !important;
}
.text-secondary {
  color: #001520 !important;
}
.text-success {
  color: #20ac6b !important;
}
.text-info {
  color: #0aa3c2 !important;
}
.text-warning {
  color: #cc9900 !important;
}
.text-danger {
  color: #ae1e2c !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #090f10 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #073302 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #105636 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #055161 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #664d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #570f16 !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: #149506;
}
.nav-tabs .nav-link:not(.active) {
  color: #090f10;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0aa3c2;
}
.alert-warning {
  background-color: #cc9900;
}
.alert-danger {
  background-color: #ae1e2c;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149506;
  border-color: #149506;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #149506;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #39f624;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #68e3aa;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #55dbf6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffe599;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e56773;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Source Serif 4', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: normal;
  word-spacing: normal;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 2.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: #149506 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Source Serif 4', sans-serif;
  font-size: 2rem;
  line-height: 1.25;
  letter-spacing: normal;
  word-spacing: normal;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 2.5rem;
}
blockquote {
  border-color: #149506;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149506;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #149506;
}
.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: #149506;
  border-bottom-color: #149506;
}
.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: #149506 !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: #001520 !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='%23149506' %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-duration: .3s;
  transition: 0.4s;
}
a:hover {
  background-image: none !important;
}
.container {
  max-width: 1344px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
}
.container-fluid {
  max-width: 100%;
  width: 100%;
  padding: 0 5vw;
}
.row {
  margin-left: -2rem;
  margin-right: -2rem;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 2rem;
  padding-right: 2rem;
}
@media (max-width: 767px) {
  .row {
    margin-left: -1rem;
    margin-right: -1rem;
  }
  .row > [class*="col"] {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.mbr-section-btn .btn {
  min-width: 100px;
  min-height: 48px;
  padding: 0.75rem 2rem;
  border-radius: 0 !important;
  border: none;
  font-weight: 500;
  transition: .3s all !important;
}
.mbr-section-btn .btn .mbr-iconfont {
  transition: .15s all !important;
  transform: rotate(-45deg);
  transform-style: preserve-3d;
}
.mbr-section-btn .btn:hover {
  transform: translate(0, -8px);
}
.mbr-section-btn .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
@media (max-width: 575px) {
  .mbr-section-btn {
    width: 100%;
  }
  .mbr-section-btn .btn {
    width: 100%;
    min-width: auto !important;
  }
}
.mbr-section-btn .btn-black {
  color: #fff !important;
}
.mbr-section-btn .btn-black:hover {
  color: #fff !important;
}
.section-border-item {
  position: absolute;
  width: 100%;
  height: 1px;
  left: 0;
}
.section-border-item_top {
  top: 0;
}
.section-border-item_bottom {
  bottom: 0;
}
.section-border-item_center {
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
}
.text-transform-container {
  display: flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  overflow: hidden;
}
.text-transform-container .text-transform-wrap {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: btn-move-out 0.3s ease-in-out;
}
.text-transform-container .mbr-text {
  transition: .3s all;
}
.text-transform-container .iconfont-wrapper .mbr-iconfont {
  transition: .3s all;
  padding-right: 8px;
}
.text-transform-container:hover .text-transform-wrap {
  animation: btn-move 0.3s ease-in-out;
}
.text-transform-container:hover .iconfont-wrapper .mbr-iconfont {
  padding-right: 0;
  padding-left: 8px;
}
@keyframes btn-move {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
@keyframes btn-move-out {
  0% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: transform;
  }
  49% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  50% {
    transform: translate3d(0px, 100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  51% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 0, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  52% {
    transform: translate3d(0px, -100%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  100% {
    transform: translate3d(0px, 0%, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
    will-change: auto;
  }
}
.cid-vbcF3W61uu .navbar-dropdown {
  position: relative !important;
}
.cid-vbcF3W61uu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbcF3W61uu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vbcF3W61uu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vbcF3W61uu .dropdown-item:hover,
.cid-vbcF3W61uu .dropdown-item:focus {
  background: #149506 !important;
  color: white !important;
}
.cid-vbcF3W61uu .dropdown-item:hover span {
  color: white;
}
.cid-vbcF3W61uu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vbcF3W61uu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vbcF3W61uu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vbcF3W61uu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbcF3W61uu .nav-link {
  position: relative;
}
.cid-vbcF3W61uu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vbcF3W61uu .container {
    flex-wrap: nowrap;
  }
}
.cid-vbcF3W61uu .navbar-caption {
  color: #FFFFFF;
}
.cid-vbcF3W61uu .dropdown-menu,
.cid-vbcF3W61uu .navbar.opened {
  background: #00592f !important;
}
.cid-vbcF3W61uu .nav-item:focus,
.cid-vbcF3W61uu .nav-link:focus {
  outline: none;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbcF3W61uu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbcF3W61uu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbcF3W61uu .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #00592f;
  padding: 0 !important;
  box-shadow: none;
  border: none;
}
.cid-vbcF3W61uu .navbar.opened {
  transition: all 0.3s;
}
.cid-vbcF3W61uu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbcF3W61uu .navbar .navbar-logo img {
  width: auto;
}
.cid-vbcF3W61uu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbcF3W61uu .navbar.collapsed {
  justify-content: center;
}
.cid-vbcF3W61uu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbcF3W61uu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbcF3W61uu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vbcF3W61uu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-vbcF3W61uu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbcF3W61uu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vbcF3W61uu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vbcF3W61uu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbcF3W61uu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vbcF3W61uu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-vbcF3W61uu .navbar.navbar-short {
  min-height: auto;
}
.cid-vbcF3W61uu .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-vbcF3W61uu .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-vbcF3W61uu .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-vbcF3W61uu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-vbcF3W61uu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbcF3W61uu .dropdown-item.active,
.cid-vbcF3W61uu .dropdown-item:active {
  background-color: transparent;
}
.cid-vbcF3W61uu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbcF3W61uu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbcF3W61uu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbcF3W61uu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #00592f;
}
.cid-vbcF3W61uu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbcF3W61uu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbcF3W61uu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbcF3W61uu .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-vbcF3W61uu .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-vbcF3W61uu .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vbcF3W61uu .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-vbcF3W61uu .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-vbcF3W61uu button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-vbcF3W61uu button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbcF3W61uu button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbcF3W61uu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vbcF3W61uu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbcF3W61uu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbcF3W61uu .navbar {
    height: 70px;
  }
  .cid-vbcF3W61uu .navbar.opened {
    height: auto;
  }
  .cid-vbcF3W61uu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbcF3W61uu .container-fluid {
  padding-right: 0;
}
.cid-vbcF3W61uu .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.35fr;
  gap: 2rem;
  align-items: center;
}
.cid-vbcF3W61uu .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-vbcF3W61uu .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-vbcF3W61uu .navbar-collapse .nav-link:hover {
  color: #1ec50d !important;
}
@media (max-width: 991px) {
  .cid-vbcF3W61uu .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-vbcF3W61uu .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-vbcF3W61uu .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-vbcF3W61uu .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-vbcF3W61uu .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-vbcF3W61uu .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-vbcF3W61uu .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-vbcF3W61uu .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3W61uu .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-vbcF3W61uu .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-vbcF3W61uu .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-vbcF3W61uu .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-vbcF3W61uu .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-vbcF3W61uu .navbar-caption:hover {
  color: #ffffff;
}
.cid-vbcF3W61uu .nav-link,
.cid-vbcF3W61uu .dropdown-item {
  color: #FFFFFF;
}
.cid-vbixtUpCDP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00592f;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbixtUpCDP .section-border-item {
  background-color: #ffffff;
}
.cid-vbixtUpCDP .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbixtUpCDP .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbixtUpCDP .main-container {
    padding: 3rem 0;
  }
}
.cid-vbixtUpCDP .title-wrap {
  width: 100%;
}
.cid-vbixtUpCDP .title-box {
  width: 100%;
}
.cid-vbixtUpCDP .mbr-title {
  color: #FFFFFF;
}
.cid-vbixtUpCDP .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbixtUpCDP .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbixtUpCDP .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbixtUpCDP .card-row {
    flex-wrap: wrap;
  }
}
.cid-vbixtUpCDP .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vbixtUpCDP .card {
    width: 100%;
  }
}
.cid-vbixtUpCDP .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbixtUpCDP .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-vbixtUpCDP .card:nth-child(1) .card-bg {
  background-image: url("../../../assets/images/-dsc3108-2000x1333.jpg");
}
.cid-vbixtUpCDP .card:nth-child(2) .card-bg {
  background-image: url("../../../assets/images/-dsc2518-2000x1333.jpg");
}
.cid-vbixtUpCDP .card:nth-child(3) .card-bg {
  background-image: url("../../../assets/images/-dsc2724-2-2000x3000.jpeg");
}
@media (min-width: 992px) {
  .cid-vbixtUpCDP .card:hover .card-bg {
    opacity: 0.3;
    transform: translate3d(0px, 0px, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  .cid-vbixtUpCDP .card:hover .card-title {
    color: #ffffff !important;
  }
  .cid-vbixtUpCDP .card:hover .card-text {
    color: #ffffff !important;
  }
  .cid-vbixtUpCDP .card:hover .card-label-container {
    background-color: #ffffff;
  }
  .cid-vbixtUpCDP .card:hover .card-label-container .card-label {
    color: #00592f !important;
  }
  .cid-vbixtUpCDP .card:hover .card-label-container .card-label a {
    color: #00592f !important;
  }
}
.cid-vbixtUpCDP .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 360px;
  padding: 2rem;
}
.cid-vbixtUpCDP .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(4deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbixtUpCDP .card-bg {
    opacity: 0.7;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-vbixtUpCDP .card-text-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-vbixtUpCDP .card-title {
  color: #ffffff;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbixtUpCDP .card-title {
    color: #ffffff !important;
  }
}
.cid-vbixtUpCDP .card-text {
  color: #ffffff;
  margin-top: 2rem;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbixtUpCDP .card-text {
    color: #ffffff !important;
  }
}
@media (max-width: 767px) {
  .cid-vbixtUpCDP .card-text {
    margin-top: 1.5rem;
  }
}
.cid-vbixtUpCDP .card-label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 70%;
  margin-top: auto;
  margin-bottom: -2rem;
  margin-left: -2rem;
  margin-right: auto;
  padding: 1rem 2rem;
  background-color: #00592f;
  transition: 0.3s all;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.cid-vbixtUpCDP .card-label {
  color: #ffffff;
}
.cid-vbcF3W8wVs {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/-dsc2649-2000x1333.jpeg");
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3W8wVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3W8wVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3W8wVs.mbr-fullscreen {
  padding: 0 !important;
}
.cid-vbcF3W8wVs:not(.mbr-fullscreen) {
  min-height: 680px;
}
@media (max-width: 991px) {
  .cid-vbcF3W8wVs:not(.mbr-fullscreen) {
    min-height: 616px;
  }
}
.cid-vbcF3W8wVs .section-border-item {
  background-color: #ffffff;
}
.cid-vbcF3W8wVs .row {
  width: 100%;
  margin: 0;
}
.cid-vbcF3W8wVs .col-content {
  padding: 4rem !important;
  background-color: #fff1af;
}
@media (max-width: 575px) {
  .cid-vbcF3W8wVs .col-content {
    padding-top: 32px !important;
    padding-bottom: 32px !important;
    padding-left: 5% !important;
  }
}
.cid-vbcF3W8wVs .mbr-section-title {
  color: #149506;
}
.cid-vbcF3W8wVs .mbr-section-subtitle {
  color: #149506;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-vbcF3W8wVs .mbr-section-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-vbcF3W8wVs .mbr-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-vbcF3W8wVs .mbr-text {
    margin-top: 1rem;
  }
}
.cid-vbcF3W8wVs .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3W8wVs .mbr-section-btn {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3W8wVs .label-container {
  width: fit-content;
  max-width: 50%;
  padding: 0.75rem 1.5rem;
  margin-right: -4rem;
  margin-bottom: -4rem;
  margin-left: auto;
  margin-top: 2rem;
  background-color: #1ec50d;
}
@media (max-width: 776px) {
  .cid-vbcF3W8wVs .label-container {
    max-width: 70%;
  }
}
@media (max-width: 575px) {
  .cid-vbcF3W8wVs .label-container {
    margin-top: 1rem;
    margin-bottom: -2rem;
  }
}
.cid-vbcF3W8wVs .label-text {
  color: #000000;
}
.cid-vbcF3WcTEN {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/-dsc3325-2000x1333.jpg");
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WcTEN .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3WcTEN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3WcTEN .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3WcTEN .section-border-item_center {
    display: none;
  }
}
.cid-vbcF3WcTEN .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .cid-vbcF3WcTEN .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbcF3WcTEN .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbcF3WcTEN .card-wrap {
    width: 100%;
  }
}
.cid-vbcF3WcTEN .card-box {
  width: 100%;
  padding-right: 10vw;
}
@media (max-width: 991px) {
  .cid-vbcF3WcTEN .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WcTEN .card-box {
    max-width: 100%;
  }
}
.cid-vbcF3WcTEN .card-title {
  color: #fff1ae;
}
.cid-vbcF3WcTEN .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WcTEN .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WcTEN .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WcTEN .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbcF3WcTEN .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbcF3WcTEN .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbcF3WcTEN .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbcF3WcTEN .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbcF3WcTEN .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbcF3WcTEN .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WcTEN .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbcF3WcTEN .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vbcF3WcTEN .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbcF3WcTEN .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbcF3WcTEN .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbcF3WcTEN .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbcF3WcTEN .mbr-text,
.cid-vbcF3WcTEN .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbcF3WcKDc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WcKDc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3WcKDc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3WcKDc .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3WcKDc .section-border-item_center {
    display: none;
  }
}
.cid-vbcF3WcKDc .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vbcF3WcKDc .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbcF3WcKDc .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbcF3WcKDc .card-wrap {
    width: 100%;
  }
}
.cid-vbcF3WcKDc .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-vbcF3WcKDc .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WcKDc .card-box {
    max-width: 100%;
  }
}
.cid-vbcF3WcKDc .card-title {
  color: #000000;
}
.cid-vbcF3WcKDc .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WcKDc .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WcKDc .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WcKDc .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbcF3WcKDc .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbcF3WcKDc .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbcF3WcKDc .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbcF3WcKDc .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbcF3WcKDc .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbcF3WcKDc .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WcKDc .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbcF3WcKDc .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-vbcF3WcKDc .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbcF3WcKDc .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbcF3WcKDc .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbcF3WcKDc .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbcF3WcKDc .mbr-text,
.cid-vbcF3WcKDc .mbr-section-btn {
  color: #000000;
}
.cid-vbcQCHMmQx {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbcQCHMmQx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcQCHMmQx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcQCHMmQx .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vbcQCHMmQx .content-wrap {
    margin-bottom: 30px;
  }
}
.cid-vbcQCHMmQx .content-wrap .card {
  justify-content: flex-end;
}
.cid-vbcQCHMmQx .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbcQCHMmQx .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vbcQCHMmQx .content-wrap .main-btn {
  margin-bottom: -9.6px;
}
.cid-vbcQCHMmQx .items-wrapper .items-wrap {
  display: grid;
  flex: 1 0 0;
  gap: 20px;
  grid-auto-rows: minmax(0px, 1fr);
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  grid-template-rows: repeat(2, minmax(0px, 1fr));
  height: 1px;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
  padding: 0px;
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vbcQCHMmQx .items-wrapper .items-wrap {
    display: block;
    min-height: auto;
    height: auto;
  }
}
.cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap {
    margin-top: 20px;
  }
  .cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap:first-child {
    margin-top: 0;
  }
}
.cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap img {
    height: 300px;
  }
}
.cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap img:hover,
.cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap img:focus {
  transform: scale(1.08);
}
.cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap_2 {
  grid-column: span 2;
}
.cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap_3 {
  grid-column: 4;
  grid-row: 1 / span 2;
}
.cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap_3 img {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vbcQCHMmQx .items-wrapper .items-wrap .image-wrap_3 img {
    height: 300px;
  }
}
.cid-vbcQCHMmQx .mbr-section-title {
  color: #3a353e;
}
.cid-vbcQCHMmQx .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vbcQCHMmQx .mbr-section-btn {
    text-align: left;
  }
}
.cid-vbcF3We0gS {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff1ae;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3We0gS .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3We0gS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3We0gS .section-border-item {
  background-color: #ffffff;
}
.cid-vbcF3We0gS .card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cid-vbcF3We0gS .testimonial-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .testimonial-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbcF3We0gS .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbcF3We0gS .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #000000;
  margin: 0 0.2rem;
}
.cid-vbcF3We0gS .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbcF3We0gS .card-text {
  color: #000000;
}
.cid-vbcF3We0gS .card-bottom-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .card-bottom-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-vbcF3We0gS .card-name-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .card-name-wrap {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    border-right: none;
  }
}
.cid-vbcF3We0gS .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .card-name-image-wrap {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-vbcF3We0gS .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vbcF3We0gS .card-name-text-wrap {
  flex-grow: 1;
}
.cid-vbcF3We0gS .card-name {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .card-name {
    text-align: center;
  }
}
.cid-vbcF3We0gS .card-prof {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .card-prof {
    text-align: center;
  }
}
.cid-vbcF3We0gS .logo-wrap {
  width: 100%;
  max-width: 108px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .cid-vbcF3We0gS .logo-wrap {
    margin-top: 16px;
    margin-left: 0;
  }
}
.cid-vbcF3We0gS .logo-wrap img {
  width: 100%;
  object-fit: contain;
}
.cid-vbcF3We0gS .logo-wrap img {
  filter: invert(1);
}
.cid-vbcF3W9ZBl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3W9ZBl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3W9ZBl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3W9ZBl .section-border-item {
  background-color: #000000;
}
.cid-vbcF3W9ZBl .mbr-section-title {
  color: #000000;
}
.cid-vbcF3W9ZBl .mbr-section-subtitle {
  color: #149506;
  background-image: linear-gradient(170deg, currentColor, #00592f) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-vbcF3W9ZBl .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3W9ZBl .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3Wdz1u {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3Wdz1u .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3Wdz1u .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3Wdz1u .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3Wdz1u .section-border-item_center {
    display: none;
  }
}
.cid-vbcF3Wdz1u .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .cid-vbcF3Wdz1u .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbcF3Wdz1u .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbcF3Wdz1u .card-wrap {
    width: 100%;
  }
}
.cid-vbcF3Wdz1u .card-box {
  width: 100%;
  padding-right: 10vw;
}
@media (max-width: 991px) {
  .cid-vbcF3Wdz1u .card-box {
    max-width: 32rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3Wdz1u .card-box {
    max-width: 100%;
  }
}
.cid-vbcF3Wdz1u .card-title {
  color: #FFFFFF;
}
.cid-vbcF3Wdz1u .card-subtitle {
  color: #FFFFFF;
}
.cid-vbcF3Wdz1u .mbr-text {
  color: #FFF;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wdz1u .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3Wdz1u .counter-container {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .cid-vbcF3Wdz1u .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbcF3Wdz1u .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wdz1u .list {
    grid-template-columns: 1fr;
  }
}
.cid-vbcF3Wdz1u .list-title {
  color: #FFFFFF;
}
.cid-vbcF3Wdz1u .list-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wdz1u .list-text {
    margin-top: 0.75rem;
  }
}
.cid-vbcF3Wdz1u .mbr-section-btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wdz1u .mbr-section-btn {
    margin-top: 1.5rem;
  }
}
.cid-vbcF3Wdz1u .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vbcF3Wdz1u .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbcF3Wdz1u .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbcF3Wdz1u .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbcF3Wdz1u .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbcF3Wdz1u .mbr-text,
.cid-vbcF3Wdz1u .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbcF3WgeWn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WgeWn .section-border-item {
  background-color: #f65490;
}
.cid-vbcF3WgeWn .item:focus,
.cid-vbcF3WgeWn span:focus {
  outline: none;
}
.cid-vbcF3WgeWn .item {
  cursor: pointer;
}
.cid-vbcF3WgeWn .grid-container {
  grid-row-gap: 0;
}
.cid-vbcF3WgeWn .grid-container-1,
.cid-vbcF3WgeWn .grid-container-2,
.cid-vbcF3WgeWn .grid-container-3 {
  gap: 0;
}
.cid-vbcF3WgeWn .mbr-section-title {
  padding: 5rem 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-vbcF3WgeWn .mbr-section-title {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WgeWn .mbr-section-title {
    padding: 3rem 0;
  }
}
.cid-vbcF3WgeWn .content-head {
  max-width: 800px;
}
.cid-vbcF3WgeWn .container,
.cid-vbcF3WgeWn .container-fluid {
  overflow: hidden;
}
.cid-vbcF3WgeWn .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-vbcF3WgeWn .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbcF3WgeWn .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-vbcF3WgeWn .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WgeWn .grid-item img {
    min-width: 35vw;
    height: 160px;
  }
}
.cid-vbcF3WgeWn .grid-container-1,
.cid-vbcF3WgeWn .grid-container-2,
.cid-vbcF3WgeWn .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-vbcF3WgeWn .grid-container-1 {
  align-items: flex-end;
}
.cid-vbcF3WgeWn .grid-container-2 {
  align-items: flex-start;
}
.cid-vbcF3WkfkO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WkfkO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3WkfkO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3WkfkO .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3WkfkO .section-border-item_center {
    display: none;
  }
}
.cid-vbcF3WkfkO .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vbcF3WkfkO .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbcF3WkfkO .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbcF3WkfkO .card-wrap {
    width: 100%;
  }
}
.cid-vbcF3WkfkO .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-vbcF3WkfkO .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WkfkO .card-box {
    max-width: 100%;
  }
}
.cid-vbcF3WkfkO .card-title {
  color: #FFFFFF;
}
.cid-vbcF3WkfkO .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WkfkO .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WkfkO .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WkfkO .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbcF3WkfkO .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbcF3WkfkO .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbcF3WkfkO .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbcF3WkfkO .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbcF3WkfkO .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbcF3WkfkO .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WkfkO .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbcF3WkfkO .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-vbcF3WkfkO .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbcF3WkfkO .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbcF3WkfkO .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbcF3WkfkO .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbcF3WkfkO .mbr-text,
.cid-vbcF3WkfkO .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbcF3WhqRl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WhqRl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3WhqRl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3WhqRl .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3WhqRl .section-border-item_center {
    display: none;
  }
}
.cid-vbcF3WhqRl .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .cid-vbcF3WhqRl .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbcF3WhqRl .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbcF3WhqRl .card-wrap {
    width: 100%;
  }
}
.cid-vbcF3WhqRl .card-box {
  width: 100%;
  padding-right: 10vw;
}
@media (max-width: 991px) {
  .cid-vbcF3WhqRl .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WhqRl .card-box {
    max-width: 100%;
  }
}
.cid-vbcF3WhqRl .card-title {
  color: #FFFFFF;
}
.cid-vbcF3WhqRl .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WhqRl .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WhqRl .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WhqRl .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbcF3WhqRl .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbcF3WhqRl .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbcF3WhqRl .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbcF3WhqRl .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbcF3WhqRl .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbcF3WhqRl .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WhqRl .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbcF3WhqRl .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vbcF3WhqRl .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbcF3WhqRl .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbcF3WhqRl .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbcF3WhqRl .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbcF3WhqRl .mbr-text,
.cid-vbcF3WhqRl .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbcF3WfEi8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #00592f;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WfEi8 .item:focus,
.cid-vbcF3WfEi8 span:focus {
  outline: none;
}
.cid-vbcF3WfEi8 .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-vbcF3WfEi8 .content-head {
  max-width: 800px;
}
.cid-vbcF3WfEi8 .item {
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-vbcF3WfEi8 .item {
    min-height: 45px;
  }
}
.cid-vbcF3WfEi8 .section-border-item {
  background-color: #ffffff;
}
.cid-vbcF3WaQtc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WaQtc .section-border-item {
  background-color: #ffffff;
}
.cid-vbcF3WaQtc .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbcF3WaQtc .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WaQtc .main-container {
    padding: 3rem 0;
  }
}
.cid-vbcF3WaQtc .title-wrap {
  width: 100%;
}
.cid-vbcF3WaQtc .title-box {
  width: 100%;
}
.cid-vbcF3WaQtc .mbr-title {
  color: #FFF;
}
.cid-vbcF3WaQtc .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WaQtc .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WaQtc .card-row {
  display: flex;
  align-items: stretch;
  margin-bottom: -1px;
  flex-wrap: wrap;
  border-top: 1px solid #ffffff;
}
.cid-vbcF3WaQtc .item {
  position: relative;
  width: 33.33333333%;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-vbcF3WaQtc .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3WaQtc .item {
    width: 100%;
  }
}
.cid-vbcF3WaQtc .item:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .cid-vbcF3WaQtc .item:not(:nth-child(4n)):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ffffff;
  }
}
@media (min-width: 768px) {
  .cid-vbcF3WaQtc .item:not(:nth-child(2n)):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ffffff;
  }
}
@media (min-width: 767px) {
  .cid-vbcF3WaQtc .item:hover .item-img img {
    transform: translate3d(0px, 0px, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(2deg, 0deg);
  }
}
.cid-vbcF3WaQtc .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 0;
}
.cid-vbcF3WaQtc .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  overflow: hidden;
}
.cid-vbcF3WaQtc .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s all;
}
.cid-vbcF3WaQtc .card-text-wrap {
  width: 100%;
  padding: 2rem;
  border-top: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3WaQtc .card-text-wrap {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-vbcF3WaQtc .card-text-wrap {
    padding: 1.25rem;
  }
}
.cid-vbcF3WaQtc .card-price {
  color: #FFFFFF;
}
.cid-vbcF3WaQtc .card-title {
  color: #FFFFFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WaQtc .card-title {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WaQtc .card-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WaQtc .card-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WaQtc .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3WaQtc .mbr-section-btn {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3WaQtc .card-text,
.cid-vbcF3WaQtc .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbcF3Wjq0T {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff1af;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3Wjq0T .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3Wjq0T .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3Wjq0T .section-border-item {
  background-color: #000000;
}
.cid-vbcF3Wjq0T .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbcF3Wjq0T .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3Wjq0T .main-container {
    padding: 3rem 0;
  }
}
.cid-vbcF3Wjq0T .title-wrap {
  width: 100%;
}
.cid-vbcF3Wjq0T .title-box {
  width: 100%;
}
.cid-vbcF3Wjq0T .mbr-title {
  color: #000000;
}
.cid-vbcF3Wjq0T .mbr-text {
  color: #000000;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wjq0T .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3Wjq0T .card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-vbcF3Wjq0T .card-row {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }
}
.cid-vbcF3Wjq0T .item {
  position: relative;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-vbcF3Wjq0T .item {
    width: 100%;
  }
}
.cid-vbcF3Wjq0T .item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-vbcF3Wjq0T .item:after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-vbcF3Wjq0T .item:nth-child(3n):after {
  display: none;
}
.cid-vbcF3Wjq0T .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem 2rem;
}
.cid-vbcF3Wjq0T .logo-wrap {
  width: 100%;
  max-width: 150px;
  margin-right: auto;
  padding-bottom: 0.75rem;
}
.cid-vbcF3Wjq0T .logo-wrap img {
  width: 100%;
  object-fit: contain;
}
.cid-vbcF3Wjq0T .testimonial-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wjq0T .testimonial-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbcF3Wjq0T .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbcF3Wjq0T .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #000000;
  margin-right: 0.4rem;
}
.cid-vbcF3Wjq0T .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wjq0T .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbcF3Wjq0T .card-text {
  color: #000000;
}
.cid-vbcF3Wjq0T .card-name-wrap {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.cid-vbcF3Wjq0T .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 16px;
  border: 1px solid #f65490;
}
.cid-vbcF3Wjq0T .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vbcF3Wjq0T .logo-wrap img {
  filter: invert(1);
}
.cid-vbcF3Wjq0T .card-name-text-wrap {
  flex-grow: 1;
}
.cid-vbcF3Wjq0T .card-name {
  color: #000000;
}
.cid-vbcF3Wjq0T .card-prof {
  color: #000000;
}
.cid-vbiN53GcEd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbiN53GcEd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbiN53GcEd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbiN53GcEd .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vbiN53GcEd .container-fluid {
    padding: 0 15px;
  }
}
.cid-vbiN53GcEd .row {
  margin: 0;
}
.cid-vbiN53GcEd .row .card {
  padding: 0;
}
.cid-vbiN53GcEd .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vbiN53GcEd .image-wrapper {
    height: 350px;
    margin-bottom: 15px;
  }
}
.cid-vbiN53GcEd .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vbiN53GcEd .card-wrapper {
  padding: 70px 30px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vbiN53GcEd .card-wrapper {
    padding: 15px;
  }
}
.cid-vbiN53GcEd .card-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 3px 10px;
  background-color: #9891ff;
  margin-bottom: 15px;
}
.cid-vbiN53GcEd .card-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vbiN53GcEd .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vbiN53GcEd .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vbiN53GcEd .form-wrap .dragArea.row {
  position: relative;
  z-index: 1;
  margin: 0 -9.6px;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 5px;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px;
  border: 1px solid #001520 !important;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
  box-shadow: none;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-control:hover::placeholder,
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-control:focus::placeholder {
  color: #001520;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #001520;
  transition: all .3s ease;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group textarea {
  min-height: 155px;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #001520;
  border-color: #001520;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-vbiN53GcEd .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-vbiN53GcEd .mbr-label {
  color: #000000;
}
.cid-vbiN53GcEd .mbr-section-title {
  color: #000000;
}
.cid-vbiN53GcEd .mbr-text {
  color: #000000;
}
.cid-vbiN53GcEd label {
  color: #000000;
}
.cid-vbcF3Wnu0C {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3Wnu0C .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbcF3Wnu0C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbcF3Wnu0C .section-border-item {
  background-color: #ffffff;
}
.cid-vbcF3Wnu0C .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3Wnu0C .main-container {
    padding: 3rem 0;
  }
}
.cid-vbcF3Wnu0C .title-wrap {
  width: 100%;
}
.cid-vbcF3Wnu0C .title-box {
  width: 100%;
}
.cid-vbcF3Wnu0C .mbr-title {
  color: #FFFFFF;
}
.cid-vbcF3Wnu0C .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wnu0C .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbcF3Wnu0C .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .card-row {
    flex-wrap: wrap;
  }
}
.cid-vbcF3Wnu0C .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .card {
    width: 100%;
  }
}
.cid-vbcF3Wnu0C .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
@media (min-width: 576px) {
  .cid-vbcF3Wnu0C .card:hover .card-bg {
    opacity: 1;
  }
}
.cid-vbcF3Wnu0C .card:hover .iconfont-hover-wrapper {
  opacity: 1;
}
.cid-vbcF3Wnu0C .card:hover .iconfont-hover-wrapper .iconfont-hover-box {
  transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-vbcF3Wnu0C .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 24px 40px;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
    min-height: 188px;
  }
}
.cid-vbcF3Wnu0C .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(115deg, #0597ff, #fcdb42);
  opacity: 0;
  transition: 0.6s all;
}
.cid-vbcF3Wnu0C .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vbcF3Wnu0C .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 34px;
  color: #ffffff;
  margin-right: 0;
}
.cid-vbcF3Wnu0C .card-text-wrap {
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .card-text-wrap {
    width: 50%;
    flex-grow: 1;
    padding-right: 0.75rem;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3Wnu0C .card-text-wrap {
    margin-bottom: 12px;
  }
}
.cid-vbcF3Wnu0C .card-title {
  color: #FFFFFF;
}
.cid-vbcF3Wnu0C .card-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-vbcF3Wnu0C .card-text {
    margin-top: 1rem;
  }
}
.cid-vbcF3Wnu0C .iconfont-hover-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  transition: 0.6s all;
  margin-top: auto;
}
@media (min-width: 576px) {
  .cid-vbcF3Wnu0C .iconfont-hover-wrapper {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .iconfont-hover-wrapper {
    width: fit-content;
    max-width: 50%;
    flex-shrink: 0;
    margin-left: auto;
  }
}
.cid-vbcF3Wnu0C .iconfont-hover-wrapper .iconfont-hover-box {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (min-width: 576px) {
  .cid-vbcF3Wnu0C .iconfont-hover-wrapper .iconfont-hover-box {
    transform: translate3d(-2rem, 2rem, 0px) scale3d(0.8, 0.8, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-vbcF3Wnu0C .iconfont-hover-wrapper .mbr-iconfont {
  display: block;
  font-size: 114px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbcF3Wnu0C .iconfont-hover-wrapper .mbr-iconfont {
    font-size: 74px !important;
  }
}
.cid-vbcF3WndRF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WndRF .section-border-item {
  background-color: #ffffff;
}
.cid-vbcF3WndRF .mbr-text {
  color: #FFFFFF;
}
.cid-vbcF3WndRF .media-container-row .mbr-text {
  color: #FFFFFF;
}
.cid-vbcF3W61uu .navbar-dropdown {
  position: relative !important;
}
.cid-vbcF3W61uu .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbcF3W61uu .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vbcF3W61uu .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vbcF3W61uu .dropdown-item:hover,
.cid-vbcF3W61uu .dropdown-item:focus {
  background: #149506 !important;
  color: white !important;
}
.cid-vbcF3W61uu .dropdown-item:hover span {
  color: white;
}
.cid-vbcF3W61uu .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vbcF3W61uu .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vbcF3W61uu .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vbcF3W61uu .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbcF3W61uu .nav-link {
  position: relative;
}
.cid-vbcF3W61uu .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vbcF3W61uu .container {
    flex-wrap: nowrap;
  }
}
.cid-vbcF3W61uu .navbar-caption {
  color: #FFFFFF;
}
.cid-vbcF3W61uu .dropdown-menu,
.cid-vbcF3W61uu .navbar.opened {
  background: #000000 !important;
}
.cid-vbcF3W61uu .nav-item:focus,
.cid-vbcF3W61uu .nav-link:focus {
  outline: none;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vbcF3W61uu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbcF3W61uu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbcF3W61uu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbcF3W61uu .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  box-shadow: none;
  border: none;
}
.cid-vbcF3W61uu .navbar.opened {
  transition: all 0.3s;
}
.cid-vbcF3W61uu .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbcF3W61uu .navbar .navbar-logo img {
  width: auto;
}
.cid-vbcF3W61uu .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbcF3W61uu .navbar.collapsed {
  justify-content: center;
}
.cid-vbcF3W61uu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbcF3W61uu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbcF3W61uu .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vbcF3W61uu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbcF3W61uu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-vbcF3W61uu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbcF3W61uu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vbcF3W61uu .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vbcF3W61uu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbcF3W61uu .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbcF3W61uu .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vbcF3W61uu .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-vbcF3W61uu .navbar.navbar-short {
  min-height: auto;
}
.cid-vbcF3W61uu .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-vbcF3W61uu .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-vbcF3W61uu .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-vbcF3W61uu .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-vbcF3W61uu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbcF3W61uu .dropdown-item.active,
.cid-vbcF3W61uu .dropdown-item:active {
  background-color: transparent;
}
.cid-vbcF3W61uu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbcF3W61uu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbcF3W61uu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbcF3W61uu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vbcF3W61uu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbcF3W61uu .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbcF3W61uu ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbcF3W61uu .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-vbcF3W61uu .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-vbcF3W61uu .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vbcF3W61uu .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-vbcF3W61uu .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-vbcF3W61uu button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-vbcF3W61uu button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbcF3W61uu button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbcF3W61uu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbcF3W61uu nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbcF3W61uu .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vbcF3W61uu a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbcF3W61uu .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbcF3W61uu .navbar {
    height: 70px;
  }
  .cid-vbcF3W61uu .navbar.opened {
    height: auto;
  }
  .cid-vbcF3W61uu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbcF3W61uu .container-fluid {
  padding-right: 0;
}
.cid-vbcF3W61uu .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.35fr;
  gap: 2rem;
  align-items: center;
}
.cid-vbcF3W61uu .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-vbcF3W61uu .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-vbcF3W61uu .navbar-collapse .nav-link:hover {
  color: #1ec50d !important;
}
@media (max-width: 991px) {
  .cid-vbcF3W61uu .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-vbcF3W61uu .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-vbcF3W61uu .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-vbcF3W61uu .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-vbcF3W61uu .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-vbcF3W61uu .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-vbcF3W61uu .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-vbcF3W61uu .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-vbcF3W61uu .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-vbcF3W61uu .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-vbcF3W61uu .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-vbcF3W61uu .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-vbcF3W61uu .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-vbcF3W61uu .navbar-caption:hover {
  color: #ffffff;
}
.cid-vbcF3W61uu .nav-link,
.cid-vbcF3W61uu .dropdown-item {
  color: #FFFFFF;
}
.cid-vbf5nemH3D {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbf5nemH3D .section-border-item {
  background-color: #ffffff;
}
.cid-vbf5nemH3D .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbf5nemH3D .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbf5nemH3D .main-container {
    padding: 3rem 0;
  }
}
.cid-vbf5nemH3D .title-wrap {
  width: 100%;
}
.cid-vbf5nemH3D .title-box {
  width: 100%;
}
.cid-vbf5nemH3D .mbr-title {
  color: #FFFFFF;
}
.cid-vbf5nemH3D .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbf5nemH3D .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbf5nemH3D .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbf5nemH3D .card-row {
    flex-wrap: wrap;
  }
}
.cid-vbf5nemH3D .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vbf5nemH3D .card {
    width: 100%;
  }
}
.cid-vbf5nemH3D .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbf5nemH3D .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-vbf5nemH3D .card:nth-child(1) .card-bg {
  background-image: url("../../../assets/images/-dsc3108-2000x1333.jpg");
}
.cid-vbf5nemH3D .card:nth-child(2) .card-bg {
  background-image: url("../../../assets/images/-dsc2518-2000x1333.jpg");
}
.cid-vbf5nemH3D .card:nth-child(3) .card-bg {
  background-image: url("../../../assets/images/-dsc2724-2000x3000.jpg");
}
@media (min-width: 992px) {
  .cid-vbf5nemH3D .card:hover .card-bg {
    opacity: 0.3;
    transform: translate3d(0px, 0px, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  .cid-vbf5nemH3D .card:hover .card-title {
    color: #ffffff !important;
  }
  .cid-vbf5nemH3D .card:hover .card-text {
    color: #ffffff !important;
  }
  .cid-vbf5nemH3D .card:hover .card-label-container {
    background-color: #ffffff;
  }
  .cid-vbf5nemH3D .card:hover .card-label-container .card-label {
    color: #001520 !important;
  }
  .cid-vbf5nemH3D .card:hover .card-label-container .card-label a {
    color: #001520 !important;
  }
}
.cid-vbf5nemH3D .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 120px;
  padding: 2rem;
}
.cid-vbf5nemH3D .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(4deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbf5nemH3D .card-bg {
    opacity: 0.7;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-vbf5nemH3D .card-text-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-vbf5nemH3D .card-title {
  color: #FFFFFF;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbf5nemH3D .card-title {
    color: #090f10 !important;
  }
}
.cid-vbf5nemH3D .card-text {
  color: #FFFFFF;
  margin-top: 2rem;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbf5nemH3D .card-text {
    color: #090f10 !important;
  }
}
@media (max-width: 767px) {
  .cid-vbf5nemH3D .card-text {
    margin-top: 1.5rem;
  }
}
.cid-vbf5nemH3D .card-label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 70%;
  margin-top: auto;
  margin-bottom: -2rem;
  margin-left: -2rem;
  margin-right: auto;
  padding: 1rem 2rem;
  background-color: #001520;
  transition: 0.3s all;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.cid-vbf5nemH3D .card-label {
  color: #ffffff;
}
.cid-vbdzUeXHWl {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdzUeXHWl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdzUeXHWl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdzUeXHWl .section-border-item {
  background-color: #001520;
}
.cid-vbdzUeXHWl .card-title {
  color: #000000;
}
.cid-vbdzUeXHWl .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-vbdzUeXHWl .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-vbdzUeXHWl .card-text {
  color: #000000;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-vbdzUeXHWl .card-text {
    margin-top: 0.75rem;
  }
}
.cid-vbdGQX6zpK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdGQX6zpK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdGQX6zpK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdGQX6zpK .section-border-item {
  background-color: #000000;
}
.cid-vbdGQX6zpK .card-title {
  color: #000000;
}
.cid-vbdGQX6zpK .card-subtitle {
  color: #FFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-vbdGQX6zpK .card-subtitle {
    margin-top: 0.75rem;
  }
}
.cid-vbdGQX6zpK .card-text {
  color: #000000;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-vbdGQX6zpK .card-text {
    margin-top: 0.75rem;
  }
}
.cid-vbcF3WndRF {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbcF3WndRF .section-border-item {
  background-color: #ffffff;
}
.cid-vbcF3WndRF .mbr-text {
  color: #FFFFFF;
}
.cid-vbcF3WndRF .media-container-row .mbr-text {
  color: #FFFFFF;
}
.cid-vbdMVCjW29 .navbar-dropdown {
  position: relative !important;
}
.cid-vbdMVCjW29 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbdMVCjW29 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vbdMVCjW29 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vbdMVCjW29 .dropdown-item:hover,
.cid-vbdMVCjW29 .dropdown-item:focus {
  background: #149506 !important;
  color: white !important;
}
.cid-vbdMVCjW29 .dropdown-item:hover span {
  color: white;
}
.cid-vbdMVCjW29 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vbdMVCjW29 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vbdMVCjW29 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vbdMVCjW29 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbdMVCjW29 .nav-link {
  position: relative;
}
.cid-vbdMVCjW29 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vbdMVCjW29 .container {
    flex-wrap: nowrap;
  }
}
.cid-vbdMVCjW29 .navbar-caption {
  color: #FFFFFF;
}
.cid-vbdMVCjW29 .dropdown-menu,
.cid-vbdMVCjW29 .navbar.opened {
  background: #000000 !important;
}
.cid-vbdMVCjW29 .nav-item:focus,
.cid-vbdMVCjW29 .nav-link:focus {
  outline: none;
}
.cid-vbdMVCjW29 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbdMVCjW29 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbdMVCjW29 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vbdMVCjW29 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbdMVCjW29 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbdMVCjW29 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbdMVCjW29 .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  box-shadow: none;
  border: none;
}
.cid-vbdMVCjW29 .navbar.opened {
  transition: all 0.3s;
}
.cid-vbdMVCjW29 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbdMVCjW29 .navbar .navbar-logo img {
  width: auto;
}
.cid-vbdMVCjW29 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbdMVCjW29 .navbar.collapsed {
  justify-content: center;
}
.cid-vbdMVCjW29 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbdMVCjW29 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbdMVCjW29 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vbdMVCjW29 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbdMVCjW29 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbdMVCjW29 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vbdMVCjW29 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbdMVCjW29 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-vbdMVCjW29 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbdMVCjW29 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbdMVCjW29 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbdMVCjW29 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbdMVCjW29 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vbdMVCjW29 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vbdMVCjW29 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbdMVCjW29 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbdMVCjW29 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vbdMVCjW29 .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-vbdMVCjW29 .navbar.navbar-short {
  min-height: auto;
}
.cid-vbdMVCjW29 .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-vbdMVCjW29 .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-vbdMVCjW29 .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-vbdMVCjW29 .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-vbdMVCjW29 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbdMVCjW29 .dropdown-item.active,
.cid-vbdMVCjW29 .dropdown-item:active {
  background-color: transparent;
}
.cid-vbdMVCjW29 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbdMVCjW29 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbdMVCjW29 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbdMVCjW29 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vbdMVCjW29 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbdMVCjW29 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbdMVCjW29 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbdMVCjW29 .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-vbdMVCjW29 .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-vbdMVCjW29 .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vbdMVCjW29 .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-vbdMVCjW29 .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-vbdMVCjW29 button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-vbdMVCjW29 button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-vbdMVCjW29 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbdMVCjW29 button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-vbdMVCjW29 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-vbdMVCjW29 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbdMVCjW29 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbdMVCjW29 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-vbdMVCjW29 nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbdMVCjW29 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbdMVCjW29 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbdMVCjW29 nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbdMVCjW29 .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vbdMVCjW29 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbdMVCjW29 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbdMVCjW29 .navbar {
    height: 70px;
  }
  .cid-vbdMVCjW29 .navbar.opened {
    height: auto;
  }
  .cid-vbdMVCjW29 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbdMVCjW29 .container-fluid {
  padding-right: 0;
}
.cid-vbdMVCjW29 .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.35fr;
  gap: 2rem;
  align-items: center;
}
.cid-vbdMVCjW29 .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-vbdMVCjW29 .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-vbdMVCjW29 .navbar-collapse .nav-link:hover {
  color: #1ec50d !important;
}
@media (max-width: 991px) {
  .cid-vbdMVCjW29 .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-vbdMVCjW29 .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-vbdMVCjW29 .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-vbdMVCjW29 .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-vbdMVCjW29 .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-vbdMVCjW29 .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-vbdMVCjW29 .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-vbdMVCjW29 .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-vbdMVCjW29 .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-vbdMVCjW29 .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-vbdMVCjW29 .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-vbdMVCjW29 .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-vbdMVCjW29 .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-vbdMVCjW29 .navbar-caption:hover {
  color: #ffffff;
}
.cid-vbdMVCjW29 .nav-link,
.cid-vbdMVCjW29 .dropdown-item {
  color: #FFFFFF;
}
.cid-vbiLfRTALw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00592f;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbiLfRTALw .section-border-item {
  background-color: #ffffff;
}
.cid-vbiLfRTALw .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbiLfRTALw .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbiLfRTALw .main-container {
    padding: 3rem 0;
  }
}
.cid-vbiLfRTALw .title-wrap {
  width: 100%;
}
.cid-vbiLfRTALw .title-box {
  width: 100%;
}
.cid-vbiLfRTALw .mbr-title {
  color: #FFFFFF;
}
.cid-vbiLfRTALw .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbiLfRTALw .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbiLfRTALw .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbiLfRTALw .card-row {
    flex-wrap: wrap;
  }
}
.cid-vbiLfRTALw .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vbiLfRTALw .card {
    width: 100%;
  }
}
.cid-vbiLfRTALw .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbiLfRTALw .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-vbiLfRTALw .card:nth-child(1) .card-bg {
  background-image: url("../../../assets/images/-dsc3108-2000x1333.jpg");
}
.cid-vbiLfRTALw .card:nth-child(2) .card-bg {
  background-image: url("../../../assets/images/-dsc2518-2000x1333.jpg");
}
.cid-vbiLfRTALw .card:nth-child(3) .card-bg {
  background-image: url("../../../assets/images/-dsc2724-2-2000x3000.jpeg");
}
@media (min-width: 992px) {
  .cid-vbiLfRTALw .card:hover .card-bg {
    opacity: 0.3;
    transform: translate3d(0px, 0px, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  .cid-vbiLfRTALw .card:hover .card-title {
    color: #ffffff !important;
  }
  .cid-vbiLfRTALw .card:hover .card-text {
    color: #ffffff !important;
  }
  .cid-vbiLfRTALw .card:hover .card-label-container {
    background-color: #ffffff;
  }
  .cid-vbiLfRTALw .card:hover .card-label-container .card-label {
    color: #00592f !important;
  }
  .cid-vbiLfRTALw .card:hover .card-label-container .card-label a {
    color: #00592f !important;
  }
}
.cid-vbiLfRTALw .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 360px;
  padding: 2rem;
}
.cid-vbiLfRTALw .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(4deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbiLfRTALw .card-bg {
    opacity: 0.7;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-vbiLfRTALw .card-text-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-vbiLfRTALw .card-title {
  color: #ffffff;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbiLfRTALw .card-title {
    color: #ffffff !important;
  }
}
.cid-vbiLfRTALw .card-text {
  color: #ffffff;
  margin-top: 2rem;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbiLfRTALw .card-text {
    color: #ffffff !important;
  }
}
@media (max-width: 767px) {
  .cid-vbiLfRTALw .card-text {
    margin-top: 1.5rem;
  }
}
.cid-vbiLfRTALw .card-label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 70%;
  margin-top: auto;
  margin-bottom: -2rem;
  margin-left: -2rem;
  margin-right: auto;
  padding: 1rem 2rem;
  background-color: #00592f;
  transition: 0.3s all;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.cid-vbiLfRTALw .card-label {
  color: #ffffff;
}
.cid-vbdMVDxtfl {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/-dsc3325-2000x1333.jpg");
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMVDxtfl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMVDxtfl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMVDxtfl .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMVDxtfl .section-border-item_center {
    display: none;
  }
}
.cid-vbdMVDxtfl .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .cid-vbdMVDxtfl .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbdMVDxtfl .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbdMVDxtfl .card-wrap {
    width: 100%;
  }
}
.cid-vbdMVDxtfl .card-box {
  width: 100%;
  padding-right: 10vw;
}
@media (max-width: 991px) {
  .cid-vbdMVDxtfl .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdMVDxtfl .card-box {
    max-width: 100%;
  }
}
.cid-vbdMVDxtfl .card-title {
  color: #fff1ae;
}
.cid-vbdMVDxtfl .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMVDxtfl .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMVDxtfl .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMVDxtfl .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbdMVDxtfl .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbdMVDxtfl .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbdMVDxtfl .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbdMVDxtfl .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbdMVDxtfl .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbdMVDxtfl .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMVDxtfl .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbdMVDxtfl .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vbdMVDxtfl .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbdMVDxtfl .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbdMVDxtfl .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbdMVDxtfl .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbdMVDxtfl .mbr-text,
.cid-vbdMVDxtfl .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbdMVEe8bq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMVEe8bq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMVEe8bq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMVEe8bq .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMVEe8bq .section-border-item_center {
    display: none;
  }
}
.cid-vbdMVEe8bq .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vbdMVEe8bq .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbdMVEe8bq .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbdMVEe8bq .card-wrap {
    width: 100%;
  }
}
.cid-vbdMVEe8bq .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-vbdMVEe8bq .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdMVEe8bq .card-box {
    max-width: 100%;
  }
}
.cid-vbdMVEe8bq .card-title {
  color: #000000;
}
.cid-vbdMVEe8bq .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMVEe8bq .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMVEe8bq .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMVEe8bq .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbdMVEe8bq .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbdMVEe8bq .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbdMVEe8bq .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbdMVEe8bq .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbdMVEe8bq .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbdMVEe8bq .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMVEe8bq .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbdMVEe8bq .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-vbdMVEe8bq .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbdMVEe8bq .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbdMVEe8bq .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbdMVEe8bq .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbdMVEe8bq .mbr-text,
.cid-vbdMVEe8bq .mbr-section-btn {
  color: #000000;
}
.cid-vbdMVEWLPd {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbdMVEWLPd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMVEWLPd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMVEWLPd .content-wrap {
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .cid-vbdMVEWLPd .content-wrap {
    margin-bottom: 30px;
  }
}
.cid-vbdMVEWLPd .content-wrap .card {
  justify-content: flex-end;
}
.cid-vbdMVEWLPd .content-wrap .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vbdMVEWLPd .content-wrap .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-vbdMVEWLPd .content-wrap .main-btn {
  margin-bottom: -9.6px;
}
.cid-vbdMVEWLPd .items-wrapper .items-wrap {
  display: grid;
  flex: 1 0 0;
  gap: 20px;
  grid-auto-rows: minmax(0px, 1fr);
  grid-template-columns: repeat(4, minmax(50px, 1fr));
  grid-template-rows: repeat(2, minmax(0px, 1fr));
  height: 1px;
  justify-content: center;
  min-height: 520px;
  overflow: visible;
  padding: 0px;
  position: relative;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vbdMVEWLPd .items-wrapper .items-wrap {
    display: block;
    min-height: auto;
    height: auto;
  }
}
.cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap {
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap {
    margin-top: 20px;
  }
  .cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap:first-child {
    margin-top: 0;
  }
}
.cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  transition: all .5s ease;
}
@media (max-width: 992px) {
  .cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap img {
    height: 300px;
  }
}
.cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap img:hover,
.cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap img:focus {
  transform: scale(1.08);
}
.cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap_2 {
  grid-column: span 2;
}
.cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap_3 {
  grid-column: 4;
  grid-row: 1 / span 2;
}
.cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap_3 img {
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vbdMVEWLPd .items-wrapper .items-wrap .image-wrap_3 img {
    height: 300px;
  }
}
.cid-vbdMVEWLPd .mbr-section-title {
  color: #3a353e;
}
.cid-vbdMVEWLPd .mbr-section-btn {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-vbdMVEWLPd .mbr-section-btn {
    text-align: left;
  }
}
.cid-vbdMVFzQjH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fff1ae;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMVFzQjH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMVFzQjH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMVFzQjH .section-border-item {
  background-color: #ffffff;
}
.cid-vbdMVFzQjH .card-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.cid-vbdMVFzQjH .testimonial-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .testimonial-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbdMVFzQjH .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbdMVFzQjH .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #000000;
  margin: 0 0.2rem;
}
.cid-vbdMVFzQjH .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbdMVFzQjH .card-text {
  color: #000000;
}
.cid-vbdMVFzQjH .card-bottom-wrap {
  display: flex;
  align-items: stretch;
  justify-content: center;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .card-bottom-wrap {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.cid-vbdMVFzQjH .card-name-wrap {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: auto;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .card-name-wrap {
    flex-direction: column;
    align-items: center;
    padding-right: 0;
    border-right: none;
  }
}
.cid-vbdMVFzQjH .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 20px;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .card-name-image-wrap {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.cid-vbdMVFzQjH .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vbdMVFzQjH .card-name-text-wrap {
  flex-grow: 1;
}
.cid-vbdMVFzQjH .card-name {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .card-name {
    text-align: center;
  }
}
.cid-vbdMVFzQjH .card-prof {
  color: #000000;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .card-prof {
    text-align: center;
  }
}
.cid-vbdMVFzQjH .logo-wrap {
  width: 100%;
  max-width: 108px;
  margin-left: 20px;
}
@media (max-width: 767px) {
  .cid-vbdMVFzQjH .logo-wrap {
    margin-top: 16px;
    margin-left: 0;
  }
}
.cid-vbdMVFzQjH .logo-wrap img {
  width: 100%;
  object-fit: contain;
}
.cid-vbdMVFzQjH .logo-wrap img {
  filter: invert(1);
}
.cid-vbiJWUYp7e {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbiJWUYp7e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbiJWUYp7e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbiJWUYp7e .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vbiJWUYp7e .container-fluid {
    padding: 0 15px;
  }
}
.cid-vbiJWUYp7e .row {
  margin: 0;
}
.cid-vbiJWUYp7e .row .card {
  padding: 0;
}
.cid-vbiJWUYp7e .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vbiJWUYp7e .image-wrapper {
    height: 350px;
    margin-bottom: 15px;
  }
}
.cid-vbiJWUYp7e .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vbiJWUYp7e .card-wrapper {
  padding: 70px 30px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vbiJWUYp7e .card-wrapper {
    padding: 15px;
  }
}
.cid-vbiJWUYp7e .card-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 3px 10px;
  background-color: #9891ff;
  margin-bottom: 15px;
}
.cid-vbiJWUYp7e .card-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vbiJWUYp7e .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vbiJWUYp7e .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row {
  position: relative;
  z-index: 1;
  margin: 0 -9.6px;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 5px;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px;
  border: 1px solid #001520 !important;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
  box-shadow: none;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-control:hover::placeholder,
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-control:focus::placeholder {
  color: #001520;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #001520;
  transition: all .3s ease;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group textarea {
  min-height: 155px;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #001520;
  border-color: #001520;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-vbiJWUYp7e .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-vbiJWUYp7e .mbr-label {
  color: #000000;
}
.cid-vbiJWUYp7e .mbr-section-title {
  color: #000000;
}
.cid-vbiJWUYp7e .mbr-text {
  color: #000000;
}
.cid-vbiJWUYp7e label {
  color: #000000;
}
.cid-vbdMVOKC8m {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMVOKC8m .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMVOKC8m .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMVOKC8m .section-border-item {
  background-color: #ffffff;
}
.cid-vbdMVOKC8m .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbdMVOKC8m .main-container {
    padding: 3rem 0;
  }
}
.cid-vbdMVOKC8m .title-wrap {
  width: 100%;
}
.cid-vbdMVOKC8m .title-box {
  width: 100%;
}
.cid-vbdMVOKC8m .mbr-title {
  color: #FFFFFF;
}
.cid-vbdMVOKC8m .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMVOKC8m .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMVOKC8m .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .card-row {
    flex-wrap: wrap;
  }
}
.cid-vbdMVOKC8m .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .card {
    width: 100%;
  }
}
.cid-vbdMVOKC8m .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
@media (min-width: 576px) {
  .cid-vbdMVOKC8m .card:hover .card-bg {
    opacity: 1;
  }
}
.cid-vbdMVOKC8m .card:hover .iconfont-hover-wrapper {
  opacity: 1;
}
.cid-vbdMVOKC8m .card:hover .iconfont-hover-wrapper .iconfont-hover-box {
  transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-vbdMVOKC8m .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 24px 40px;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
    min-height: 188px;
  }
}
.cid-vbdMVOKC8m .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(115deg, #0597ff, #fcdb42);
  opacity: 0;
  transition: 0.6s all;
}
.cid-vbdMVOKC8m .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vbdMVOKC8m .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 34px;
  color: #ffffff;
  margin-right: 0;
}
.cid-vbdMVOKC8m .card-text-wrap {
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .card-text-wrap {
    width: 50%;
    flex-grow: 1;
    padding-right: 0.75rem;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-vbdMVOKC8m .card-text-wrap {
    margin-bottom: 12px;
  }
}
.cid-vbdMVOKC8m .card-title {
  color: #FFFFFF;
}
.cid-vbdMVOKC8m .card-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-vbdMVOKC8m .card-text {
    margin-top: 1rem;
  }
}
.cid-vbdMVOKC8m .iconfont-hover-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  transition: 0.6s all;
  margin-top: auto;
}
@media (min-width: 576px) {
  .cid-vbdMVOKC8m .iconfont-hover-wrapper {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .iconfont-hover-wrapper {
    width: fit-content;
    max-width: 50%;
    flex-shrink: 0;
    margin-left: auto;
  }
}
.cid-vbdMVOKC8m .iconfont-hover-wrapper .iconfont-hover-box {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (min-width: 576px) {
  .cid-vbdMVOKC8m .iconfont-hover-wrapper .iconfont-hover-box {
    transform: translate3d(-2rem, 2rem, 0px) scale3d(0.8, 0.8, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-vbdMVOKC8m .iconfont-hover-wrapper .mbr-iconfont {
  display: block;
  font-size: 114px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMVOKC8m .iconfont-hover-wrapper .mbr-iconfont {
    font-size: 74px !important;
  }
}
.cid-vbdMVPy5E6 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMVPy5E6 .section-border-item {
  background-color: #ffffff;
}
.cid-vbdMVPy5E6 .mbr-text {
  color: #FFFFFF;
}
.cid-vbdMVPy5E6 .media-container-row .mbr-text {
  color: #FFFFFF;
}
.cid-vbdMSrN3jE .navbar-dropdown {
  position: relative !important;
}
.cid-vbdMSrN3jE .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbdMSrN3jE .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-vbdMSrN3jE .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-vbdMSrN3jE .dropdown-item:hover,
.cid-vbdMSrN3jE .dropdown-item:focus {
  background: #149506 !important;
  color: white !important;
}
.cid-vbdMSrN3jE .dropdown-item:hover span {
  color: white;
}
.cid-vbdMSrN3jE .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-vbdMSrN3jE .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-vbdMSrN3jE .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-vbdMSrN3jE .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-vbdMSrN3jE .nav-link {
  position: relative;
}
.cid-vbdMSrN3jE .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-vbdMSrN3jE .container {
    flex-wrap: nowrap;
  }
}
.cid-vbdMSrN3jE .navbar-caption {
  color: #FFFFFF;
}
.cid-vbdMSrN3jE .dropdown-menu,
.cid-vbdMSrN3jE .navbar.opened {
  background: #000000 !important;
}
.cid-vbdMSrN3jE .nav-item:focus,
.cid-vbdMSrN3jE .nav-link:focus {
  outline: none;
}
.cid-vbdMSrN3jE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-vbdMSrN3jE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vbdMSrN3jE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-vbdMSrN3jE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-vbdMSrN3jE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vbdMSrN3jE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vbdMSrN3jE .navbar {
  min-height: 64px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #000000;
  padding: 0 !important;
  box-shadow: none;
  border: none;
}
.cid-vbdMSrN3jE .navbar.opened {
  transition: all 0.3s;
}
.cid-vbdMSrN3jE .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-vbdMSrN3jE .navbar .navbar-logo img {
  width: auto;
}
.cid-vbdMSrN3jE .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-vbdMSrN3jE .navbar.collapsed {
  justify-content: center;
}
.cid-vbdMSrN3jE .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vbdMSrN3jE .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-vbdMSrN3jE .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-vbdMSrN3jE .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vbdMSrN3jE .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vbdMSrN3jE .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-vbdMSrN3jE .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vbdMSrN3jE .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-vbdMSrN3jE .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vbdMSrN3jE .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vbdMSrN3jE .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vbdMSrN3jE .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vbdMSrN3jE .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-vbdMSrN3jE .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-vbdMSrN3jE .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vbdMSrN3jE .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vbdMSrN3jE .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vbdMSrN3jE .navbar .navbar-toggler {
    flex-basis: auto;
  }
}
.cid-vbdMSrN3jE .navbar.navbar-short {
  min-height: auto;
}
.cid-vbdMSrN3jE .navbar.navbar-short .navbar-brand {
  min-height: 64px;
  padding: 0;
}
.cid-vbdMSrN3jE .navbar.navbar-short .navbar-logo {
  margin-right: 0.8rem;
}
.cid-vbdMSrN3jE .navbar-brand {
  min-height: 64px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 8px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  margin-bottom: auto;
}
.cid-vbdMSrN3jE .navbar-brand .navbar-caption {
  line-height: inherit !important;
  font-weight: 500;
}
.cid-vbdMSrN3jE .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vbdMSrN3jE .dropdown-item.active,
.cid-vbdMSrN3jE .dropdown-item:active {
  background-color: transparent;
}
.cid-vbdMSrN3jE .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vbdMSrN3jE .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vbdMSrN3jE .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vbdMSrN3jE .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #000000;
}
.cid-vbdMSrN3jE .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vbdMSrN3jE .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vbdMSrN3jE ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-vbdMSrN3jE .navbar-buttons {
  text-align: center;
  min-width: 170px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  grid-column-start: 3;
  grid-column-end: 4;
  margin-top: auto;
}
.cid-vbdMSrN3jE .navbar-buttons .btn {
  margin: 0;
  padding: 1.25rem 2rem;
}
.cid-vbdMSrN3jE .navbar-buttons .btn .mbr-iconfont {
  transform: rotate(0deg);
}
.cid-vbdMSrN3jE .navbar-buttons .btn:hover {
  transform: translate(0, 0);
  box-shadow: none !important;
}
.cid-vbdMSrN3jE .navbar-buttons .btn:hover .mbr-iconfont {
  transform: rotate(0);
}
.cid-vbdMSrN3jE button.navbar-toggler {
  grid-column-start: 3;
  grid-column-end: 4;
  outline: none;
  width: 67px;
  height: 67px;
  margin-top: auto;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  align-self: center;
}
@media (max-width: 767px) {
  .cid-vbdMSrN3jE button.navbar-toggler {
    width: 64px;
    height: 64px;
  }
}
.cid-vbdMSrN3jE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 19px;
  width: 29px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cid-vbdMSrN3jE button.navbar-toggler .hamburger span {
    right: 18px;
    width: 28px;
  }
}
.cid-vbdMSrN3jE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 23px;
  transition: all 0.2s;
}
.cid-vbdMSrN3jE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbdMSrN3jE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 34px;
  transform: translateY(-50%);
  transition: all 0.2s;
}
.cid-vbdMSrN3jE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 42px;
  transition: all 0.2s;
}
.cid-vbdMSrN3jE nav.opened .hamburger span:nth-child(1) {
  top: 23px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbdMSrN3jE nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbdMSrN3jE nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translateY(-50%);
  transition: all 0.25s;
}
.cid-vbdMSrN3jE nav.opened .hamburger span:nth-child(4) {
  top: 42px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-vbdMSrN3jE .navbar-dropdown {
  padding: 0 1rem;
}
.cid-vbdMSrN3jE a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbdMSrN3jE .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vbdMSrN3jE .navbar {
    height: 70px;
  }
  .cid-vbdMSrN3jE .navbar.opened {
    height: auto;
  }
  .cid-vbdMSrN3jE .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vbdMSrN3jE .container-fluid {
  padding-right: 0;
}
.cid-vbdMSrN3jE .main-container {
  flex-grow: 1;
  display: grid;
  grid-template-columns: 0.35fr 1fr 0.35fr;
  gap: 2rem;
  align-items: center;
}
.cid-vbdMSrN3jE .navbar-collapse {
  grid-column-start: 2;
  grid-column-end: 3;
  grid-row-start: 1;
  grid-row-end: 2;
  padding-right: 5vw;
}
.cid-vbdMSrN3jE .navbar-collapse .navbar-nav {
  width: 100%;
  justify-content: center;
}
.cid-vbdMSrN3jE .navbar-collapse .nav-link:hover {
  color: #1ec50d !important;
}
@media (max-width: 991px) {
  .cid-vbdMSrN3jE .main-container {
    flex-grow: 1;
    display: grid;
    grid-template-columns: 1fr 1fr min-content;
    gap: 2rem;
    column-gap: 0;
    align-items: center;
  }
  .cid-vbdMSrN3jE .navbar-brand {
    grid-column-start: 1;
    grid-column-end: 2;
    padding-right: 0 !important;
  }
  .cid-vbdMSrN3jE .navbar-buttons {
    grid-column-start: 2;
    grid-column-end: 3;
  }
  .cid-vbdMSrN3jE .navbar-collapse {
    grid-column-start: 1;
    grid-column-end: -1;
    grid-row-start: 2;
    grid-row-end: 3;
  }
  .cid-vbdMSrN3jE .navbar-collapse .navbar-nav {
    padding-bottom: 3rem;
  }
  .cid-vbdMSrN3jE .navbar-collapse .navbar-nav .dropdown-menu .dropdown-item {
    text-align: start !important;
  }
  .cid-vbdMSrN3jE .navbar-collapse .nav-item {
    margin: 0 !important;
  }
  .cid-vbdMSrN3jE .navbar-collapse .nav-link {
    justify-content: flex-start !important;
    margin: 0 !important;
    padding: 1.25rem 0 !important;
    font-size: 64px !important;
    line-height: 1 !important;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSrN3jE .navbar-collapse .nav-link {
    font-size: 48px !important;
  }
}
@media (max-width: 575px) {
  .cid-vbdMSrN3jE .main-container {
    grid-template-columns: min-content 1fr min-content;
  }
  .cid-vbdMSrN3jE .navbar-brand .navbar-caption-wrap {
    display: none;
  }
  .cid-vbdMSrN3jE .navbar-buttons .btn {
    margin: 0;
    padding: 1.25rem 1rem;
    width: auto;
    min-height: 64px;
  }
  .cid-vbdMSrN3jE .navbar-collapse .nav-link {
    font-size: 32px !important;
    padding: 1rem 0 !important;
  }
}
.cid-vbdMSrN3jE .navbar-caption:hover {
  color: #ffffff;
}
.cid-vbdMSrN3jE .nav-link,
.cid-vbdMSrN3jE .dropdown-item {
  color: #FFFFFF;
}
.cid-vbiM1fhlOy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #00592f;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbiM1fhlOy .section-border-item {
  background-color: #ffffff;
}
.cid-vbiM1fhlOy .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbiM1fhlOy .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbiM1fhlOy .main-container {
    padding: 3rem 0;
  }
}
.cid-vbiM1fhlOy .title-wrap {
  width: 100%;
}
.cid-vbiM1fhlOy .title-box {
  width: 100%;
}
.cid-vbiM1fhlOy .mbr-title {
  color: #FFFFFF;
}
.cid-vbiM1fhlOy .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbiM1fhlOy .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbiM1fhlOy .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbiM1fhlOy .card-row {
    flex-wrap: wrap;
  }
}
.cid-vbiM1fhlOy .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 991px) {
  .cid-vbiM1fhlOy .card {
    width: 100%;
  }
}
.cid-vbiM1fhlOy .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbiM1fhlOy .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-vbiM1fhlOy .card:nth-child(1) .card-bg {
  background-image: url("../../../assets/images/-dsc3108-2000x1333.jpg");
}
.cid-vbiM1fhlOy .card:nth-child(2) .card-bg {
  background-image: url("../../../assets/images/-dsc2518-2000x1333.jpg");
}
.cid-vbiM1fhlOy .card:nth-child(3) .card-bg {
  background-image: url("../../../assets/images/-dsc2724-2-2000x3000.jpeg");
}
@media (min-width: 992px) {
  .cid-vbiM1fhlOy .card:hover .card-bg {
    opacity: 0.3;
    transform: translate3d(0px, 0px, 0px) scale3d(1.2, 1.2, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
  .cid-vbiM1fhlOy .card:hover .card-title {
    color: #ffffff !important;
  }
  .cid-vbiM1fhlOy .card:hover .card-text {
    color: #ffffff !important;
  }
  .cid-vbiM1fhlOy .card:hover .card-label-container {
    background-color: #ffffff;
  }
  .cid-vbiM1fhlOy .card:hover .card-label-container .card-label {
    color: #00592f !important;
  }
  .cid-vbiM1fhlOy .card:hover .card-label-container .card-label a {
    color: #00592f !important;
  }
}
.cid-vbiM1fhlOy .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  min-height: 360px;
  padding: 2rem;
}
.cid-vbiM1fhlOy .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(4deg, 0deg);
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbiM1fhlOy .card-bg {
    opacity: 0.7;
    transform: translate3d(0px, 0px, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-vbiM1fhlOy .card-text-wrap {
  width: 100%;
  margin-bottom: 2rem;
}
.cid-vbiM1fhlOy .card-title {
  color: #ffffff;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbiM1fhlOy .card-title {
    color: #ffffff !important;
  }
}
.cid-vbiM1fhlOy .card-text {
  color: #ffffff;
  margin-top: 2rem;
  transition: 0.6s all;
}
@media (max-width: 991px) {
  .cid-vbiM1fhlOy .card-text {
    color: #ffffff !important;
  }
}
@media (max-width: 767px) {
  .cid-vbiM1fhlOy .card-text {
    margin-top: 1.5rem;
  }
}
.cid-vbiM1fhlOy .card-label-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 70%;
  margin-top: auto;
  margin-bottom: -2rem;
  margin-left: -2rem;
  margin-right: auto;
  padding: 1rem 2rem;
  background-color: #00592f;
  transition: 0.3s all;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
}
.cid-vbiM1fhlOy .card-label {
  color: #ffffff;
}
.cid-vbdMSvRHs4 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSvRHs4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMSvRHs4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMSvRHs4 .section-border-item {
  background-color: #000000;
}
.cid-vbdMSvRHs4 .mbr-section-title {
  color: #000000;
}
.cid-vbdMSvRHs4 .mbr-section-subtitle {
  color: #149506;
  background-image: linear-gradient(170deg, currentColor, #00592f) !important;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cid-vbdMSvRHs4 .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSvRHs4 .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSwKahL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSwKahL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMSwKahL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMSwKahL .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMSwKahL .section-border-item_center {
    display: none;
  }
}
.cid-vbdMSwKahL .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .cid-vbdMSwKahL .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbdMSwKahL .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbdMSwKahL .card-wrap {
    width: 100%;
  }
}
.cid-vbdMSwKahL .card-box {
  width: 100%;
  padding-right: 10vw;
}
@media (max-width: 991px) {
  .cid-vbdMSwKahL .card-box {
    max-width: 32rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSwKahL .card-box {
    max-width: 100%;
  }
}
.cid-vbdMSwKahL .card-title {
  color: #FFFFFF;
}
.cid-vbdMSwKahL .card-subtitle {
  color: #FFFFFF;
}
.cid-vbdMSwKahL .mbr-text {
  color: #FFF;
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMSwKahL .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSwKahL .counter-container {
  margin-top: 2rem;
}
@media (max-width: 991px) {
  .cid-vbdMSwKahL .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbdMSwKahL .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}
@media (max-width: 767px) {
  .cid-vbdMSwKahL .list {
    grid-template-columns: 1fr;
  }
}
.cid-vbdMSwKahL .list-title {
  color: #FFFFFF;
}
.cid-vbdMSwKahL .list-text {
  color: #FFFFFF;
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .cid-vbdMSwKahL .list-text {
    margin-top: 0.75rem;
  }
}
.cid-vbdMSwKahL .mbr-section-btn {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMSwKahL .mbr-section-btn {
    margin-top: 1.5rem;
  }
}
.cid-vbdMSwKahL .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vbdMSwKahL .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbdMSwKahL .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbdMSwKahL .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbdMSwKahL .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbdMSwKahL .mbr-text,
.cid-vbdMSwKahL .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbdMSxAWfq {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSxAWfq .section-border-item {
  background-color: #f65490;
}
.cid-vbdMSxAWfq .item:focus,
.cid-vbdMSxAWfq span:focus {
  outline: none;
}
.cid-vbdMSxAWfq .item {
  cursor: pointer;
}
.cid-vbdMSxAWfq .grid-container {
  grid-row-gap: 0;
}
.cid-vbdMSxAWfq .grid-container-1,
.cid-vbdMSxAWfq .grid-container-2,
.cid-vbdMSxAWfq .grid-container-3 {
  gap: 0;
}
.cid-vbdMSxAWfq .mbr-section-title {
  padding: 5rem 0;
  margin-bottom: 0;
  color: #ffffff;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-vbdMSxAWfq .mbr-section-title {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSxAWfq .mbr-section-title {
    padding: 3rem 0;
  }
}
.cid-vbdMSxAWfq .content-head {
  max-width: 800px;
}
.cid-vbdMSxAWfq .container,
.cid-vbdMSxAWfq .container-fluid {
  overflow: hidden;
}
.cid-vbdMSxAWfq .grid-container {
  display: grid;
  transform: translate3d(-3rem, 0, 0);
  width: 115vw;
  grid-column-gap: 1rem;
}
.cid-vbdMSxAWfq .grid-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vbdMSxAWfq .grid-item img {
  min-width: 30vw;
  max-width: 100%;
  height: 480px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .cid-vbdMSxAWfq .grid-item img {
    height: 350px;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSxAWfq .grid-item img {
    min-width: 35vw;
    height: 160px;
  }
}
.cid-vbdMSxAWfq .grid-container-1,
.cid-vbdMSxAWfq .grid-container-2,
.cid-vbdMSxAWfq .grid-container-3 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.cid-vbdMSxAWfq .grid-container-1 {
  align-items: flex-end;
}
.cid-vbdMSxAWfq .grid-container-2 {
  align-items: flex-start;
}
.cid-vbdMSyc6Pv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSyc6Pv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMSyc6Pv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMSyc6Pv .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMSyc6Pv .section-border-item_center {
    display: none;
  }
}
.cid-vbdMSyc6Pv .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vbdMSyc6Pv .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbdMSyc6Pv .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbdMSyc6Pv .card-wrap {
    width: 100%;
  }
}
.cid-vbdMSyc6Pv .card-box {
  width: 100%;
  padding-right: 10vw;
  padding-right: 0;
  padding-left: 10vw;
}
@media (max-width: 991px) {
  .cid-vbdMSyc6Pv .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSyc6Pv .card-box {
    max-width: 100%;
  }
}
.cid-vbdMSyc6Pv .card-title {
  color: #FFFFFF;
}
.cid-vbdMSyc6Pv .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSyc6Pv .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSyc6Pv .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMSyc6Pv .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbdMSyc6Pv .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbdMSyc6Pv .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbdMSyc6Pv .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbdMSyc6Pv .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbdMSyc6Pv .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbdMSyc6Pv .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSyc6Pv .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbdMSyc6Pv .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
  padding-right: 2.5vw;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-vbdMSyc6Pv .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbdMSyc6Pv .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbdMSyc6Pv .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbdMSyc6Pv .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbdMSyc6Pv .mbr-text,
.cid-vbdMSyc6Pv .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbdMSyYFO9 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSyYFO9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMSyYFO9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMSyYFO9 .section-border-item {
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMSyYFO9 .section-border-item_center {
    display: none;
  }
}
.cid-vbdMSyYFO9 .main-container {
  display: flex;
  align-items: center;
  padding: 3rem 0;
}
@media (max-width: 991px) {
  .cid-vbdMSyYFO9 .main-container {
    flex-wrap: wrap;
  }
}
.cid-vbdMSyYFO9 .card-wrap {
  width: 50%;
}
@media (max-width: 991px) {
  .cid-vbdMSyYFO9 .card-wrap {
    width: 100%;
  }
}
.cid-vbdMSyYFO9 .card-box {
  width: 100%;
  padding-right: 10vw;
}
@media (max-width: 991px) {
  .cid-vbdMSyYFO9 .card-box {
    max-width: 42rem;
    margin-right: auto;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSyYFO9 .card-box {
    max-width: 100%;
  }
}
.cid-vbdMSyYFO9 .card-title {
  color: #FFFFFF;
}
.cid-vbdMSyYFO9 .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSyYFO9 .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSyYFO9 .counter-container {
  margin-top: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMSyYFO9 .counter-container {
    margin-top: 1.5rem;
  }
}
.cid-vbdMSyYFO9 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 8px 0;
}
.cid-vbdMSyYFO9 .list-item {
  display: flex;
  align-items: center;
  width: 100%;
}
.cid-vbdMSyYFO9 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  margin-right: 1rem;
  border-radius: 50%;
  background-color: #fcdb42;
}
.cid-vbdMSyYFO9 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 12px;
  color: #090f10;
}
.cid-vbdMSyYFO9 .list-text {
  color: #FFF;
  flex-grow: 1;
}
.cid-vbdMSyYFO9 .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSyYFO9 .mbr-section-btn {
    margin-top: 1rem;
  }
}
.cid-vbdMSyYFO9 .image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  padding-left: 2.5rem;
}
@media (max-width: 991px) {
  .cid-vbdMSyYFO9 .image-wrapper {
    position: relative;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3rem;
  }
  .cid-vbdMSyYFO9 .image-wrapper:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 1px;
    background-color: #ffffff;
  }
}
.cid-vbdMSyYFO9 .img-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 38rem;
}
.cid-vbdMSyYFO9 .img-box img {
  width: 100%;
  object-fit: cover;
}
.cid-vbdMSyYFO9 .mbr-text,
.cid-vbdMSyYFO9 .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbdMSzHO9h {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #00592f;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSzHO9h .item:focus,
.cid-vbdMSzHO9h span:focus {
  outline: none;
}
.cid-vbdMSzHO9h .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-vbdMSzHO9h .content-head {
  max-width: 800px;
}
.cid-vbdMSzHO9h .item {
  color: #ffffff;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-vbdMSzHO9h .item {
    min-height: 45px;
  }
}
.cid-vbdMSzHO9h .section-border-item {
  background-color: #ffffff;
}
.cid-vbdMSApiGT {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSApiGT .section-border-item {
  background-color: #ffffff;
}
.cid-vbdMSApiGT .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbdMSApiGT .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSApiGT .main-container {
    padding: 3rem 0;
  }
}
.cid-vbdMSApiGT .title-wrap {
  width: 100%;
}
.cid-vbdMSApiGT .title-box {
  width: 100%;
}
.cid-vbdMSApiGT .mbr-title {
  color: #FFF;
}
.cid-vbdMSApiGT .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSApiGT .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSApiGT .card-row {
  display: flex;
  align-items: stretch;
  margin-bottom: -1px;
  flex-wrap: wrap;
  border-top: 1px solid #ffffff;
}
.cid-vbdMSApiGT .item {
  position: relative;
  width: 33.33333333%;
  border-radius: 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .cid-vbdMSApiGT .item {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSApiGT .item {
    width: 100%;
  }
}
.cid-vbdMSApiGT .item:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
@media (min-width: 1200px) {
  .cid-vbdMSApiGT .item:not(:nth-child(4n)):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ffffff;
  }
}
@media (min-width: 768px) {
  .cid-vbdMSApiGT .item:not(:nth-child(2n)):after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-color: #ffffff;
  }
}
@media (min-width: 767px) {
  .cid-vbdMSApiGT .item:hover .item-img img {
    transform: translate3d(0px, 0px, 0px) scale3d(1.1, 1.1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(2deg, 0deg);
  }
}
.cid-vbdMSApiGT .item-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 0;
}
.cid-vbdMSApiGT .item-img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 360px;
  overflow: hidden;
}
.cid-vbdMSApiGT .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s all;
}
.cid-vbdMSApiGT .card-text-wrap {
  width: 100%;
  padding: 2rem;
  border-top: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMSApiGT .card-text-wrap {
    padding: 1.5rem;
  }
}
@media (max-width: 575px) {
  .cid-vbdMSApiGT .card-text-wrap {
    padding: 1.25rem;
  }
}
.cid-vbdMSApiGT .card-price {
  color: #FFFFFF;
}
.cid-vbdMSApiGT .card-title {
  color: #FFFFFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSApiGT .card-title {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSApiGT .card-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSApiGT .card-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSApiGT .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSApiGT .mbr-section-btn {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSApiGT .card-text,
.cid-vbdMSApiGT .mbr-section-btn {
  color: #FFFFFF;
}
.cid-vbdMSB8yC8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fff1af;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSB8yC8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMSB8yC8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMSB8yC8 .section-border-item {
  background-color: #000000;
}
.cid-vbdMSB8yC8 .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbdMSB8yC8 .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSB8yC8 .main-container {
    padding: 3rem 0;
  }
}
.cid-vbdMSB8yC8 .title-wrap {
  width: 100%;
}
.cid-vbdMSB8yC8 .title-box {
  width: 100%;
}
.cid-vbdMSB8yC8 .mbr-title {
  color: #000000;
}
.cid-vbdMSB8yC8 .mbr-text {
  color: #000000;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSB8yC8 .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSB8yC8 .card-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
@media (max-width: 991px) {
  .cid-vbdMSB8yC8 .card-row {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }
}
.cid-vbdMSB8yC8 .item {
  position: relative;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-vbdMSB8yC8 .item {
    width: 100%;
  }
}
.cid-vbdMSB8yC8 .item:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #000000;
}
@media (max-width: 991px) {
  .cid-vbdMSB8yC8 .item:after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
.cid-vbdMSB8yC8 .item:nth-child(3n):after {
  display: none;
}
.cid-vbdMSB8yC8 .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 1rem 2rem 2rem;
}
.cid-vbdMSB8yC8 .logo-wrap {
  width: 100%;
  max-width: 150px;
  margin-right: auto;
  padding-bottom: 0.75rem;
}
.cid-vbdMSB8yC8 .logo-wrap img {
  width: 100%;
  object-fit: contain;
}
.cid-vbdMSB8yC8 .testimonial-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMSB8yC8 .testimonial-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbdMSB8yC8 .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-vbdMSB8yC8 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 20px;
  color: #000000;
  margin-right: 0.4rem;
}
.cid-vbdMSB8yC8 .card-text-wrap {
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-vbdMSB8yC8 .card-text-wrap {
    margin-bottom: 1.5rem;
  }
}
.cid-vbdMSB8yC8 .card-text {
  color: #000000;
}
.cid-vbdMSB8yC8 .card-name-wrap {
  display: flex;
  align-items: center;
  margin-top: auto;
}
.cid-vbdMSB8yC8 .card-name-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50px;
  overflow: hidden;
  margin-right: 16px;
  border: 1px solid #f65490;
}
.cid-vbdMSB8yC8 .card-name-image-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vbdMSB8yC8 .logo-wrap img {
  filter: invert(1);
}
.cid-vbdMSB8yC8 .card-name-text-wrap {
  flex-grow: 1;
}
.cid-vbdMSB8yC8 .card-name {
  color: #000000;
}
.cid-vbdMSB8yC8 .card-prof {
  color: #000000;
}
.cid-vbiKs7z0Lc {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vbiKs7z0Lc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbiKs7z0Lc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbiKs7z0Lc .container-fluid {
  padding: 0;
}
@media (max-width: 992px) {
  .cid-vbiKs7z0Lc .container-fluid {
    padding: 0 15px;
  }
}
.cid-vbiKs7z0Lc .row {
  margin: 0;
}
.cid-vbiKs7z0Lc .row .card {
  padding: 0;
}
.cid-vbiKs7z0Lc .image-wrapper {
  position: relative;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-vbiKs7z0Lc .image-wrapper {
    height: 350px;
    margin-bottom: 15px;
  }
}
.cid-vbiKs7z0Lc .image-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.cid-vbiKs7z0Lc .card-wrapper {
  padding: 70px 30px;
  background-color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vbiKs7z0Lc .card-wrapper {
    padding: 15px;
  }
}
.cid-vbiKs7z0Lc .card-wrapper .label-wrapper .mbr-label {
  display: inline-flex;
  padding: 3px 10px;
  background-color: #9891ff;
  margin-bottom: 15px;
}
.cid-vbiKs7z0Lc .card-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-vbiKs7z0Lc .card-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 30px;
}
@media (max-width: 1440px) {
  .cid-vbiKs7z0Lc .card-wrapper .text-wrapper .mbr-text {
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row {
  position: relative;
  z-index: 1;
  margin: 0 -9.6px;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group {
  margin-bottom: 20px !important;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-control-label {
  width: 100%;
  margin-bottom: 5px;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-control {
  position: relative;
  z-index: 1;
  padding: 16px;
  border: 1px solid #001520 !important;
  background-color: #ffffff;
  transition: all 0.3s ease-in-out;
  box-shadow: none;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-control:hover,
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-control:focus {
  border: 1px solid #000000 !important;
  box-shadow: none;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-control:hover::placeholder,
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-control:focus::placeholder {
  color: #001520;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-control::placeholder {
  color: #001520;
  transition: all .3s ease;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group textarea {
  min-height: 155px;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-check {
  padding-left: 2.3em;
  margin-bottom: 16px;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .form-group .form-check .form-check-input {
  background-color: #001520;
  border-color: #001520;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .mbr-section-btn {
  width: 100%;
}
.cid-vbiKs7z0Lc .form-wrap .dragArea.row .mbr-section-btn .btn {
  margin-top: 0;
}
.cid-vbiKs7z0Lc .mbr-label {
  color: #000000;
}
.cid-vbiKs7z0Lc .mbr-section-title {
  color: #000000;
}
.cid-vbiKs7z0Lc .mbr-text {
  color: #000000;
}
.cid-vbiKs7z0Lc label {
  color: #000000;
}
.cid-vbdMSCR4JO {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSCR4JO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vbdMSCR4JO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vbdMSCR4JO .section-border-item {
  background-color: #ffffff;
}
.cid-vbdMSCR4JO .main-container {
  display: flex;
  align-items: center;
  padding: 5rem 0;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .main-container {
    padding: 4.5rem 0;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSCR4JO .main-container {
    padding: 3rem 0;
  }
}
.cid-vbdMSCR4JO .title-wrap {
  width: 100%;
}
.cid-vbdMSCR4JO .title-box {
  width: 100%;
}
.cid-vbdMSCR4JO .mbr-title {
  color: #FFFFFF;
}
.cid-vbdMSCR4JO .mbr-text {
  color: #FFF;
  margin-top: 1.5rem;
}
@media (max-width: 767px) {
  .cid-vbdMSCR4JO .mbr-text {
    margin-top: 1.25rem;
  }
}
.cid-vbdMSCR4JO .card-row {
  display: flex;
  align-items: stretch;
  margin: -1px 0;
  border-top: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .card-row {
    flex-wrap: wrap;
  }
}
.cid-vbdMSCR4JO .card {
  position: relative;
  width: 33.33333333%;
  margin-bottom: -1px;
  border-radius: 0;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .card {
    width: 100%;
  }
}
.cid-vbdMSCR4JO .card:not(:nth-child(3n)):after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .card:not(:nth-child(3n)):after {
    top: auto;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 1px;
  }
}
@media (min-width: 576px) {
  .cid-vbdMSCR4JO .card:hover .card-bg {
    opacity: 1;
  }
}
.cid-vbdMSCR4JO .card:hover .iconfont-hover-wrapper {
  opacity: 1;
}
.cid-vbdMSCR4JO .card:hover .iconfont-hover-wrapper .iconfont-hover-box {
  transform: translate3d(0, 0, 0px) scale3d(1, 1, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
}
.cid-vbdMSCR4JO .card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100%;
  padding: 24px 40px;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .card-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 32px;
    min-height: 188px;
  }
}
.cid-vbdMSCR4JO .card-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(115deg, #0597ff, #fcdb42);
  opacity: 0;
  transition: 0.6s all;
}
.cid-vbdMSCR4JO .iconfont-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: auto;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .iconfont-wrapper {
    justify-content: flex-start;
    width: 100%;
    margin-bottom: 20px;
  }
}
.cid-vbdMSCR4JO .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 34px;
  color: #ffffff;
  margin-right: 0;
}
.cid-vbdMSCR4JO .card-text-wrap {
  width: 100%;
  margin-bottom: 1rem;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .card-text-wrap {
    width: 50%;
    flex-grow: 1;
    padding-right: 0.75rem;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .cid-vbdMSCR4JO .card-text-wrap {
    margin-bottom: 12px;
  }
}
.cid-vbdMSCR4JO .card-title {
  color: #FFFFFF;
}
.cid-vbdMSCR4JO .card-text {
  color: #FFF;
  margin-top: 1.25rem;
}
@media (max-width: 767px) {
  .cid-vbdMSCR4JO .card-text {
    margin-top: 1rem;
  }
}
.cid-vbdMSCR4JO .iconfont-hover-wrapper {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  transition: 0.6s all;
  margin-top: auto;
}
@media (min-width: 576px) {
  .cid-vbdMSCR4JO .iconfont-hover-wrapper {
    opacity: 0;
  }
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .iconfont-hover-wrapper {
    width: fit-content;
    max-width: 50%;
    flex-shrink: 0;
    margin-left: auto;
  }
}
.cid-vbdMSCR4JO .iconfont-hover-wrapper .iconfont-hover-box {
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: 0.6s all;
}
@media (min-width: 576px) {
  .cid-vbdMSCR4JO .iconfont-hover-wrapper .iconfont-hover-box {
    transform: translate3d(-2rem, 2rem, 0px) scale3d(0.8, 0.8, 1) rotateX(0deg) rotateY(0deg) rotateZ(0deg) skew(0deg, 0deg);
  }
}
.cid-vbdMSCR4JO .iconfont-hover-wrapper .mbr-iconfont {
  display: block;
  font-size: 114px;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-vbdMSCR4JO .iconfont-hover-wrapper .mbr-iconfont {
    font-size: 74px !important;
  }
}
.cid-vbdMSDI54q {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #001520;
  position: relative;
  margin-top: -1px;
  overflow: hidden;
}
.cid-vbdMSDI54q .section-border-item {
  background-color: #ffffff;
}
.cid-vbdMSDI54q .mbr-text {
  color: #FFFFFF;
}
.cid-vbdMSDI54q .media-container-row .mbr-text {
  color: #FFFFFF;
}
