body {
  font-family: IBM Plex Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-2 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-4 {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.28rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 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-2 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #0066ff !important;
}
.bg-success {
  background-color: #bfceff !important;
}
.bg-info {
  background-color: #42c200 !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0066ff !important;
  border-color: #0066ff !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #0047b3 !important;
  border-color: #0047b3 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0047b3 !important;
  border-color: #0047b3 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #5580ff !important;
  border-color: #5580ff !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #0847ff !important;
  border-color: #0847ff !important;
}
.btn-info,
.btn-info:active {
  background-color: #42c200 !important;
  border-color: #42c200 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #287600 !important;
  border-color: #287600 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #287600 !important;
  border-color: #287600 !important;
}
.btn-success,
.btn-success:active {
  background-color: #bfceff !important;
  border-color: #bfceff !important;
  color: #002dbf !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #002dbf !important;
  background-color: #7293ff !important;
  border-color: #7293ff !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #879a9f !important;
  border-color: #879a9f !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #003d99;
  color: #003d99;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #0066ff;
  border-color: #0066ff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0066ff !important;
  border-color: #0066ff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #003cee;
  color: #003cee;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #5580ff;
  border-color: #5580ff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #1f5c00;
  color: #1f5c00;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #42c200;
  border-color: #42c200;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #42c200 !important;
  border-color: #42c200 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #5980ff;
  color: #5980ff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #002dbf;
  background-color: #bfceff;
  border-color: #bfceff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #002dbf !important;
  background-color: #bfceff !important;
  border-color: #bfceff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0066ff !important;
}
.text-secondary {
  color: #5580ff !important;
}
.text-success {
  color: #bfceff !important;
}
.text-info {
  color: #42c200 !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #003d99 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #003cee !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #5980ff !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #1f5c00 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #7a6e45 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #42c200;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0066ff;
  border-color: #0066ff;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0066ff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #cce0ff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #83ff42;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
  font-weight: 400;
}
blockquote {
  border-color: #0066ff;
}
.btn-primary {
  margin: 1rem 0.5rem !important;
}
.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 6px 16px 0 #0066ff !important;
  -webkit-box-shadow: 0 6px 16px 0 #0066ff !important;
  background-color: #0066ff !important;
  border-color: #0066ff !important;
}
.btn-secondary {
  margin: 1rem 0.5rem !important;
}
.btn-secondary:hover,
.btn-secondary:focus {
  box-shadow: 0 6px 15px 0 #5580ff !important;
  -webkit-box-shadow: 0 6px 16px 0 #5580ff !important;
  background-color: #5580ff !important;
  border-color: #5580ff !important;
}
.btn-success {
  color: white !important;
  margin: 1rem 0.5rem !important;
}
.btn-success:active {
  color: white !important;
}
.btn-success:hover,
.btn-success:focus {
  color: white !important;
  box-shadow: 0 6px 15px 0 #bfceff !important;
  -webkit-box-shadow: 0 6px 16px 0 #bfceff !important;
  background-color: #bfceff !important;
  border-color: #bfceff !important;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0066ff;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-number__spin {
  background-color: #f5f6ff;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0066ff;
  border-bottom-color: #0066ff;
}
.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: #0066ff !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: #5580ff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230066ff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-uOK7bbnLGY .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uOK7bbnLGY .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uOK7bbnLGY .nav-item:focus,
.cid-uOK7bbnLGY .nav-link:focus {
  outline: none;
}
.cid-uOK7bbnLGY .text-white:hover,
.cid-uOK7bbnLGY .text-white:active,
.cid-uOK7bbnLGY .text-white:focus {
  color: white!important;
}
.cid-uOK7bbnLGY .section {
  position: relative;
  overflow: visible!important;
}
.cid-uOK7bbnLGY .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-uOK7bbnLGY .dropdown-item:hover {
  color: white!important;
}
.cid-uOK7bbnLGY .dropdown-menu {
  background-color: black!important;
}
.cid-uOK7bbnLGY .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-uOK7bbnLGY .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uOK7bbnLGY .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uOK7bbnLGY .nav-item .nav-link {
    position: relative;
  }
}
.cid-uOK7bbnLGY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOK7bbnLGY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOK7bbnLGY .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uOK7bbnLGY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOK7bbnLGY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOK7bbnLGY .collapsed {
  flex-direction: row!important;
}
.cid-uOK7bbnLGY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOK7bbnLGY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOK7bbnLGY .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uOK7bbnLGY .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uOK7bbnLGY .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uOK7bbnLGY .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOK7bbnLGY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOK7bbnLGY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOK7bbnLGY .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uOK7bbnLGY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOK7bbnLGY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOK7bbnLGY .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uOK7bbnLGY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOK7bbnLGY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOK7bbnLGY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOK7bbnLGY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOK7bbnLGY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOK7bbnLGY .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uOK7bbnLGY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOK7bbnLGY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOK7bbnLGY .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uOK7bbnLGY .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOK7bbnLGY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOK7bbnLGY .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOK7bbnLGY .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uOK7bbnLGY .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uOK7bbnLGY .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOK7bbnLGY .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uOK7bbnLGY .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOK7bbnLGY .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOK7bbnLGY .navbar-caption {
  font-weight: 600!important;
}
.cid-uOK7bbnLGY .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOK7bbnLGY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOK7bbnLGY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOK7bbnLGY .dropdown-item.active,
.cid-uOK7bbnLGY .dropdown-item:active {
  background-color: transparent;
}
.cid-uOK7bbnLGY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOK7bbnLGY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOK7bbnLGY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOK7bbnLGY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOK7bbnLGY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOK7bbnLGY ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uOK7bbnLGY .navbar-buttons {
  text-align: center;
}
.cid-uOK7bbnLGY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOK7bbnLGY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-uOK7bbnLGY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOK7bbnLGY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOK7bbnLGY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOK7bbnLGY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOK7bbnLGY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOK7bbnLGY nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOK7bbnLGY nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOK7bbnLGY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOK7bbnLGY .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOK7bbnLGY .nav-link {
  font-weight: 600!important;
}
.cid-uOK7bbnLGY a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uOK7bbnLGY .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOK7bbnLGY .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uOK7bbnLGY .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOK7bbnLGY .navbar {
    height: 77px;
  }
  .cid-uOK7bbnLGY .navbar.opened {
    height: auto;
  }
  .cid-uOK7bbnLGY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9NcS8luYS {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9NcS8luYS H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9NcS8luYS .mbr-text,
.cid-v9NcS8luYS .mbr-section-btn {
  color: #232323;
}
.cid-v9NcS8luYS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9NcS8luYS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Ndg9aIOq {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9Ndg9aIOq img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9Ndg9aIOq H1 {
  color: #cb2c0a;
}
.cid-v9Ndg9aIOq .mbr-text,
.cid-v9Ndg9aIOq .mbr-section-btn {
  color: #716c80;
}
.cid-v9Ndg9aIOq H3 {
  color: #716c80;
}
.cid-v9Ndg9aIOq .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9Ndg9aIOq .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9Ndg9aIOq .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9Ndg9aIOq .link:hover {
  color: #0066ff !important;
}
.cid-v9Ndg9aIOq .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9Ndg9aIOq DIV {
  color: #57468b;
}
.cid-v9Ndg9aIOq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Ndg9aIOq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Ndg9aIOq .mbr-text,
.cid-v9Ndg9aIOq .media-content {
  color: #232323;
}
.cid-v9Ne4BRw34 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9Ne4BRw34 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9Ne4BRw34 H1 {
  color: #cb2c0a;
}
.cid-v9Ne4BRw34 .mbr-text,
.cid-v9Ne4BRw34 .mbr-section-btn {
  color: #716c80;
}
.cid-v9Ne4BRw34 H3 {
  color: #716c80;
}
.cid-v9Ne4BRw34 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9Ne4BRw34 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9Ne4BRw34 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9Ne4BRw34 .link:hover {
  color: #0066ff !important;
}
.cid-v9Ne4BRw34 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9Ne4BRw34 DIV {
  color: #57468b;
}
.cid-v9Ne4BRw34 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Ne4BRw34 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Ne4BRw34 .mbr-text,
.cid-v9Ne4BRw34 .media-content {
  color: #232323;
}
.cid-v9NdhUCjN5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9NdhUCjN5 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9NdhUCjN5 H1 {
  color: #cb2c0a;
}
.cid-v9NdhUCjN5 .mbr-text,
.cid-v9NdhUCjN5 .mbr-section-btn {
  color: #716c80;
}
.cid-v9NdhUCjN5 H3 {
  color: #716c80;
}
.cid-v9NdhUCjN5 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9NdhUCjN5 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9NdhUCjN5 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9NdhUCjN5 .link:hover {
  color: #0066ff !important;
}
.cid-v9NdhUCjN5 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9NdhUCjN5 DIV {
  color: #57468b;
}
.cid-v9NdhUCjN5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9NdhUCjN5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9NdhUCjN5 .mbr-text,
.cid-v9NdhUCjN5 .media-content {
  color: #232323;
}
.cid-uOK7bcNesL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uOK7bcNesL h4 {
  margin-bottom: 0;
}
.cid-uOK7bcNesL p {
  color: #767676;
}
.cid-uOK7bcNesL .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uOK7bcNesL .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uOK7bcNesL .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uOK7bcNesL .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-uOK7bcNesL .btn-info-outline:active,
.cid-uOK7bcNesL .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uOK7bcNesL .card-box {
  padding-top: 2rem;
}
.cid-uOK7bcNesL .card-wrapper {
  height: 100%;
}
.cid-uOK7bcNesL .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uOK7bcNesL img {
  border-radius: 8px;
}
.cid-uOK7bcNesL .card-title {
  color: #e4330d;
}
.cid-uOK7bcNesL .main-title {
  color: #e4330d;
  text-align: center;
}
.cid-uOK7bcNesL DIV {
  color: #57468b;
}
.cid-uOK7bcNesL .card-img {
  width: auto;
}
.cid-uOK7bcNesL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOK7bcNesL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOK7bcNesL .mbr-text,
.cid-uOK7bcNesL .mbr-section-btn {
  color: #232323;
}
.cid-v8FN8mFKkD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v8FN8mFKkD H1 {
  color: #e4330d;
}
.cid-v8FN8mFKkD .mbr-text,
.cid-v8FN8mFKkD .mbr-section-btn {
  color: #716c80;
}
.cid-v8FN8mFKkD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8FN8mFKkD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6G0Rgsam {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR6G0Rgsam .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR6G0Rgsam .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6G0Rgsam .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uR6G0Rgsam .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR6G0Rgsam .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-uR6G0Rgsam .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uR6G0Rgsam .embla__slide .slide-content {
  width: 100%;
}
.cid-uR6G0Rgsam .embla__slide .slide-content:hover .item-wrapper,
.cid-uR6G0Rgsam .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-uR6G0Rgsam .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-uR6G0Rgsam .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR6G0Rgsam .embla__button--next,
.cid-uR6G0Rgsam .embla__button--prev {
  display: flex;
}
.cid-uR6G0Rgsam .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uR6G0Rgsam .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-uR6G0Rgsam .embla__button.embla__button--prev {
  left: 0;
}
.cid-uR6G0Rgsam .embla__button.embla__button--next {
  right: 0;
}
.cid-uR6G0Rgsam .embla {
  position: relative;
  width: 100%;
}
.cid-uR6G0Rgsam .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uR6G0Rgsam .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uR6G0Rgsam .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uR6G0Rgsam .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uR6G0Rgsam .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uR6G0Rgsam .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uR6G0Rgsam .mbr-section-title,
.cid-uR6G0Rgsam .mbr-section-btn {
  color: #e4330d;
}
.cid-uP8dolhqMm {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uP8dolhqMm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8dolhqMm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP8dolhqMm .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uP8dolhqMm .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uP8dolhqMm .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP8dolhqMm .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uP8dolhqMm .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uP8dolhqMm .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uP8dolhqMm .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uP8dolhqMm .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uP8dolhqMm .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uP8dolhqMm .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uP8dolhqMm .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uP8dolhqMm .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uP8dolhqMm .items-wrapper .card {
  padding: 0 32px;
}
.cid-uP8dolhqMm .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8dolhqMm .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8dolhqMm .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8dolhqMm .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uP8dolhqMm .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uP8dolhqMm .list-wrapper .list .item-wrap:hover,
.cid-uP8dolhqMm .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uP8dolhqMm .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uP8dolhqMm .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8dolhqMm .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8dolhqMm .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8dolhqMm .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uP8dolhqMm .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uP8dolhqMm .mbr-desc {
  color: #ffffff;
}
.cid-uP8dolhqMm .mbr-text,
.cid-uP8dolhqMm .text-wrapper {
  color: #9aa0a6;
}
.cid-uP8dolhqMm .list {
  color: #9aa0a6;
}
.cid-uP8dolhqMm .mbr-text,
.cid-uP8dolhqMm .mbr-section-btn {
  color: #ffffff;
}
.cid-uP8dolhqMm .list,
.cid-uP8dolhqMm .item-wrap {
  color: #ffffff;
}
.cid-uWQhy2LRE7 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uWQhy2LRE7 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uWQhy2LRE7 .nav-item:focus,
.cid-uWQhy2LRE7 .nav-link:focus {
  outline: none;
}
.cid-uWQhy2LRE7 .text-white:hover,
.cid-uWQhy2LRE7 .text-white:active,
.cid-uWQhy2LRE7 .text-white:focus {
  color: white!important;
}
.cid-uWQhy2LRE7 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uWQhy2LRE7 .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-uWQhy2LRE7 .dropdown-item:hover {
  color: white!important;
}
.cid-uWQhy2LRE7 .dropdown-menu {
  background-color: black!important;
}
.cid-uWQhy2LRE7 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-uWQhy2LRE7 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uWQhy2LRE7 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uWQhy2LRE7 .nav-item .nav-link {
    position: relative;
  }
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uWQhy2LRE7 .collapsed {
  flex-direction: row!important;
}
.cid-uWQhy2LRE7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWQhy2LRE7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWQhy2LRE7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uWQhy2LRE7 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uWQhy2LRE7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uWQhy2LRE7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWQhy2LRE7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWQhy2LRE7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uWQhy2LRE7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uWQhy2LRE7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uWQhy2LRE7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWQhy2LRE7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uWQhy2LRE7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uWQhy2LRE7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWQhy2LRE7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uWQhy2LRE7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uWQhy2LRE7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uWQhy2LRE7 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uWQhy2LRE7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uWQhy2LRE7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uWQhy2LRE7 .navbar-caption {
  font-weight: 600!important;
}
.cid-uWQhy2LRE7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uWQhy2LRE7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWQhy2LRE7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWQhy2LRE7 .dropdown-item.active,
.cid-uWQhy2LRE7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uWQhy2LRE7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWQhy2LRE7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWQhy2LRE7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWQhy2LRE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uWQhy2LRE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWQhy2LRE7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uWQhy2LRE7 .navbar-buttons {
  text-align: center;
}
.cid-uWQhy2LRE7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWQhy2LRE7 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uWQhy2LRE7 .nav-link {
  font-weight: 600!important;
}
.cid-uWQhy2LRE7 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uWQhy2LRE7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uWQhy2LRE7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uWQhy2LRE7 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uWQhy2LRE7 .navbar {
    height: 77px;
  }
  .cid-uWQhy2LRE7 .navbar.opened {
    height: auto;
  }
  .cid-uWQhy2LRE7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9NaHrTOAq {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9NaHrTOAq H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9NaHrTOAq .mbr-text,
.cid-v9NaHrTOAq .mbr-section-btn {
  color: #232323;
}
.cid-v9NaHrTOAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9NaHrTOAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYsSXUfvNC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-uYsSXUfvNC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYsSXUfvNC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYsSXUfvNC .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 50%;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uYsSXUfvNC .title-wrapper .mbr-section-title {
    width: 100%;
    margin-bottom: 40px;
  }
}
.cid-uYsSXUfvNC .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 290px;
  max-width: 290px;
}
@media (max-width: 768px) {
  .cid-uYsSXUfvNC .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-uYsSXUfvNC .embla__slide .slide-content {
  width: 100%;
}
.cid-uYsSXUfvNC .embla__slide .slide-content .item-wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
}
.cid-uYsSXUfvNC .embla__slide .slide-content .item-wrapper .item-img {
  width: 100%;
}
.cid-uYsSXUfvNC .embla__slide .slide-content .item-wrapper .item-img img {
  height: 125px;
  object-fit: cover;
  border-radius: 0 !important;
}
@media (max-width: 768px) {
  .cid-uYsSXUfvNC .embla__slide .slide-content .item-wrapper .item-img img {
    height: 200px;
  }
}
.cid-uYsSXUfvNC .embla__button--next,
.cid-uYsSXUfvNC .embla__button--prev {
  display: flex;
}
.cid-uYsSXUfvNC .arrows-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.cid-uYsSXUfvNC .embla__button {
  top: 27px;
  width: 54px;
  height: 54px;
  margin-top: -1.5rem;
  font-size: 28px;
  background-color: #e6eddc !important;
  color: #5c834f !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uYsSXUfvNC .embla__button:hover {
  background-color: #5c834f !important;
  color: #e6eddc !important;
}
.cid-uYsSXUfvNC .embla__button:disabled {
  opacity: .5 !important;
  background-color: #e6eddc !important;
  color: #5c834f !important;
}
.cid-uYsSXUfvNC .embla__button.embla__button--prev {
  margin-right: 78px;
}
.cid-uYsSXUfvNC .embla__button.embla__button--next {
  margin-left: 78px;
}
.cid-uYsSXUfvNC .embla {
  position: relative;
  width: 100%;
}
.cid-uYsSXUfvNC .embla__viewport {
  position: relative;
  overflow: visible;
  width: 100%;
  padding: 0;
}
@media (max-width: 768px) {
  .cid-uYsSXUfvNC .embla__viewport {
    padding: 0;
  }
}
.cid-uYsSXUfvNC .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYsSXUfvNC .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYsSXUfvNC .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYsSXUfvNC .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uYsSXUfvNC .mbr-section-title,
.cid-uYsSXUfvNC .title-wrapper {
  color: #e4330d;
  text-align: center;
}
.cid-uYlZ4kJcqm {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYlZ4kJcqm .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYlZ4kJcqm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYlZ4kJcqm .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-uYlZ4kJcqm .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uYlZ4kJcqm .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-uYlZ4kJcqm .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-uYlZ4kJcqm .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-uYlZ4kJcqm .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uYlZ4kJcqm .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uYlZ4kJcqm .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-uYlZ4kJcqm .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
}
.cid-uYlZ4kJcqm .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #e4330d;
  color: #e4330d;
  font-size: 11px;
}
.cid-uYlZ4kJcqm .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uYlZ4kJcqm .list_2 {
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-uYlZ4kJcqm .list_2 {
    padding-left: 0;
  }
}
.cid-uYlZ4kJcqm .mbr-section-title {
  color: #cb2c0a;
  text-align: center;
}
.cid-uYlZ4kJcqm .mbr-section-subtitle {
  color: #ff6d99;
  text-align: center;
}
.cid-uYlZ4kJcqm .mbr-text,
.cid-uYlZ4kJcqm .text-wrapper {
  color: #e4330d;
  text-align: center;
}
.cid-uYlZ4kJcqm .list {
  color: #666666;
}
.cid-uYlZ4kJcqm .list,
.cid-uYlZ4kJcqm .item-wrap,
.cid-uYlZ4kJcqm .list-wrapper {
  color: #000000;
}
.cid-uYlYoh2OLs {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uYlYoh2OLs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYlYoh2OLs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYlYoh2OLs .row {
  margin: 0 -32px;
}
.cid-uYlYoh2OLs .row .card {
  padding: 0 32px;
  justify-content: center;
}
.cid-uYlYoh2OLs .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-uYlYoh2OLs .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uYlYoh2OLs .title-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-uYlYoh2OLs .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-uYlYoh2OLs .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uYlYoh2OLs .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-uYlYoh2OLs .title-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-uYlYoh2OLs .image-wrapper {
  padding: 12px;
  border: 1px solid #cdcddd;
  background-color: #e0e0eb;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .cid-uYlYoh2OLs .image-wrapper {
    padding: 6px;
  }
}
.cid-uYlYoh2OLs .image-wrapper .image-wrap {
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid #cdcddd;
  box-shadow: 0 0.25rem 0.375rem -0.125rem #9797b9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-uYlYoh2OLs .image-wrapper .image-wrap {
    padding: 6px;
  }
}
.cid-uYlYoh2OLs .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-uYlYoh2OLs .mbr-section-title {
  color: #181824;
}
.cid-uYlYoh2OLs .mbr-section-title,
.cid-uYlYoh2OLs .mbr-section-btn {
  text-align: left;
  color: #cb2c0a;
}
.cid-uYlYoh2OLs .mbr-text,
.cid-uYlYoh2OLs .text-wrapper {
  color: #232323;
  text-align: left;
}
.cid-uYmc9S2WDp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uYmc9S2WDp H1 {
  color: #e4330d;
}
.cid-uYmc9S2WDp .mbr-text,
.cid-uYmc9S2WDp .mbr-section-btn {
  color: #716c80;
}
.cid-uYmc9S2WDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYmc9S2WDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYo5fvJxcs {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-uYo5fvJxcs img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uYo5fvJxcs H1 {
  color: #e4330d;
  text-align: center;
}
.cid-uYo5fvJxcs .mbr-text,
.cid-uYo5fvJxcs .mbr-section-btn {
  color: #716c80;
}
.cid-uYo5fvJxcs H3 {
  color: #716c80;
}
.cid-uYo5fvJxcs .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uYo5fvJxcs .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uYo5fvJxcs .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uYo5fvJxcs .link:hover {
  color: #0066ff !important;
}
.cid-uYo5fvJxcs .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-uYo5fvJxcs DIV {
  color: #57468b;
}
.cid-uYo5fvJxcs .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYo5fvJxcs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYo5fvJxcs .mbr-text,
.cid-uYo5fvJxcs .media-content {
  color: #060606;
  text-align: center;
}
.cid-uYmuTbRuRk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
  overflow: hidden;
  box-sizing: border-box;
}
.cid-uYmuTbRuRk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-uYmuTbRuRk .btn {
  font-size: 16px;
  padding: 0.5rem 2rem;
}
.cid-uYmuTbRuRk .btn-primary-outline {
  border: none;
  color: gray;
}
.cid-uYmuTbRuRk .btn-primary-outline:active {
  color: gray;
}
.cid-uYmuTbRuRk .btn-primary-outline:hover {
  color: white;
}
.cid-uYmuTbRuRk .mbr-gallery-title:before {
  border-radius: 0px 0px 10px 10px;
}
.cid-uYmuTbRuRk div {
  overflow: hidden;
}
.cid-uYmuTbRuRk li.active .btn-primary-outline {
  color: white;
}
.cid-uYmuTbRuRk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-uYmuTbRuRk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-uYmuTbRuRk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-uYmuTbRuRk .mbr-gallery-item {
  overflow: hidden;
}
.cid-uYmuTbRuRk .mbr-gallery-item img {
  transition: all 0.3s;
  border-radius: 10px;
}
.cid-uYmuTbRuRk .mbr-gallery-filter {
  padding-top: 20px;
  padding-bottom: 20px;
}
.cid-uYmuTbRuRk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  background: #232323;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-uYmuTbRuRk .mbr-gallery-item > div:hover .mbr-gallery-title::before {
  background: transparent !important;
}
.cid-uYmuTbRuRk .mbr-gallery-item > div:hover:before {
  opacity: 0.6 !important;
}
.cid-uYmuTbRuRk .mbr-gallery-title {
  font-size: .9em;
  position: absolute;
  display: block;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  color: #fff;
  z-index: 2;
}
.cid-uYmuTbRuRk .mbr-gallery-title:before {
  content: " ";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  position: absolute;
  background: #232323 !important;
  opacity: 0.6;
  -webkit-transition: 0.2s background ease-in-out;
  transition: 0.2s background ease-in-out;
}
.cid-uYmuTbRuRk .mbr-gallery-item > div > span {
  color: #e4330d;
}
.cid-uYmaT5x87f {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-uYmaT5x87f h5,
.cid-uYmaT5x87f h4,
.cid-uYmaT5x87f p {
  margin-bottom: 0;
}
.cid-uYmaT5x87f p {
  color: #767676;
}
.cid-uYmaT5x87f .card-img {
  padding: 0;
  width: auto;
}
.cid-uYmaT5x87f .mbr-section-btn {
  margin: 0;
}
.cid-uYmaT5x87f .card-box {
  padding: 2rem;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-uYmaT5x87f .card-box {
    padding: 2rem 0 0;
  }
  .cid-uYmaT5x87f .card-wrapper {
    display: block !important;
  }
}
.cid-uYmaT5x87f .card-wrapper {
  height: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.cid-uYmaT5x87f img {
  border-radius: 8px;
}
.cid-uYmaT5x87f .card-title,
.cid-uYmaT5x87f .main-title {
  color: #57468b;
}
.cid-uYmaT5x87f .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYmaT5x87f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYmaT5x87f .card-title {
  color: #e4330d;
}
.cid-uYmaT5x87f .main-title {
  color: #e4330d;
  text-align: center;
}
.cid-uYrXshO89k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uYrXshO89k h4 {
  margin-bottom: 0;
}
.cid-uYrXshO89k p {
  color: #767676;
}
.cid-uYrXshO89k .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uYrXshO89k .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uYrXshO89k .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uYrXshO89k .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-uYrXshO89k .btn-info-outline:active,
.cid-uYrXshO89k .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uYrXshO89k .card-box {
  padding-top: 2rem;
}
.cid-uYrXshO89k .card-wrapper {
  height: 100%;
}
.cid-uYrXshO89k .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uYrXshO89k img {
  border-radius: 8px;
}
.cid-uYrXshO89k .card-title {
  color: #232323;
}
.cid-uYrXshO89k .main-title {
  color: #e4330d;
  text-align: center;
}
.cid-uYrXshO89k DIV {
  color: #57468b;
}
.cid-uYrXshO89k .card-img {
  width: auto;
}
.cid-uYrXshO89k .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYrXshO89k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYrXshO89k .mbr-text,
.cid-uYrXshO89k .mbr-section-btn {
  color: #060606;
}
.cid-uYrXeUmWof {
  padding-top: 30px;
  padding-bottom: 45px;
  position: relative;
  background-color: #ffffff;
}
.cid-uYrXeUmWof .card-header {
  background: transparent;
}
.cid-uYrXeUmWof .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-uYrXeUmWof .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uYrXeUmWof .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uYrXeUmWof .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uYrXeUmWof .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uYrXeUmWof .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uYrXeUmWof .card .panel-body {
  color: #767676;
}
.cid-uYrXeUmWof h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #e1e8ff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-uYrXeUmWof H4 {
  color: #232323;
  text-align: center;
}
.cid-uYrXeUmWof H2 {
  color: #e4330d;
}
.cid-uYrXeUmWof .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYrXeUmWof .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Nc7yIUHB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-v9Nc7yIUHB H1 {
  color: #e4330d;
}
.cid-v9Nc7yIUHB .mbr-text,
.cid-v9Nc7yIUHB .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-v9Nc7yIUHB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Nc7yIUHB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnR3PCg5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabnR3PCg5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabnR3PCg5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnR3PCg5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabnR3PCg5 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vabnR3PCg5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vabnR3PCg5 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vabnR3PCg5 .embla__slide .slide-content {
  width: 100%;
}
.cid-vabnR3PCg5 .embla__slide .slide-content:hover .item-wrapper,
.cid-vabnR3PCg5 .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vabnR3PCg5 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vabnR3PCg5 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vabnR3PCg5 .embla__button--next,
.cid-vabnR3PCg5 .embla__button--prev {
  display: flex;
}
.cid-vabnR3PCg5 .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vabnR3PCg5 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vabnR3PCg5 .embla__button.embla__button--prev {
  left: 0;
}
.cid-vabnR3PCg5 .embla__button.embla__button--next {
  right: 0;
}
.cid-vabnR3PCg5 .embla {
  position: relative;
  width: 100%;
}
.cid-vabnR3PCg5 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vabnR3PCg5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vabnR3PCg5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vabnR3PCg5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabnR3PCg5 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vabnR3PCg5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vabnR3PCg5 .mbr-section-title,
.cid-vabnR3PCg5 .mbr-section-btn {
  color: #e4330d;
}
.cid-uWQhy816OL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWQhy816OL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQhy816OL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uWQhy816OL .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uWQhy816OL .items-wrapper .card {
  padding: 0 32px;
}
.cid-uWQhy816OL .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uWQhy816OL .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uWQhy816OL .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uWQhy816OL .list-wrapper .list .item-wrap:hover,
.cid-uWQhy816OL .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uWQhy816OL .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uWQhy816OL .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uWQhy816OL .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uWQhy816OL .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uWQhy816OL .mbr-desc {
  color: #ffffff;
}
.cid-uWQhy816OL .mbr-text,
.cid-uWQhy816OL .text-wrapper {
  color: #9aa0a6;
}
.cid-uWQhy816OL .list {
  color: #9aa0a6;
}
.cid-uWQhy816OL .mbr-text,
.cid-uWQhy816OL .mbr-section-btn {
  color: #ffffff;
}
.cid-uWQhy816OL .list,
.cid-uWQhy816OL .item-wrap {
  color: #ffffff;
}
.cid-uWQhy2LRE7 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uWQhy2LRE7 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uWQhy2LRE7 .nav-item:focus,
.cid-uWQhy2LRE7 .nav-link:focus {
  outline: none;
}
.cid-uWQhy2LRE7 .text-white:hover,
.cid-uWQhy2LRE7 .text-white:active,
.cid-uWQhy2LRE7 .text-white:focus {
  color: white!important;
}
.cid-uWQhy2LRE7 .section {
  position: relative;
  overflow: visible!important;
}
.cid-uWQhy2LRE7 .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-uWQhy2LRE7 .dropdown-item:hover {
  color: white!important;
}
.cid-uWQhy2LRE7 .dropdown-menu {
  background-color: black!important;
}
.cid-uWQhy2LRE7 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-uWQhy2LRE7 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uWQhy2LRE7 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uWQhy2LRE7 .nav-item .nav-link {
    position: relative;
  }
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uWQhy2LRE7 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uWQhy2LRE7 .collapsed {
  flex-direction: row!important;
}
.cid-uWQhy2LRE7 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uWQhy2LRE7 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uWQhy2LRE7 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uWQhy2LRE7 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uWQhy2LRE7 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uWQhy2LRE7 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uWQhy2LRE7 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uWQhy2LRE7 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uWQhy2LRE7 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uWQhy2LRE7 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uWQhy2LRE7 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uWQhy2LRE7 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uWQhy2LRE7 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uWQhy2LRE7 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uWQhy2LRE7 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uWQhy2LRE7 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uWQhy2LRE7 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uWQhy2LRE7 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uWQhy2LRE7 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uWQhy2LRE7 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uWQhy2LRE7 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uWQhy2LRE7 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uWQhy2LRE7 .navbar-caption {
  font-weight: 600!important;
}
.cid-uWQhy2LRE7 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uWQhy2LRE7 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uWQhy2LRE7 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uWQhy2LRE7 .dropdown-item.active,
.cid-uWQhy2LRE7 .dropdown-item:active {
  background-color: transparent;
}
.cid-uWQhy2LRE7 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uWQhy2LRE7 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uWQhy2LRE7 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uWQhy2LRE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uWQhy2LRE7 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uWQhy2LRE7 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uWQhy2LRE7 .navbar-buttons {
  text-align: center;
}
.cid-uWQhy2LRE7 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uWQhy2LRE7 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uWQhy2LRE7 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uWQhy2LRE7 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uWQhy2LRE7 .nav-link {
  font-weight: 600!important;
}
.cid-uWQhy2LRE7 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uWQhy2LRE7 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uWQhy2LRE7 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uWQhy2LRE7 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uWQhy2LRE7 .navbar {
    height: 77px;
  }
  .cid-uWQhy2LRE7 .navbar.opened {
    height: auto;
  }
  .cid-uWQhy2LRE7 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uYCXQc09dU {
  padding-top: 165px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/untitled20design203-2000x1000.webp");
}
.cid-uYCXQc09dU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCXQc09dU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCXQc09dU H1 {
  color: #e4330d;
}
.cid-uYCX7SMKTH {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #060606;
}
@media (max-width: 992px) {
  .cid-uYCX7SMKTH {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.cid-uYCX7SMKTH .box {
  background-image: url("../../../assets/images/msp20sisikela-622x352.webp");
  background-size: cover;
  background-position: center;
  height: 550px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uYCX7SMKTH .icon-wrap {
  background-color: #e4330d !important;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
}
.cid-uYCX7SMKTH .icon-wrap:hover {
  transform: scale(1.1);
}
.cid-uYCX7SMKTH .icon-wrap span {
  padding-left: 8px;
}
.cid-uYCX7SMKTH .mbr-media span {
  font-size: 30px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  transition: all 0.25s;
  color: #ffffff !important;
}
.cid-uYCX7SMKTH .mbr-media span.mbri-play:before {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-35%);
  -moz-transform: translateX(-35%);
  -ms-transform: translateX(-35%);
  -o-transform: translateX(-35%);
  transform: translateX(-35%);
}
.cid-uYCX7SMKTH .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uYCX7SMKTH .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uYCX7SMKTH .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uYCX7SMKTH a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-uYCX7SMKTH a.close:hover {
  color: #ffffff;
}
@media (max-width: 576px) {
  .cid-uYCX7SMKTH {
    padding-top: 35px;
    padding-bottom: 35px;
  }
  .cid-uYCX7SMKTH .box {
    height: 250px;
  }
  .cid-uYCX7SMKTH .row {
    padding: 1rem!important;
  }
}
.cid-uYCX7SMKTH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCX7SMKTH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYxPKjjNRu {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #060606;
}
.cid-uYxPKjjNRu h4 {
  margin-bottom: 0;
}
.cid-uYxPKjjNRu p {
  color: #767676;
}
.cid-uYxPKjjNRu .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uYxPKjjNRu .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uYxPKjjNRu .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uYxPKjjNRu .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-uYxPKjjNRu .btn-info-outline:active,
.cid-uYxPKjjNRu .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uYxPKjjNRu .card-box {
  padding-top: 2rem;
}
.cid-uYxPKjjNRu .card-wrapper {
  height: 100%;
}
.cid-uYxPKjjNRu .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uYxPKjjNRu img {
  border-radius: 8px;
}
.cid-uYxPKjjNRu .card-title {
  color: #e4330d;
}
.cid-uYxPKjjNRu .main-title {
  color: #e4330d;
  text-align: center;
}
.cid-uYxPKjjNRu DIV {
  color: #57468b;
}
.cid-uYxPKjjNRu .card-img {
  width: auto;
}
.cid-uYxPKjjNRu .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYxPKjjNRu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYxPKjjNRu .mbr-text,
.cid-uYxPKjjNRu .mbr-section-btn {
  color: #ffffff;
}
.cid-uYxS09QSRP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYxS09QSRP img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uYxS09QSRP H1 {
  color: #57468b;
}
.cid-uYxS09QSRP .mbr-text,
.cid-uYxS09QSRP .mbr-section-btn {
  color: #716c80;
}
.cid-uYxS09QSRP H3 {
  color: #716c80;
}
.cid-uYxS09QSRP .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uYxS09QSRP .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uYxS09QSRP .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uYxS09QSRP .link:hover {
  color: #0066ff !important;
}
.cid-uYxS09QSRP .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-uYxS09QSRP DIV {
  color: #57468b;
}
.cid-uYxS09QSRP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYxS09QSRP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYxS09QSRP .mbr-text,
.cid-uYxS09QSRP .media-content {
  color: #ffffff;
  text-align: left;
}
.cid-uYyWJRxEaU {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYyWJRxEaU H1 {
  color: #e4330d;
}
.cid-uYyWJRxEaU .mbr-text,
.cid-uYyWJRxEaU .mbr-section-btn {
  color: #716c80;
}
.cid-uYyWJRxEaU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYyWJRxEaU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYyUzLZrwN {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYyUzLZrwN H1 {
  color: #e4330d;
}
.cid-uYyUzLZrwN .mbr-text,
.cid-uYyUzLZrwN .mbr-section-btn {
  color: #ffffff;
  text-align: left;
}
@keyframes line {
  from {
    transform: translateY(4px);
  }
  50% {
    transform: translateY(-4px);
  }
  to {
    transform: translateY(4px);
  }
}
.cid-uYyUzLZrwN img {
  width: 90%;
  border-radius: 10px;
  box-shadow: rgba(230, 206, 191, 0.7) -10px 10px 35px 5px;
  animation: line 3s ease-in-out infinite;
}
@media (max-width: 992px) {
  .cid-uYyUzLZrwN img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.cid-uYyUzLZrwN H3 {
  color: #716c80;
}
.cid-uYyUzLZrwN .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYyUzLZrwN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYyY5tzpd2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYyY5tzpd2 H1 {
  color: #e4330d;
}
.cid-uYyY5tzpd2 .mbr-text,
.cid-uYyY5tzpd2 .mbr-section-btn {
  color: #716c80;
}
.cid-uYyY5tzpd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYyY5tzpd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYxV6186Yz {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYxV6186Yz img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uYxV6186Yz H1 {
  color: #e4330d;
}
.cid-uYxV6186Yz .mbr-text,
.cid-uYxV6186Yz .mbr-section-btn {
  color: #716c80;
}
.cid-uYxV6186Yz H3 {
  color: #cb2c0a;
  text-align: left;
}
.cid-uYxV6186Yz .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uYxV6186Yz .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uYxV6186Yz .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uYxV6186Yz .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uYxV6186Yz .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-uYxV6186Yz .btn-info-outline:active,
.cid-uYxV6186Yz .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uYxV6186Yz DIV {
  color: #57468b;
}
.cid-uYxV6186Yz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYxV6186Yz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYxV6186Yz .mbr-text,
.cid-uYxV6186Yz .media-content,
.cid-uYxV6186Yz .mbr-section-btn {
  color: #fffff5;
}
.cid-uYy2pTa8aQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYy2pTa8aQ .mbr-text {
  color: #fffff5;
  text-align: center;
}
.cid-uYy2pTa8aQ h4 {
  text-align: center;
}
.cid-uYy2pTa8aQ p {
  text-align: center;
}
.cid-uYy2pTa8aQ .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uYy2pTa8aQ .mbr-iconfont {
  transition: all 0.3s;
  color: #fffff5 !important;
  font-size: 6rem !important;
}
.cid-uYy2pTa8aQ .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-uYy2pTa8aQ .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-uYy2pTa8aQ .card:hover .mbr-iconfont {
  color: #636161 !important;
}
.cid-uYy2pTa8aQ .card-title,
.cid-uYy2pTa8aQ .card-img {
  color: #e4330d;
}
.cid-uYy2pTa8aQ .card-img {
  width: auto;
}
@media (max-width: 576px) {
  .cid-uYy2pTa8aQ .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
  .cid-uYy2pTa8aQ .card:hover {
    box-shadow: none;
    transform: none;
  }
}
.cid-uYy2pTa8aQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYy2pTa8aQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYy3j7RMpi {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYy3j7RMpi .mbr-text {
  color: #fffff5;
  text-align: center;
}
.cid-uYy3j7RMpi h4 {
  text-align: center;
}
.cid-uYy3j7RMpi p {
  text-align: center;
}
.cid-uYy3j7RMpi .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-uYy3j7RMpi .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 6rem !important;
}
.cid-uYy3j7RMpi .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-uYy3j7RMpi .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-uYy3j7RMpi .card:hover .mbr-iconfont {
  color: #636161 !important;
}
.cid-uYy3j7RMpi .card-title,
.cid-uYy3j7RMpi .card-img {
  color: #e4330d;
}
.cid-uYy3j7RMpi .card-img {
  width: auto;
}
@media (max-width: 576px) {
  .cid-uYy3j7RMpi .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
  .cid-uYy3j7RMpi .card:hover {
    box-shadow: none;
    transform: none;
  }
}
.cid-uYy3j7RMpi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYy3j7RMpi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYykMrg6rH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYykMrg6rH H1 {
  color: #e4330d;
}
.cid-uYykMrg6rH .mbr-text,
.cid-uYykMrg6rH .mbr-section-btn {
  color: #716c80;
}
.cid-uYykMrg6rH .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYykMrg6rH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYyk3r17d2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYyk3r17d2 .mbr-text {
  color: #716c80;
}
.cid-uYyk3r17d2 .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-uYyk3r17d2 p {
  margin: 0;
}
.cid-uYyk3r17d2 .card-img .img1 {
  background-color: #e4330d;
}
.cid-uYyk3r17d2 .cardcolor:hover {
  background-color: #232323;
}
.cid-uYyk3r17d2 .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 2rem !important;
}
.cid-uYyk3r17d2 .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-uYyk3r17d2 .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1rem);
}
.cid-uYyk3r17d2 .card-title,
.cid-uYyk3r17d2 .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-uYyk3r17d2 .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-uYyk3r17d2 .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-uYyk3r17d2 .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-uYyk3r17d2 .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-uYyk3r17d2 .card-img span {
    margin-right: 0rem;
  }
  .cid-uYyk3r17d2 .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-uYyk3r17d2 .card-img {
  width: auto;
}
.cid-uYyk3r17d2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYyk3r17d2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYyk3r17d2 .card-title {
  color: #fffff5;
}
.cid-uYyppLIox8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYyppLIox8 H1 {
  color: #e4330d;
}
.cid-uYyppLIox8 .mbr-text,
.cid-uYyppLIox8 .mbr-section-btn {
  color: #716c80;
}
.cid-uYyppLIox8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYyppLIox8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYycctlHjo {
  padding-top: 30px;
  padding-bottom: 0px;
  position: relative;
  background-color: #060606;
}
.cid-uYycctlHjo .card-header {
  background: transparent;
}
.cid-uYycctlHjo .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-uYycctlHjo .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uYycctlHjo .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uYycctlHjo .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uYycctlHjo .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uYycctlHjo .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uYycctlHjo .card .panel-body {
  color: #767676;
}
.cid-uYycctlHjo h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #e4330d;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-uYycctlHjo H4 {
  color: #fffff5;
  text-align: left;
}
.cid-uYycctlHjo H2 {
  color: #e4330d;
}
.cid-uYycctlHjo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYycctlHjo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYycctlHjo .panel-text {
  color: #fffff5;
}
.cid-uYyf1YwJ5t {
  padding-top: 0px;
  padding-bottom: 45px;
  position: relative;
  background-color: #060606;
}
.cid-uYyf1YwJ5t .card-header {
  background: transparent;
}
.cid-uYyf1YwJ5t .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-uYyf1YwJ5t .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uYyf1YwJ5t .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uYyf1YwJ5t .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uYyf1YwJ5t .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uYyf1YwJ5t .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uYyf1YwJ5t .card .panel-body {
  color: #767676;
}
.cid-uYyf1YwJ5t h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #e4330d;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-uYyf1YwJ5t H4 {
  color: #fffff5;
  text-align: left;
}
.cid-uYyf1YwJ5t H2 {
  color: #e4330d;
}
.cid-uYyf1YwJ5t .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYyf1YwJ5t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYyf1YwJ5t .panel-text {
  color: #fffff5;
}
.cid-uYyiEXkQ4G {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uYyiEXkQ4G .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYyiEXkQ4G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYyiEXkQ4G .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uYyiEXkQ4G .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uYyiEXkQ4G .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-uYyiEXkQ4G .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uYyiEXkQ4G .embla__slide .slide-content {
  width: 100%;
}
.cid-uYyiEXkQ4G .embla__slide .slide-content:hover .item-wrapper,
.cid-uYyiEXkQ4G .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-uYyiEXkQ4G .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-uYyiEXkQ4G .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uYyiEXkQ4G .embla__button--next,
.cid-uYyiEXkQ4G .embla__button--prev {
  display: flex;
}
.cid-uYyiEXkQ4G .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uYyiEXkQ4G .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-uYyiEXkQ4G .embla__button.embla__button--prev {
  left: 0;
}
.cid-uYyiEXkQ4G .embla__button.embla__button--next {
  right: 0;
}
.cid-uYyiEXkQ4G .embla {
  position: relative;
  width: 100%;
}
.cid-uYyiEXkQ4G .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uYyiEXkQ4G .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uYyiEXkQ4G .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uYyiEXkQ4G .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uYyiEXkQ4G .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uYyiEXkQ4G .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uYyiEXkQ4G .mbr-section-title,
.cid-uYyiEXkQ4G .mbr-section-btn {
  color: #e4330d;
}
.cid-uYCMGuqYd2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #060606;
}
.cid-uYCMGuqYd2 H1 {
  color: #e4330d;
}
.cid-uYCMGuqYd2 .mbr-text,
.cid-uYCMGuqYd2 .mbr-section-btn {
  color: #716c80;
}
.cid-uYCMGuqYd2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCMGuqYd2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCMyQZdFk {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #060606;
}
.cid-uYCMyQZdFk .card-header {
  background: transparent;
}
.cid-uYCMyQZdFk .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-uYCMyQZdFk .panel-group {
  border-top: 1px solid #efefef;
}
.cid-uYCMyQZdFk .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-uYCMyQZdFk .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-uYCMyQZdFk .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-uYCMyQZdFk .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-uYCMyQZdFk .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-uYCMyQZdFk .card .panel-body {
  color: #767676;
}
.cid-uYCMyQZdFk h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #060606;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border-bottom: 1px solid #efefef;
  padding: 1.4rem 1.6rem;
}
.cid-uYCMyQZdFk H4 {
  color: #e4330d;
}
.cid-uYCMyQZdFk H2 {
  color: #57468b;
}
.cid-uYCMyQZdFk .mbr-fallback-image.disabled {
  display: none;
}
.cid-uYCMyQZdFk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uYCMyQZdFk .panel-text {
  color: #fffff5;
}
.cid-uWQhy816OL {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uWQhy816OL .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWQhy816OL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uWQhy816OL .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uWQhy816OL .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uWQhy816OL .items-wrapper .card {
  padding: 0 32px;
}
.cid-uWQhy816OL .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uWQhy816OL .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uWQhy816OL .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uWQhy816OL .list-wrapper .list .item-wrap:hover,
.cid-uWQhy816OL .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uWQhy816OL .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uWQhy816OL .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uWQhy816OL .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uWQhy816OL .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uWQhy816OL .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uWQhy816OL .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uWQhy816OL .mbr-desc {
  color: #ffffff;
}
.cid-uWQhy816OL .mbr-text,
.cid-uWQhy816OL .text-wrapper {
  color: #9aa0a6;
}
.cid-uWQhy816OL .list {
  color: #9aa0a6;
}
.cid-uWQhy816OL .mbr-text,
.cid-uWQhy816OL .mbr-section-btn {
  color: #ffffff;
}
.cid-uWQhy816OL .list,
.cid-uWQhy816OL .item-wrap {
  color: #ffffff;
}
.cid-u68Xv7zMOt .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-u68Xv7zMOt .nav-item:focus,
.cid-u68Xv7zMOt .nav-link:focus {
  outline: none;
}
.cid-u68Xv7zMOt .text-white:hover,
.cid-u68Xv7zMOt .text-white:active,
.cid-u68Xv7zMOt .text-white:focus {
  color: white!important;
}
.cid-u68Xv7zMOt .section {
  position: relative;
  overflow: visible!important;
}
.cid-u68Xv7zMOt .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-item:hover {
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-menu {
  background-color: black!important;
}
.cid-u68Xv7zMOt .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-u68Xv7zMOt .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-u68Xv7zMOt .nav-item .nav-link {
    position: relative;
  }
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .collapsed {
  flex-direction: row!important;
}
.cid-u68Xv7zMOt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u68Xv7zMOt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u68Xv7zMOt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u68Xv7zMOt .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u68Xv7zMOt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u68Xv7zMOt .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u68Xv7zMOt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u68Xv7zMOt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u68Xv7zMOt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u68Xv7zMOt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u68Xv7zMOt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u68Xv7zMOt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u68Xv7zMOt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u68Xv7zMOt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u68Xv7zMOt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u68Xv7zMOt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u68Xv7zMOt .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u68Xv7zMOt .navbar-caption {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68Xv7zMOt .dropdown-item.active,
.cid-u68Xv7zMOt .dropdown-item:active {
  background-color: transparent;
}
.cid-u68Xv7zMOt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u68Xv7zMOt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u68Xv7zMOt .navbar-buttons {
  text-align: center;
}
.cid-u68Xv7zMOt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u68Xv7zMOt .nav-link {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u68Xv7zMOt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-u68Xv7zMOt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u68Xv7zMOt .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u68Xv7zMOt .navbar {
    height: 77px;
  }
  .cid-u68Xv7zMOt .navbar.opened {
    height: auto;
  }
  .cid-u68Xv7zMOt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9kuWUkt0f {
  padding-top: 11rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9kuWUkt0f .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9kuWUkt0f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9kuWUkt0f .row {
  margin: 0 -32px;
}
.cid-v9kuWUkt0f .row .card {
  padding: 0 32px;
  justify-content: center;
}
.cid-v9kuWUkt0f .title-wrapper {
  position: relative;
  z-index: 1;
}
@media (max-width: 992px) {
  .cid-v9kuWUkt0f .title-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9kuWUkt0f .title-wrapper .mbr-label {
  margin-bottom: 24px;
  text-transform: uppercase;
}
.cid-v9kuWUkt0f .title-wrapper .mbr-section-title {
  margin-bottom: 24px;
}
.cid-v9kuWUkt0f .title-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 80%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v9kuWUkt0f .title-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v9kuWUkt0f .title-wrapper .mbr-section-btn {
  margin-top: 24px;
}
.cid-v9kuWUkt0f .image-wrapper {
  padding: 12px;
  border: 1px solid #cdcddd;
  background-color: #e0e0eb;
  box-shadow: 0 .25rem .375rem #00000014;
}
@media (max-width: 992px) {
  .cid-v9kuWUkt0f .image-wrapper {
    padding: 6px;
  }
}
.cid-v9kuWUkt0f .image-wrapper .image-wrap {
  padding: 12px;
  background-color: #ffffff;
  border: 1px solid #cdcddd;
  box-shadow: 0 0.25rem 0.375rem -0.125rem #9797b9;
  overflow: hidden;
}
@media (max-width: 992px) {
  .cid-v9kuWUkt0f .image-wrapper .image-wrap {
    padding: 6px;
  }
}
.cid-v9kuWUkt0f .mbr-label {
  color: #49496d;
  text-align: center;
}
.cid-v9kuWUkt0f .mbr-section-title {
  color: #181824;
}
.cid-v9kuWUkt0f .mbr-section-title,
.cid-v9kuWUkt0f .mbr-section-btn {
  text-align: center;
  color: #cb2c0a;
}
.cid-v9kuWUkt0f .mbr-text,
.cid-v9kuWUkt0f .text-wrapper {
  color: #716c80;
  text-align: center;
}
.cid-vabnUxm7V1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabnUxm7V1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabnUxm7V1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnUxm7V1 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabnUxm7V1 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vabnUxm7V1 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vabnUxm7V1 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vabnUxm7V1 .embla__slide .slide-content {
  width: 100%;
}
.cid-vabnUxm7V1 .embla__slide .slide-content:hover .item-wrapper,
.cid-vabnUxm7V1 .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vabnUxm7V1 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vabnUxm7V1 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vabnUxm7V1 .embla__button--next,
.cid-vabnUxm7V1 .embla__button--prev {
  display: flex;
}
.cid-vabnUxm7V1 .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vabnUxm7V1 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vabnUxm7V1 .embla__button.embla__button--prev {
  left: 0;
}
.cid-vabnUxm7V1 .embla__button.embla__button--next {
  right: 0;
}
.cid-vabnUxm7V1 .embla {
  position: relative;
  width: 100%;
}
.cid-vabnUxm7V1 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vabnUxm7V1 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vabnUxm7V1 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vabnUxm7V1 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabnUxm7V1 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vabnUxm7V1 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vabnUxm7V1 .mbr-section-title,
.cid-vabnUxm7V1 .mbr-section-btn {
  color: #e4330d;
}
.cid-uP8evd9nRc {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uP8evd9nRc .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8evd9nRc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP8evd9nRc .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uP8evd9nRc .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uP8evd9nRc .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP8evd9nRc .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uP8evd9nRc .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uP8evd9nRc .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uP8evd9nRc .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uP8evd9nRc .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uP8evd9nRc .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uP8evd9nRc .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uP8evd9nRc .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uP8evd9nRc .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uP8evd9nRc .items-wrapper .card {
  padding: 0 32px;
}
.cid-uP8evd9nRc .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8evd9nRc .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8evd9nRc .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8evd9nRc .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uP8evd9nRc .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uP8evd9nRc .list-wrapper .list .item-wrap:hover,
.cid-uP8evd9nRc .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uP8evd9nRc .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uP8evd9nRc .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8evd9nRc .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8evd9nRc .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8evd9nRc .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uP8evd9nRc .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uP8evd9nRc .mbr-desc {
  color: #ffffff;
}
.cid-uP8evd9nRc .mbr-text,
.cid-uP8evd9nRc .text-wrapper {
  color: #9aa0a6;
}
.cid-uP8evd9nRc .list {
  color: #9aa0a6;
}
.cid-uP8evd9nRc .mbr-text,
.cid-uP8evd9nRc .mbr-section-btn {
  color: #ffffff;
}
.cid-uP8evd9nRc .list,
.cid-uP8evd9nRc .item-wrap {
  color: #ffffff;
}
.cid-u68Xv7zMOt .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-u68Xv7zMOt .nav-item:focus,
.cid-u68Xv7zMOt .nav-link:focus {
  outline: none;
}
.cid-u68Xv7zMOt .text-white:hover,
.cid-u68Xv7zMOt .text-white:active,
.cid-u68Xv7zMOt .text-white:focus {
  color: white!important;
}
.cid-u68Xv7zMOt .section {
  position: relative;
  overflow: visible!important;
}
.cid-u68Xv7zMOt .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-item:hover {
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-menu {
  background-color: black!important;
}
.cid-u68Xv7zMOt .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-u68Xv7zMOt .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-u68Xv7zMOt .nav-item .nav-link {
    position: relative;
  }
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .collapsed {
  flex-direction: row!important;
}
.cid-u68Xv7zMOt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u68Xv7zMOt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u68Xv7zMOt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u68Xv7zMOt .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u68Xv7zMOt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u68Xv7zMOt .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u68Xv7zMOt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u68Xv7zMOt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u68Xv7zMOt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u68Xv7zMOt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u68Xv7zMOt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u68Xv7zMOt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u68Xv7zMOt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u68Xv7zMOt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u68Xv7zMOt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u68Xv7zMOt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u68Xv7zMOt .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u68Xv7zMOt .navbar-caption {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68Xv7zMOt .dropdown-item.active,
.cid-u68Xv7zMOt .dropdown-item:active {
  background-color: transparent;
}
.cid-u68Xv7zMOt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u68Xv7zMOt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u68Xv7zMOt .navbar-buttons {
  text-align: center;
}
.cid-u68Xv7zMOt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u68Xv7zMOt .nav-link {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u68Xv7zMOt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-u68Xv7zMOt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u68Xv7zMOt .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u68Xv7zMOt .navbar {
    height: 77px;
  }
  .cid-u68Xv7zMOt .navbar.opened {
    height: auto;
  }
  .cid-u68Xv7zMOt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9N08dzuKh {
  padding-top: 180px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9N08dzuKh H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9N08dzuKh .mbr-text,
.cid-v9N08dzuKh .mbr-section-btn {
  color: #232323;
}
.cid-v9N08dzuKh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9N08dzuKh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9N2bsBViB {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #f2f6ff;
}
.cid-v9N2bsBViB img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9N2bsBViB H1 {
  color: #57468b;
}
.cid-v9N2bsBViB .mbr-text,
.cid-v9N2bsBViB .mbr-section-btn {
  color: #716c80;
}
.cid-v9N2bsBViB H3 {
  color: #716c80;
}
.cid-v9N2bsBViB .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9N2bsBViB .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9N2bsBViB .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9N2bsBViB .link:hover {
  color: #0066ff !important;
}
.cid-v9N2bsBViB .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9N2bsBViB DIV {
  color: #57468b;
}
.cid-v9N2bsBViB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9N2bsBViB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9N2bsBViB .mbr-text,
.cid-v9N2bsBViB .media-content {
  color: #232323;
}
.cid-v9N3g3890g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9N3g3890g H1 {
  color: #e4330d;
}
.cid-v9N3g3890g .mbr-text,
.cid-v9N3g3890g .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-v9N3g3890g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9N3g3890g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6G96XXmA {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR6G96XXmA .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR6G96XXmA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6G96XXmA .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uR6G96XXmA .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR6G96XXmA .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-uR6G96XXmA .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uR6G96XXmA .embla__slide .slide-content {
  width: 100%;
}
.cid-uR6G96XXmA .embla__slide .slide-content:hover .item-wrapper,
.cid-uR6G96XXmA .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-uR6G96XXmA .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-uR6G96XXmA .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR6G96XXmA .embla__button--next,
.cid-uR6G96XXmA .embla__button--prev {
  display: flex;
}
.cid-uR6G96XXmA .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uR6G96XXmA .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-uR6G96XXmA .embla__button.embla__button--prev {
  left: 0;
}
.cid-uR6G96XXmA .embla__button.embla__button--next {
  right: 0;
}
.cid-uR6G96XXmA .embla {
  position: relative;
  width: 100%;
}
.cid-uR6G96XXmA .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uR6G96XXmA .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uR6G96XXmA .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uR6G96XXmA .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uR6G96XXmA .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uR6G96XXmA .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uR6G96XXmA .mbr-section-title,
.cid-uR6G96XXmA .mbr-section-btn {
  color: #e4330d;
}
.cid-uP8dHUAogF {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uP8dHUAogF .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8dHUAogF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP8dHUAogF .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uP8dHUAogF .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uP8dHUAogF .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP8dHUAogF .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uP8dHUAogF .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uP8dHUAogF .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uP8dHUAogF .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uP8dHUAogF .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uP8dHUAogF .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uP8dHUAogF .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uP8dHUAogF .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uP8dHUAogF .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uP8dHUAogF .items-wrapper .card {
  padding: 0 32px;
}
.cid-uP8dHUAogF .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8dHUAogF .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8dHUAogF .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8dHUAogF .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uP8dHUAogF .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uP8dHUAogF .list-wrapper .list .item-wrap:hover,
.cid-uP8dHUAogF .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uP8dHUAogF .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uP8dHUAogF .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8dHUAogF .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8dHUAogF .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8dHUAogF .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uP8dHUAogF .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uP8dHUAogF .mbr-desc {
  color: #ffffff;
}
.cid-uP8dHUAogF .mbr-text,
.cid-uP8dHUAogF .text-wrapper {
  color: #9aa0a6;
}
.cid-uP8dHUAogF .list {
  color: #9aa0a6;
}
.cid-uP8dHUAogF .mbr-text,
.cid-uP8dHUAogF .mbr-section-btn {
  color: #ffffff;
}
.cid-uP8dHUAogF .list,
.cid-uP8dHUAogF .item-wrap {
  color: #ffffff;
}
.cid-uOhqipQRdu .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uOhqipQRdu .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uOhqipQRdu .nav-item:focus,
.cid-uOhqipQRdu .nav-link:focus {
  outline: none;
}
.cid-uOhqipQRdu .text-white:hover,
.cid-uOhqipQRdu .text-white:active,
.cid-uOhqipQRdu .text-white:focus {
  color: white!important;
}
.cid-uOhqipQRdu .section {
  position: relative;
  overflow: visible!important;
}
.cid-uOhqipQRdu .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-uOhqipQRdu .dropdown-item:hover {
  color: white!important;
}
.cid-uOhqipQRdu .dropdown-menu {
  background-color: black!important;
}
.cid-uOhqipQRdu .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-uOhqipQRdu .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uOhqipQRdu .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uOhqipQRdu .nav-item .nav-link {
    position: relative;
  }
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOhqipQRdu .collapsed {
  flex-direction: row!important;
}
.cid-uOhqipQRdu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOhqipQRdu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOhqipQRdu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uOhqipQRdu .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uOhqipQRdu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uOhqipQRdu .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOhqipQRdu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOhqipQRdu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uOhqipQRdu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOhqipQRdu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOhqipQRdu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOhqipQRdu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uOhqipQRdu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOhqipQRdu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOhqipQRdu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uOhqipQRdu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uOhqipQRdu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOhqipQRdu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uOhqipQRdu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOhqipQRdu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOhqipQRdu .navbar-caption {
  font-weight: 600!important;
}
.cid-uOhqipQRdu .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOhqipQRdu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOhqipQRdu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOhqipQRdu .dropdown-item.active,
.cid-uOhqipQRdu .dropdown-item:active {
  background-color: transparent;
}
.cid-uOhqipQRdu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOhqipQRdu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOhqipQRdu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOhqipQRdu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOhqipQRdu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOhqipQRdu ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uOhqipQRdu .navbar-buttons {
  text-align: center;
}
.cid-uOhqipQRdu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOhqipQRdu .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOhqipQRdu .nav-link {
  font-weight: 600!important;
}
.cid-uOhqipQRdu a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uOhqipQRdu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOhqipQRdu .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uOhqipQRdu .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOhqipQRdu .navbar {
    height: 77px;
  }
  .cid-uOhqipQRdu .navbar.opened {
    height: auto;
  }
  .cid-uOhqipQRdu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9N3ZEPauw {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9N3ZEPauw H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9N3ZEPauw .mbr-text,
.cid-v9N3ZEPauw .mbr-section-btn {
  color: #232323;
}
.cid-v9N3ZEPauw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9N3ZEPauw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9N9C7FVs0 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f6ff;
}
.cid-v9N9C7FVs0 .item:focus,
.cid-v9N9C7FVs0 span:focus {
  outline: none;
}
.cid-v9N9C7FVs0 .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-v9N9C7FVs0 .content-head {
  max-width: 800px;
}
.cid-v9N9C7FVs0 .item {
  padding: 10px 0;
  color: #e4330d;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-v9N9C7FVs0 .item {
    min-height: 45px;
  }
}
.cid-v9N91HqJEp {
  padding-top: 45px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f2f6ff;
}
.cid-v9N91HqJEp .card-header {
  background: transparent;
}
.cid-v9N91HqJEp .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-v9N91HqJEp .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v9N91HqJEp .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-v9N91HqJEp .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-v9N91HqJEp .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9N91HqJEp .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v9N91HqJEp .card .panel-body {
  color: #767676;
}
.cid-v9N91HqJEp h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #ffffff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-v9N91HqJEp H4 {
  color: #232323;
}
.cid-v9N91HqJEp H2 {
  color: #cb2c0a;
  text-align: justify;
}
.cid-v9N91HqJEp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9N91HqJEp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9N91HqJEp .panel-text {
  color: #232323;
}
.cid-va990wNlkJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va990wNlkJ H1 {
  color: #e4330d;
}
.cid-va990wNlkJ .mbr-text,
.cid-va990wNlkJ .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va990wNlkJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-va990wNlkJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6GhYnGcT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR6GhYnGcT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR6GhYnGcT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6GhYnGcT .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uR6GhYnGcT .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR6GhYnGcT .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-uR6GhYnGcT .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uR6GhYnGcT .embla__slide .slide-content {
  width: 100%;
}
.cid-uR6GhYnGcT .embla__slide .slide-content:hover .item-wrapper,
.cid-uR6GhYnGcT .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-uR6GhYnGcT .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-uR6GhYnGcT .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR6GhYnGcT .embla__button--next,
.cid-uR6GhYnGcT .embla__button--prev {
  display: flex;
}
.cid-uR6GhYnGcT .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uR6GhYnGcT .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-uR6GhYnGcT .embla__button.embla__button--prev {
  left: 0;
}
.cid-uR6GhYnGcT .embla__button.embla__button--next {
  right: 0;
}
.cid-uR6GhYnGcT .embla {
  position: relative;
  width: 100%;
}
.cid-uR6GhYnGcT .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uR6GhYnGcT .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uR6GhYnGcT .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uR6GhYnGcT .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uR6GhYnGcT .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uR6GhYnGcT .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uR6GhYnGcT .mbr-section-title,
.cid-uR6GhYnGcT .mbr-section-btn {
  color: #e4330d;
}
.cid-uP8dTo5iry {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uP8dTo5iry .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8dTo5iry .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP8dTo5iry .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uP8dTo5iry .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uP8dTo5iry .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP8dTo5iry .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uP8dTo5iry .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uP8dTo5iry .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uP8dTo5iry .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uP8dTo5iry .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uP8dTo5iry .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uP8dTo5iry .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uP8dTo5iry .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uP8dTo5iry .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uP8dTo5iry .items-wrapper .card {
  padding: 0 32px;
}
.cid-uP8dTo5iry .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8dTo5iry .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8dTo5iry .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8dTo5iry .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uP8dTo5iry .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uP8dTo5iry .list-wrapper .list .item-wrap:hover,
.cid-uP8dTo5iry .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uP8dTo5iry .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uP8dTo5iry .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP8dTo5iry .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP8dTo5iry .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP8dTo5iry .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uP8dTo5iry .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uP8dTo5iry .mbr-desc {
  color: #ffffff;
}
.cid-uP8dTo5iry .mbr-text,
.cid-uP8dTo5iry .text-wrapper {
  color: #9aa0a6;
}
.cid-uP8dTo5iry .list {
  color: #9aa0a6;
}
.cid-uP8dTo5iry .mbr-text,
.cid-uP8dTo5iry .mbr-section-btn {
  color: #ffffff;
}
.cid-uP8dTo5iry .list,
.cid-uP8dTo5iry .item-wrap {
  color: #ffffff;
}
.cid-uOhqipQRdu .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uOhqipQRdu .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-uOhqipQRdu .nav-item:focus,
.cid-uOhqipQRdu .nav-link:focus {
  outline: none;
}
.cid-uOhqipQRdu .text-white:hover,
.cid-uOhqipQRdu .text-white:active,
.cid-uOhqipQRdu .text-white:focus {
  color: white!important;
}
.cid-uOhqipQRdu .section {
  position: relative;
  overflow: visible!important;
}
.cid-uOhqipQRdu .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-uOhqipQRdu .dropdown-item:hover {
  color: white!important;
}
.cid-uOhqipQRdu .dropdown-menu {
  background-color: black!important;
}
.cid-uOhqipQRdu .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-uOhqipQRdu .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-uOhqipQRdu .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-uOhqipQRdu .nav-item .nav-link {
    position: relative;
  }
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-uOhqipQRdu .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-uOhqipQRdu .collapsed {
  flex-direction: row!important;
}
.cid-uOhqipQRdu .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOhqipQRdu .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOhqipQRdu .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-uOhqipQRdu .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-uOhqipQRdu .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-uOhqipQRdu .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOhqipQRdu .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOhqipQRdu .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-uOhqipQRdu .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOhqipQRdu .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-uOhqipQRdu .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-uOhqipQRdu .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOhqipQRdu .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-uOhqipQRdu .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-uOhqipQRdu .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOhqipQRdu .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOhqipQRdu .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-uOhqipQRdu .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-uOhqipQRdu .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-uOhqipQRdu .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-uOhqipQRdu .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-uOhqipQRdu .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-uOhqipQRdu .navbar-caption {
  font-weight: 600!important;
}
.cid-uOhqipQRdu .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOhqipQRdu .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOhqipQRdu .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOhqipQRdu .dropdown-item.active,
.cid-uOhqipQRdu .dropdown-item:active {
  background-color: transparent;
}
.cid-uOhqipQRdu .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOhqipQRdu .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOhqipQRdu .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOhqipQRdu .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-uOhqipQRdu .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOhqipQRdu ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-uOhqipQRdu .navbar-buttons {
  text-align: center;
}
.cid-uOhqipQRdu button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-uOhqipQRdu button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-uOhqipQRdu nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-uOhqipQRdu .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-uOhqipQRdu .nav-link {
  font-weight: 600!important;
}
.cid-uOhqipQRdu a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-uOhqipQRdu .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-uOhqipQRdu .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-uOhqipQRdu .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOhqipQRdu .navbar {
    height: 77px;
  }
  .cid-uOhqipQRdu .navbar.opened {
    height: auto;
  }
  .cid-uOhqipQRdu .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9N5vqa6xF {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9N5vqa6xF H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9N5vqa6xF .mbr-text,
.cid-v9N5vqa6xF .mbr-section-btn {
  color: #232323;
}
.cid-v9N5vqa6xF .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9N5vqa6xF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9N5BwIuRb {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9N5BwIuRb .item:focus,
.cid-v9N5BwIuRb span:focus {
  outline: none;
}
.cid-v9N5BwIuRb .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-v9N5BwIuRb .content-head {
  max-width: 800px;
}
.cid-v9N5BwIuRb .item {
  padding: 10px 0;
  color: #e4330d;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-v9N5BwIuRb .item {
    min-height: 45px;
  }
}
.cid-v2wzNAo8Ai {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2wzNAo8Ai .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wzNAo8Ai .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2wzNAo8Ai .content-wrapper {
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .cid-v2wzNAo8Ai .content-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v2wzNAo8Ai .content-wrapper .title-wrapper {
  margin-bottom: 16px;
}
.cid-v2wzNAo8Ai .content-wrapper .title-wrapper .mbr-section-title {
  margin-bottom: 0;
}
.cid-v2wzNAo8Ai .content-wrapper .title-wrapper .mbr-section-subtitle {
  margin-bottom: 0;
}
.cid-v2wzNAo8Ai .content-wrapper .text-wrapper .mbr-text {
  display: inline-block;
  width: 50%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v2wzNAo8Ai .content-wrapper .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v2wzNAo8Ai .list-wrapper .list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: inline-flex;
  flex-direction: column;
}
.cid-v2wzNAo8Ai .list-wrapper .list .item-wrap {
  position: relative;
  margin-bottom: 20px;
  padding-left: 28px;
}
.cid-v2wzNAo8Ai .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 5px;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #e4330d;
  color: #e4330d;
  font-size: 11px;
}
.cid-v2wzNAo8Ai .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v2wzNAo8Ai .list_2 {
  padding-left: 32px;
}
@media (max-width: 992px) {
  .cid-v2wzNAo8Ai .list_2 {
    padding-left: 0;
  }
}
.cid-v2wzNAo8Ai .mbr-section-title {
  color: #cb2c0a;
  text-align: center;
}
.cid-v2wzNAo8Ai .mbr-section-subtitle {
  color: #ff6d99;
  text-align: center;
}
.cid-v2wzNAo8Ai .mbr-text,
.cid-v2wzNAo8Ai .text-wrapper {
  color: #e4330d;
  text-align: center;
}
.cid-v2wzNAo8Ai .list {
  color: #666666;
}
.cid-v2wzNAo8Ai .list,
.cid-v2wzNAo8Ai .item-wrap,
.cid-v2wzNAo8Ai .list-wrapper {
  color: #232323;
}
.cid-uOhqGIPsP0 {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-uOhqGIPsP0 h4 {
  margin-bottom: 0;
}
.cid-uOhqGIPsP0 p {
  color: #767676;
}
.cid-uOhqGIPsP0 .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uOhqGIPsP0 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uOhqGIPsP0 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uOhqGIPsP0 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-uOhqGIPsP0 .btn-info-outline:active,
.cid-uOhqGIPsP0 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uOhqGIPsP0 .card-box {
  padding-top: 2rem;
}
.cid-uOhqGIPsP0 .card-wrapper {
  height: 100%;
}
.cid-uOhqGIPsP0 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uOhqGIPsP0 img {
  border-radius: 8px;
}
.cid-uOhqGIPsP0 .card-title {
  color: #e4330d;
}
.cid-uOhqGIPsP0 .main-title {
  color: #cb2c0a;
  text-align: center;
}
.cid-uOhqGIPsP0 DIV {
  color: #57468b;
}
.cid-uOhqGIPsP0 .card-img {
  width: auto;
}
.cid-uOhqGIPsP0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOhqGIPsP0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOhqGIPsP0 .mbr-text,
.cid-uOhqGIPsP0 .mbr-section-btn {
  color: #232323;
}
.cid-v9N9R2ucT8 {
  padding-top: 60px;
  padding-bottom: 60px;
  position: relative;
  background-color: #ffffff;
}
.cid-v9N9R2ucT8 .card-header {
  background: transparent;
}
.cid-v9N9R2ucT8 .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-v9N9R2ucT8 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v9N9R2ucT8 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-v9N9R2ucT8 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-v9N9R2ucT8 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9N9R2ucT8 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v9N9R2ucT8 .card .panel-body {
  color: #767676;
}
.cid-v9N9R2ucT8 h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #e1e8ff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-v9N9R2ucT8 H4 {
  color: #232323;
}
.cid-v9N9R2ucT8 H2 {
  color: #e4330d;
  text-align: justify;
}
.cid-v9N9R2ucT8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9N9R2ucT8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2wCboPLpB {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-v2wCboPLpB h4 {
  margin-bottom: 0;
}
.cid-v2wCboPLpB p {
  color: #767676;
}
.cid-v2wCboPLpB .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v2wCboPLpB .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v2wCboPLpB .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v2wCboPLpB .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-v2wCboPLpB .btn-info-outline:active,
.cid-v2wCboPLpB .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v2wCboPLpB .card-box {
  padding-top: 2rem;
}
.cid-v2wCboPLpB .card-wrapper {
  height: 100%;
}
.cid-v2wCboPLpB .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v2wCboPLpB img {
  border-radius: 8px;
}
.cid-v2wCboPLpB .card-title {
  color: #232323;
}
.cid-v2wCboPLpB .main-title {
  color: #e4330d;
  text-align: center;
}
.cid-v2wCboPLpB DIV {
  color: #57468b;
}
.cid-v2wCboPLpB .card-img {
  width: auto;
}
.cid-v2wCboPLpB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v2wCboPLpB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v2wBdqWel6 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v2wBdqWel6 .card-subtitle {
  text-align: left;
  margin-left: -15px;
  color: #000000;
}
.cid-v2wBdqWel6 .flex-column {
  transition: all 300ms ease;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  background-color: #ffffff;
}
.cid-v2wBdqWel6 .flex-column:hover {
  box-shadow: 5px 5px 0 0 #000000 !important;
  background-color: #e4330d;
}
.cid-v2wBdqWel6 .flex-column .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-v2wBdqWel6 .flex-column .iconfont-wrapper .mbr-iconfont {
  color: #cb2c0a;
}
.cid-v2wBdqWel6 .card-text {
  margin-bottom: 2rem;
  text-align: left;
  color: #000000;
}
.cid-v2wBdqWel6 .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-v2wBdqWel6 .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-v2wBdqWel6 img {
  border-radius: 10%;
  height: 65px;
  width: auto;
  margin: 0;
}
.cid-v2wBdqWel6 .flex-column .mbr-iconfont::before {
  font-size: 25px;
}
.cid-v2wBdqWel6 .card-title {
  margin-bottom: 4px;
  padding: 0;
  margin-left: -15px;
}
.cid-v2wBdqWel6 .col-12.col-md-6.col-lg-4 {
  margin-top: 30px;
}
.cid-v2wBdqWel6 .col-12.col-md-6.col-lg-4:nth-child(1) {
  margin-top: 0px;
}
.cid-v2wBdqWel6 .col-12.col-md-6.col-lg-4:nth-child(2) {
  margin-top: 0px;
}
.cid-v2wBdqWel6 .col-12.col-md-6.col-lg-4:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-v2wBdqWel6 .col-12.col-md-6.col-lg-4:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-v2wBdqWel6 .col-12.col-md-6.col-lg-4:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-v2wBdqWel6 .align {
  display: flex;
  align-items: center;
}
.cid-v2wBdqWel6 .mbr-section-title {
  margin-bottom: 56px;
  color: #cb2c0a;
  text-align: justify;
}
.cid-v2wBdqWel6 .btn {
  margin-top: 20px;
  padding: 1rem 2rem;
}
.cid-v2wBdqWel6 .card-text,
.cid-v2wBdqWel6 .iconfont-wrapper {
  color: #000000;
}
.cid-v2wBdqWel6 .item-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-uR6Fa8nppy {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uR6Fa8nppy .mbr-fallback-image.disabled {
  display: none;
}
.cid-uR6Fa8nppy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uR6Fa8nppy .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uR6Fa8nppy .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uR6Fa8nppy .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-uR6Fa8nppy .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uR6Fa8nppy .embla__slide .slide-content {
  width: 100%;
}
.cid-uR6Fa8nppy .embla__slide .slide-content:hover .item-wrapper,
.cid-uR6Fa8nppy .embla__slide .slide-content:focus .item-wrapper {
  background-color: #cb2c0a;
}
.cid-uR6Fa8nppy .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-uR6Fa8nppy .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uR6Fa8nppy .embla__button--next,
.cid-uR6Fa8nppy .embla__button--prev {
  display: flex;
}
.cid-uR6Fa8nppy .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uR6Fa8nppy .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-uR6Fa8nppy .embla__button.embla__button--prev {
  left: 0;
}
.cid-uR6Fa8nppy .embla__button.embla__button--next {
  right: 0;
}
.cid-uR6Fa8nppy .embla {
  position: relative;
  width: 100%;
}
.cid-uR6Fa8nppy .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uR6Fa8nppy .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uR6Fa8nppy .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uR6Fa8nppy .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uR6Fa8nppy .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uR6Fa8nppy .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uR6Fa8nppy .mbr-section-title,
.cid-uR6Fa8nppy .mbr-section-btn {
  color: #e4330d;
}
.cid-uP88jHuqzP {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uP88jHuqzP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP88jHuqzP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP88jHuqzP .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uP88jHuqzP .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uP88jHuqzP .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP88jHuqzP .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uP88jHuqzP .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uP88jHuqzP .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uP88jHuqzP .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uP88jHuqzP .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uP88jHuqzP .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uP88jHuqzP .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uP88jHuqzP .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uP88jHuqzP .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uP88jHuqzP .items-wrapper .card {
  padding: 0 32px;
}
.cid-uP88jHuqzP .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP88jHuqzP .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP88jHuqzP .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP88jHuqzP .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uP88jHuqzP .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uP88jHuqzP .list-wrapper .list .item-wrap:hover,
.cid-uP88jHuqzP .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uP88jHuqzP .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uP88jHuqzP .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP88jHuqzP .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP88jHuqzP .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP88jHuqzP .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uP88jHuqzP .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uP88jHuqzP .mbr-desc {
  color: #ffffff;
}
.cid-uP88jHuqzP .mbr-text,
.cid-uP88jHuqzP .text-wrapper {
  color: #9aa0a6;
}
.cid-uP88jHuqzP .list {
  color: #9aa0a6;
}
.cid-uP88jHuqzP .mbr-text,
.cid-uP88jHuqzP .mbr-section-btn {
  color: #ffffff;
}
.cid-uP88jHuqzP .list,
.cid-uP88jHuqzP .item-wrap {
  color: #ffffff;
}
.cid-v9T3tVMC9Z .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-v9T3tVMC9Z .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-v9T3tVMC9Z .nav-item:focus,
.cid-v9T3tVMC9Z .nav-link:focus {
  outline: none;
}
.cid-v9T3tVMC9Z .text-white:hover,
.cid-v9T3tVMC9Z .text-white:active,
.cid-v9T3tVMC9Z .text-white:focus {
  color: white!important;
}
.cid-v9T3tVMC9Z .section {
  position: relative;
  overflow: visible!important;
}
.cid-v9T3tVMC9Z .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-v9T3tVMC9Z .dropdown-item:hover {
  color: white!important;
}
.cid-v9T3tVMC9Z .dropdown-menu {
  background-color: black!important;
}
.cid-v9T3tVMC9Z .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-v9T3tVMC9Z .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-v9T3tVMC9Z .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-v9T3tVMC9Z .nav-item .nav-link {
    position: relative;
  }
}
.cid-v9T3tVMC9Z .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v9T3tVMC9Z .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9T3tVMC9Z .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-v9T3tVMC9Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v9T3tVMC9Z .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v9T3tVMC9Z .collapsed {
  flex-direction: row!important;
}
.cid-v9T3tVMC9Z .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9T3tVMC9Z .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9T3tVMC9Z .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-v9T3tVMC9Z .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-v9T3tVMC9Z .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v9T3tVMC9Z .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-v9T3tVMC9Z .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9T3tVMC9Z .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v9T3tVMC9Z .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9T3tVMC9Z .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9T3tVMC9Z .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9T3tVMC9Z .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-v9T3tVMC9Z .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9T3tVMC9Z .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v9T3tVMC9Z .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v9T3tVMC9Z .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9T3tVMC9Z .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9T3tVMC9Z .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9T3tVMC9Z .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9T3tVMC9Z .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9T3tVMC9Z .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-v9T3tVMC9Z .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v9T3tVMC9Z .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v9T3tVMC9Z .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9T3tVMC9Z .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v9T3tVMC9Z .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v9T3tVMC9Z .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v9T3tVMC9Z .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-v9T3tVMC9Z .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9T3tVMC9Z .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9T3tVMC9Z .navbar-caption {
  font-weight: 600!important;
}
.cid-v9T3tVMC9Z .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9T3tVMC9Z .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9T3tVMC9Z .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9T3tVMC9Z .dropdown-item.active,
.cid-v9T3tVMC9Z .dropdown-item:active {
  background-color: transparent;
}
.cid-v9T3tVMC9Z .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9T3tVMC9Z .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9T3tVMC9Z .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9T3tVMC9Z .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9T3tVMC9Z .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v9T3tVMC9Z ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v9T3tVMC9Z .navbar-buttons {
  text-align: center;
}
.cid-v9T3tVMC9Z button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9T3tVMC9Z button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-v9T3tVMC9Z button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9T3tVMC9Z button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9T3tVMC9Z button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9T3tVMC9Z button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9T3tVMC9Z nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9T3tVMC9Z nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9T3tVMC9Z nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9T3tVMC9Z nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9T3tVMC9Z .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v9T3tVMC9Z .nav-link {
  font-weight: 600!important;
}
.cid-v9T3tVMC9Z a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9T3tVMC9Z .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-v9T3tVMC9Z .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-v9T3tVMC9Z .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9T3tVMC9Z .navbar {
    height: 77px;
  }
  .cid-v9T3tVMC9Z .navbar.opened {
    height: auto;
  }
  .cid-v9T3tVMC9Z .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9T3tWppPr {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9T3tWppPr H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9T3tWppPr .mbr-text,
.cid-v9T3tWppPr .mbr-section-btn {
  color: #232323;
}
.cid-v9T3tWppPr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T3tWppPr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3tXdbwI {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f6ff;
}
.cid-v9T3tXdbwI .item:focus,
.cid-v9T3tXdbwI span:focus {
  outline: none;
}
.cid-v9T3tXdbwI .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-v9T3tXdbwI .content-head {
  max-width: 800px;
}
.cid-v9T3tXdbwI .item {
  padding: 10px 0;
  color: #e4330d;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-v9T3tXdbwI .item {
    min-height: 45px;
  }
}
.cid-v9T3tXUK60 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9T3tXUK60 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9T3tXUK60 H1 {
  color: #cb2c0a;
}
.cid-v9T3tXUK60 .mbr-text,
.cid-v9T3tXUK60 .mbr-section-btn {
  color: #716c80;
}
.cid-v9T3tXUK60 H3 {
  color: #716c80;
}
.cid-v9T3tXUK60 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9T3tXUK60 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9T3tXUK60 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9T3tXUK60 .link:hover {
  color: #0066ff !important;
}
.cid-v9T3tXUK60 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9T3tXUK60 DIV {
  color: #57468b;
}
.cid-v9T3tXUK60 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T3tXUK60 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3tXUK60 .mbr-text,
.cid-v9T3tXUK60 .media-content {
  color: #232323;
}
.cid-v9T3tYkH94 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9T3tYkH94 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9T3tYkH94 H1 {
  color: #cb2c0a;
}
.cid-v9T3tYkH94 .mbr-text,
.cid-v9T3tYkH94 .mbr-section-btn {
  color: #716c80;
}
.cid-v9T3tYkH94 H3 {
  color: #716c80;
}
.cid-v9T3tYkH94 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9T3tYkH94 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9T3tYkH94 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9T3tYkH94 .link:hover {
  color: #0066ff !important;
}
.cid-v9T3tYkH94 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9T3tYkH94 DIV {
  color: #57468b;
}
.cid-v9T3tYkH94 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T3tYkH94 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3tYkH94 .mbr-text,
.cid-v9T3tYkH94 .media-content {
  color: #232323;
}
.cid-v9T7PkRgYG {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v9T7PkRgYG img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v9T7PkRgYG .mbr-text,
.cid-v9T7PkRgYG .mbr-section-btn {
  color: #57468b;
}
.cid-v9T7PkRgYG H3 {
  color: #57468b;
}
.cid-v9T7PkRgYG H1 {
  color: #cb2c0a;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-v9T7PkRgYG img {
    width: 100%!important;
  }
}
.cid-v9T7PkRgYG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T7PkRgYG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3tWTKpD {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9T3tWTKpD img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9T3tWTKpD H1 {
  color: #cb2c0a;
}
.cid-v9T3tWTKpD .mbr-text,
.cid-v9T3tWTKpD .mbr-section-btn {
  color: #716c80;
}
.cid-v9T3tWTKpD H3 {
  color: #716c80;
}
.cid-v9T3tWTKpD .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9T3tWTKpD .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9T3tWTKpD .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9T3tWTKpD .link:hover {
  color: #0066ff !important;
}
.cid-v9T3tWTKpD .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9T3tWTKpD DIV {
  color: #57468b;
}
.cid-v9T3tWTKpD .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T3tWTKpD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3tWTKpD .mbr-text,
.cid-v9T3tWTKpD .media-content {
  color: #232323;
}
.cid-v9Tb4FAWjH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9Tb4FAWjH img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9Tb4FAWjH H1 {
  color: #cb2c0a;
}
.cid-v9Tb4FAWjH .mbr-text,
.cid-v9Tb4FAWjH .mbr-section-btn {
  color: #716c80;
}
.cid-v9Tb4FAWjH H3 {
  color: #716c80;
}
.cid-v9Tb4FAWjH .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9Tb4FAWjH .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9Tb4FAWjH .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9Tb4FAWjH .link:hover {
  color: #0066ff !important;
}
.cid-v9Tb4FAWjH .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9Tb4FAWjH DIV {
  color: #57468b;
}
.cid-v9Tb4FAWjH .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Tb4FAWjH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Tb4FAWjH .mbr-text,
.cid-v9Tb4FAWjH .media-content {
  color: #232323;
}
.cid-v9T3tZ03tX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
  background: linear-gradient(to top right, #f2f6ff, #f2f6ff);
}
.cid-v9T3tZ03tX .mbr-text {
  color: #232323;
}
.cid-v9T3tZ03tX .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-v9T3tZ03tX p {
  margin: 0;
}
.cid-v9T3tZ03tX .mbr-iconfont {
  transition: all 0.3s;
  color: #cb2c0a !important;
  font-size: 2.8rem !important;
}
.cid-v9T3tZ03tX .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-v9T3tZ03tX .card:hover .mbr-iconfont {
  color: #0066ff !important;
}
.cid-v9T3tZ03tX .card-title,
.cid-v9T3tZ03tX .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-v9T3tZ03tX .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-v9T3tZ03tX .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-v9T3tZ03tX .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-v9T3tZ03tX .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-v9T3tZ03tX .card-img span {
    margin-right: 0rem;
  }
  .cid-v9T3tZ03tX .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-v9T3tZ03tX .card-img {
  width: auto;
}
.cid-v9T3tZ03tX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T3tZ03tX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3tZ03tX .card-title {
  color: #232323;
}
.cid-v9T3u2I2f4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9T3u2I2f4 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9T3u2I2f4 H1 {
  color: #cb2c0a;
}
.cid-v9T3u2I2f4 .mbr-text,
.cid-v9T3u2I2f4 .mbr-section-btn {
  color: #716c80;
}
.cid-v9T3u2I2f4 H3 {
  color: #716c80;
}
.cid-v9T3u2I2f4 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9T3u2I2f4 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9T3u2I2f4 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9T3u2I2f4 .link:hover {
  color: #0066ff !important;
}
.cid-v9T3u2I2f4 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9T3u2I2f4 DIV {
  color: #57468b;
}
.cid-v9T3u2I2f4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T3u2I2f4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3u2I2f4 .mbr-text,
.cid-v9T3u2I2f4 .media-content {
  color: #232323;
}
.cid-va999b9DNG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va999b9DNG H1 {
  color: #e4330d;
}
.cid-va999b9DNG .mbr-text,
.cid-va999b9DNG .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va999b9DNG .mbr-fallback-image.disabled {
  display: none;
}
.cid-va999b9DNG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnDNp7N9 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabnDNp7N9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabnDNp7N9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnDNp7N9 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabnDNp7N9 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vabnDNp7N9 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vabnDNp7N9 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vabnDNp7N9 .embla__slide .slide-content {
  width: 100%;
}
.cid-vabnDNp7N9 .embla__slide .slide-content:hover .item-wrapper,
.cid-vabnDNp7N9 .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vabnDNp7N9 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vabnDNp7N9 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vabnDNp7N9 .embla__button--next,
.cid-vabnDNp7N9 .embla__button--prev {
  display: flex;
}
.cid-vabnDNp7N9 .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vabnDNp7N9 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vabnDNp7N9 .embla__button.embla__button--prev {
  left: 0;
}
.cid-vabnDNp7N9 .embla__button.embla__button--next {
  right: 0;
}
.cid-vabnDNp7N9 .embla {
  position: relative;
  width: 100%;
}
.cid-vabnDNp7N9 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vabnDNp7N9 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vabnDNp7N9 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vabnDNp7N9 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabnDNp7N9 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vabnDNp7N9 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vabnDNp7N9 .mbr-section-title,
.cid-vabnDNp7N9 .mbr-section-btn {
  color: #e4330d;
}
.cid-v9T3u5J7t4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-v9T3u5J7t4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9T3u5J7t4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9T3u5J7t4 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v9T3u5J7t4 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-v9T3u5J7t4 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v9T3u5J7t4 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-v9T3u5J7t4 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v9T3u5J7t4 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v9T3u5J7t4 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v9T3u5J7t4 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-v9T3u5J7t4 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v9T3u5J7t4 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9T3u5J7t4 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-v9T3u5J7t4 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v9T3u5J7t4 .items-wrapper .card {
  padding: 0 32px;
}
.cid-v9T3u5J7t4 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v9T3u5J7t4 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9T3u5J7t4 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v9T3u5J7t4 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9T3u5J7t4 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v9T3u5J7t4 .list-wrapper .list .item-wrap:hover,
.cid-v9T3u5J7t4 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v9T3u5J7t4 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v9T3u5J7t4 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v9T3u5J7t4 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9T3u5J7t4 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v9T3u5J7t4 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v9T3u5J7t4 .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-v9T3u5J7t4 .mbr-desc {
  color: #ffffff;
}
.cid-v9T3u5J7t4 .mbr-text,
.cid-v9T3u5J7t4 .text-wrapper {
  color: #9aa0a6;
}
.cid-v9T3u5J7t4 .list {
  color: #9aa0a6;
}
.cid-v9T3u5J7t4 .mbr-text,
.cid-v9T3u5J7t4 .mbr-section-btn {
  color: #ffffff;
}
.cid-v9T3u5J7t4 .list,
.cid-v9T3u5J7t4 .item-wrap {
  color: #ffffff;
}
.cid-v9FX8VlkP2 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-v9FX8VlkP2 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-v9FX8VlkP2 .nav-item:focus,
.cid-v9FX8VlkP2 .nav-link:focus {
  outline: none;
}
.cid-v9FX8VlkP2 .text-white:hover,
.cid-v9FX8VlkP2 .text-white:active,
.cid-v9FX8VlkP2 .text-white:focus {
  color: white!important;
}
.cid-v9FX8VlkP2 .section {
  position: relative;
  overflow: visible!important;
}
.cid-v9FX8VlkP2 .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-v9FX8VlkP2 .dropdown-item:hover {
  color: white!important;
}
.cid-v9FX8VlkP2 .dropdown-menu {
  background-color: black!important;
}
.cid-v9FX8VlkP2 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-v9FX8VlkP2 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-v9FX8VlkP2 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-v9FX8VlkP2 .nav-item .nav-link {
    position: relative;
  }
}
.cid-v9FX8VlkP2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v9FX8VlkP2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9FX8VlkP2 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-v9FX8VlkP2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v9FX8VlkP2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v9FX8VlkP2 .collapsed {
  flex-direction: row!important;
}
.cid-v9FX8VlkP2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9FX8VlkP2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9FX8VlkP2 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-v9FX8VlkP2 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-v9FX8VlkP2 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v9FX8VlkP2 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-v9FX8VlkP2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9FX8VlkP2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v9FX8VlkP2 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9FX8VlkP2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9FX8VlkP2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9FX8VlkP2 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-v9FX8VlkP2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9FX8VlkP2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v9FX8VlkP2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v9FX8VlkP2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9FX8VlkP2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9FX8VlkP2 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9FX8VlkP2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9FX8VlkP2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9FX8VlkP2 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-v9FX8VlkP2 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v9FX8VlkP2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v9FX8VlkP2 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9FX8VlkP2 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v9FX8VlkP2 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v9FX8VlkP2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v9FX8VlkP2 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-v9FX8VlkP2 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9FX8VlkP2 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9FX8VlkP2 .navbar-caption {
  font-weight: 600!important;
}
.cid-v9FX8VlkP2 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9FX8VlkP2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9FX8VlkP2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9FX8VlkP2 .dropdown-item.active,
.cid-v9FX8VlkP2 .dropdown-item:active {
  background-color: transparent;
}
.cid-v9FX8VlkP2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9FX8VlkP2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9FX8VlkP2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9FX8VlkP2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9FX8VlkP2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v9FX8VlkP2 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v9FX8VlkP2 .navbar-buttons {
  text-align: center;
}
.cid-v9FX8VlkP2 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9FX8VlkP2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-v9FX8VlkP2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9FX8VlkP2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9FX8VlkP2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9FX8VlkP2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9FX8VlkP2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9FX8VlkP2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9FX8VlkP2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9FX8VlkP2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9FX8VlkP2 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v9FX8VlkP2 .nav-link {
  font-weight: 600!important;
}
.cid-v9FX8VlkP2 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9FX8VlkP2 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-v9FX8VlkP2 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-v9FX8VlkP2 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9FX8VlkP2 .navbar {
    height: 77px;
  }
  .cid-v9FX8VlkP2 .navbar.opened {
    height: auto;
  }
  .cid-v9FX8VlkP2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9FX8W4a8A {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9FX8W4a8A H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9FX8W4a8A .mbr-text,
.cid-v9FX8W4a8A .mbr-section-btn {
  color: #1f1f1f;
}
.cid-v9FX8W4a8A .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX8W4a8A .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8X4sj4 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f6ff;
}
.cid-v9FX8X4sj4 .item:focus,
.cid-v9FX8X4sj4 span:focus {
  outline: none;
}
.cid-v9FX8X4sj4 .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-v9FX8X4sj4 .content-head {
  max-width: 800px;
}
.cid-v9FX8X4sj4 .item {
  padding: 10px 0;
  color: #e4330d;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-v9FX8X4sj4 .item {
    min-height: 45px;
  }
}
.cid-v9FX8WEQ7g {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FX8WEQ7g img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FX8WEQ7g H1 {
  color: #cb2c0a;
}
.cid-v9FX8WEQ7g .mbr-text,
.cid-v9FX8WEQ7g .mbr-section-btn {
  color: #716c80;
}
.cid-v9FX8WEQ7g H3 {
  color: #716c80;
}
.cid-v9FX8WEQ7g .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FX8WEQ7g .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FX8WEQ7g .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FX8WEQ7g .link:hover {
  color: #0066ff !important;
}
.cid-v9FX8WEQ7g .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FX8WEQ7g DIV {
  color: #57468b;
}
.cid-v9FX8WEQ7g .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX8WEQ7g .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8WEQ7g .mbr-text,
.cid-v9FX8WEQ7g .media-content {
  color: #232323;
}
.cid-v9FX8Xrway {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FX8Xrway img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FX8Xrway H1 {
  color: #cb2c0a;
}
.cid-v9FX8Xrway .mbr-text,
.cid-v9FX8Xrway .mbr-section-btn {
  color: #716c80;
}
.cid-v9FX8Xrway H3 {
  color: #716c80;
}
.cid-v9FX8Xrway .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FX8Xrway .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FX8Xrway .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FX8Xrway .link:hover {
  color: #0066ff !important;
}
.cid-v9FX8Xrway .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FX8Xrway DIV {
  color: #57468b;
}
.cid-v9FX8Xrway .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX8Xrway .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8Xrway .mbr-text,
.cid-v9FX8Xrway .media-content {
  color: #232323;
}
.cid-v9GCryKytk {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v9GCryKytk img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v9GCryKytk .mbr-text,
.cid-v9GCryKytk .mbr-section-btn {
  color: #57468b;
}
.cid-v9GCryKytk H3 {
  color: #57468b;
}
.cid-v9GCryKytk H1 {
  color: #cb2c0a;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-v9GCryKytk img {
    width: 100%!important;
  }
}
.cid-v9GCryKytk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9GCryKytk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8XOjAq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FX8XOjAq img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FX8XOjAq H1 {
  color: #cb2c0a;
}
.cid-v9FX8XOjAq .mbr-text,
.cid-v9FX8XOjAq .mbr-section-btn {
  color: #716c80;
}
.cid-v9FX8XOjAq H3 {
  color: #716c80;
}
.cid-v9FX8XOjAq .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FX8XOjAq .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FX8XOjAq .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FX8XOjAq .link:hover {
  color: #0066ff !important;
}
.cid-v9FX8XOjAq .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FX8XOjAq DIV {
  color: #57468b;
}
.cid-v9FX8XOjAq .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX8XOjAq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8XOjAq .mbr-text,
.cid-v9FX8XOjAq .media-content {
  color: #232323;
}
.cid-v9FX90CPuw {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f2f6ff;
}
.cid-v9FX90CPuw .mbr-section-subtitle {
  color: #767676;
  text-align: justify;
}
.cid-v9FX90CPuw .container-table {
  margin: 0 auto;
}
.cid-v9FX90CPuw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9FX90CPuw .dataTables_wrapper {
  display: block;
}
.cid-v9FX90CPuw .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9FX90CPuw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9FX90CPuw table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #465052;
  margin-bottom: 0;
}
.cid-v9FX90CPuw table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #465052;
  transition: all .2s;
}
.cid-v9FX90CPuw table th:hover {
  background: #465052;
  color: #ffffff;
}
.cid-v9FX90CPuw table td {
  border: 1px solid #465052;
}
.cid-v9FX90CPuw .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9FX90CPuw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9FX90CPuw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9FX90CPuw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9FX90CPuw .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9FX90CPuw .dataTables_filter {
    text-align: center;
  }
  .cid-v9FX90CPuw .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9FX90CPuw .head-item {
  color: #57468b;
  text-align: center;
}
.cid-v9FX90CPuw .body-item {
  color: #716c80;
  text-align: center;
}
.cid-v9FX90CPuw .mbr-section-title {
  color: #cb2c0a;
  text-align: justify;
}
.cid-v9FX90CPuw .head-item1 {
  color: #232323;
}
.cid-v9FX90CPuw .body-item1 {
  color: #232323;
}
.cid-v9FX90CPuw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX90CPuw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9LGWS6Hwr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9LGWS6Hwr H1 {
  color: #e4330d;
}
.cid-v9LGWS6Hwr .mbr-text,
.cid-v9LGWS6Hwr .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-v9LGWS6Hwr .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9LGWS6Hwr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va98NnaChf {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va98NnaChf H1 {
  color: #e4330d;
}
.cid-va98NnaChf .mbr-text,
.cid-va98NnaChf .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va98NnaChf .mbr-fallback-image.disabled {
  display: none;
}
.cid-va98NnaChf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8YfoZh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FX8YfoZh img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FX8YfoZh H1 {
  color: #cb2c0a;
}
.cid-v9FX8YfoZh .mbr-text,
.cid-v9FX8YfoZh .mbr-section-btn {
  color: #716c80;
}
.cid-v9FX8YfoZh H3 {
  color: #716c80;
}
.cid-v9FX8YfoZh .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FX8YfoZh .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FX8YfoZh .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FX8YfoZh .link:hover {
  color: #0066ff !important;
}
.cid-v9FX8YfoZh .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FX8YfoZh DIV {
  color: #57468b;
}
.cid-v9FX8YfoZh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX8YfoZh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8YfoZh .mbr-text,
.cid-v9FX8YfoZh .media-content {
  color: #232323;
}
.cid-v9FX8YIXep {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
  background: linear-gradient(to top right, #f2f6ff, #f2f6ff);
}
.cid-v9FX8YIXep .mbr-text {
  color: #232323;
}
.cid-v9FX8YIXep .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-v9FX8YIXep p {
  margin: 0;
}
.cid-v9FX8YIXep .mbr-iconfont {
  transition: all 0.3s;
  color: #cb2c0a !important;
  font-size: 2.8rem !important;
}
.cid-v9FX8YIXep .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-v9FX8YIXep .card:hover .mbr-iconfont {
  color: #0066ff !important;
}
.cid-v9FX8YIXep .card-title,
.cid-v9FX8YIXep .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-v9FX8YIXep .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-v9FX8YIXep .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-v9FX8YIXep .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-v9FX8YIXep .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-v9FX8YIXep .card-img span {
    margin-right: 0rem;
  }
  .cid-v9FX8YIXep .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-v9FX8YIXep .card-img {
  width: auto;
}
.cid-v9FX8YIXep .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX8YIXep .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX8YIXep .card-title {
  color: #232323;
}
.cid-v9FX91vBRm {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FX91vBRm img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FX91vBRm H1 {
  color: #cb2c0a;
}
.cid-v9FX91vBRm .mbr-text,
.cid-v9FX91vBRm .mbr-section-btn {
  color: #716c80;
}
.cid-v9FX91vBRm H3 {
  color: #716c80;
}
.cid-v9FX91vBRm .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FX91vBRm .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FX91vBRm .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FX91vBRm .link:hover {
  color: #0066ff !important;
}
.cid-v9FX91vBRm .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FX91vBRm DIV {
  color: #57468b;
}
.cid-v9FX91vBRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX91vBRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX91vBRm .mbr-text,
.cid-v9FX91vBRm .media-content {
  color: #232323;
}
.cid-v9FX91Xky3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FX91Xky3 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FX91Xky3 H1 {
  color: #cb2c0a;
}
.cid-v9FX91Xky3 .mbr-text,
.cid-v9FX91Xky3 .mbr-section-btn {
  color: #716c80;
}
.cid-v9FX91Xky3 H3 {
  color: #716c80;
}
.cid-v9FX91Xky3 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FX91Xky3 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FX91Xky3 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FX91Xky3 .link:hover {
  color: #0066ff !important;
}
.cid-v9FX91Xky3 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FX91Xky3 DIV {
  color: #57468b;
}
.cid-v9FX91Xky3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX91Xky3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX91Xky3 .mbr-text,
.cid-v9FX91Xky3 .media-content {
  color: #232323;
}
.cid-v9FX94dmLl {
  padding-top: 45px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f2f6ff;
}
.cid-v9FX94dmLl .card-header {
  background: transparent;
}
.cid-v9FX94dmLl .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-v9FX94dmLl .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v9FX94dmLl .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-v9FX94dmLl .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-v9FX94dmLl .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9FX94dmLl .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v9FX94dmLl .card .panel-body {
  color: #767676;
}
.cid-v9FX94dmLl h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #ffffff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-v9FX94dmLl H4 {
  color: #232323;
}
.cid-v9FX94dmLl H2 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9FX94dmLl .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX94dmLl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX94dmLl .panel-text {
  color: #232323;
}
.cid-v9FX94Mt40 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FX94Mt40 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FX94Mt40 H1 {
  color: #cb2c0a;
}
.cid-v9FX94Mt40 .mbr-text,
.cid-v9FX94Mt40 .mbr-section-btn {
  color: #716c80;
}
.cid-v9FX94Mt40 H3 {
  color: #716c80;
}
.cid-v9FX94Mt40 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FX94Mt40 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FX94Mt40 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FX94Mt40 .link:hover {
  color: #0066ff !important;
}
.cid-v9FX94Mt40 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FX94Mt40 DIV {
  color: #57468b;
}
.cid-v9FX94Mt40 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX94Mt40 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX94Mt40 .mbr-text,
.cid-v9FX94Mt40 .media-content {
  color: #232323;
}
.cid-va98Vm3B1P {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va98Vm3B1P H1 {
  color: #e4330d;
}
.cid-va98Vm3B1P .mbr-text,
.cid-va98Vm3B1P .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va98Vm3B1P .mbr-fallback-image.disabled {
  display: none;
}
.cid-va98Vm3B1P .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnxfrXqi {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabnxfrXqi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabnxfrXqi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnxfrXqi .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabnxfrXqi .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vabnxfrXqi .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vabnxfrXqi .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vabnxfrXqi .embla__slide .slide-content {
  width: 100%;
}
.cid-vabnxfrXqi .embla__slide .slide-content:hover .item-wrapper,
.cid-vabnxfrXqi .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vabnxfrXqi .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vabnxfrXqi .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vabnxfrXqi .embla__button--next,
.cid-vabnxfrXqi .embla__button--prev {
  display: flex;
}
.cid-vabnxfrXqi .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vabnxfrXqi .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vabnxfrXqi .embla__button.embla__button--prev {
  left: 0;
}
.cid-vabnxfrXqi .embla__button.embla__button--next {
  right: 0;
}
.cid-vabnxfrXqi .embla {
  position: relative;
  width: 100%;
}
.cid-vabnxfrXqi .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vabnxfrXqi .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vabnxfrXqi .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vabnxfrXqi .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabnxfrXqi .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vabnxfrXqi .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vabnxfrXqi .mbr-section-title,
.cid-vabnxfrXqi .mbr-section-btn {
  color: #e4330d;
}
.cid-v9FX95bI46 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-v9FX95bI46 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FX95bI46 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FX95bI46 .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v9FX95bI46 .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-v9FX95bI46 .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v9FX95bI46 .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-v9FX95bI46 .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v9FX95bI46 .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v9FX95bI46 .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v9FX95bI46 .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-v9FX95bI46 .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v9FX95bI46 .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9FX95bI46 .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-v9FX95bI46 .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v9FX95bI46 .items-wrapper .card {
  padding: 0 32px;
}
.cid-v9FX95bI46 .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v9FX95bI46 .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9FX95bI46 .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v9FX95bI46 .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9FX95bI46 .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v9FX95bI46 .list-wrapper .list .item-wrap:hover,
.cid-v9FX95bI46 .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v9FX95bI46 .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v9FX95bI46 .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v9FX95bI46 .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9FX95bI46 .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v9FX95bI46 .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v9FX95bI46 .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-v9FX95bI46 .mbr-desc {
  color: #ffffff;
}
.cid-v9FX95bI46 .mbr-text,
.cid-v9FX95bI46 .text-wrapper {
  color: #9aa0a6;
}
.cid-v9FX95bI46 .list {
  color: #9aa0a6;
}
.cid-v9FX95bI46 .mbr-text,
.cid-v9FX95bI46 .mbr-section-btn {
  color: #ffffff;
}
.cid-v9FX95bI46 .list,
.cid-v9FX95bI46 .item-wrap {
  color: #ffffff;
}
.cid-v9FC9Hyt6O .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-v9FC9Hyt6O .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-v9FC9Hyt6O .nav-item:focus,
.cid-v9FC9Hyt6O .nav-link:focus {
  outline: none;
}
.cid-v9FC9Hyt6O .text-white:hover,
.cid-v9FC9Hyt6O .text-white:active,
.cid-v9FC9Hyt6O .text-white:focus {
  color: white!important;
}
.cid-v9FC9Hyt6O .section {
  position: relative;
  overflow: visible!important;
}
.cid-v9FC9Hyt6O .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-v9FC9Hyt6O .dropdown-item:hover {
  color: white!important;
}
.cid-v9FC9Hyt6O .dropdown-menu {
  background-color: black!important;
}
.cid-v9FC9Hyt6O .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-v9FC9Hyt6O .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-v9FC9Hyt6O .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-v9FC9Hyt6O .nav-item .nav-link {
    position: relative;
  }
}
.cid-v9FC9Hyt6O .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v9FC9Hyt6O .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v9FC9Hyt6O .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-v9FC9Hyt6O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-v9FC9Hyt6O .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-v9FC9Hyt6O .collapsed {
  flex-direction: row!important;
}
.cid-v9FC9Hyt6O .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v9FC9Hyt6O .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v9FC9Hyt6O .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-v9FC9Hyt6O .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-v9FC9Hyt6O .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-v9FC9Hyt6O .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-v9FC9Hyt6O .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v9FC9Hyt6O .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-v9FC9Hyt6O .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-v9FC9Hyt6O .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v9FC9Hyt6O .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v9FC9Hyt6O .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-v9FC9Hyt6O .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v9FC9Hyt6O .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-v9FC9Hyt6O .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-v9FC9Hyt6O .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v9FC9Hyt6O .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v9FC9Hyt6O .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-v9FC9Hyt6O .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v9FC9Hyt6O .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v9FC9Hyt6O .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-v9FC9Hyt6O .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-v9FC9Hyt6O .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v9FC9Hyt6O .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v9FC9Hyt6O .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-v9FC9Hyt6O .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-v9FC9Hyt6O .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-v9FC9Hyt6O .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-v9FC9Hyt6O .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-v9FC9Hyt6O .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-v9FC9Hyt6O .navbar-caption {
  font-weight: 600!important;
}
.cid-v9FC9Hyt6O .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v9FC9Hyt6O .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v9FC9Hyt6O .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-v9FC9Hyt6O .dropdown-item.active,
.cid-v9FC9Hyt6O .dropdown-item:active {
  background-color: transparent;
}
.cid-v9FC9Hyt6O .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v9FC9Hyt6O .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v9FC9Hyt6O .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v9FC9Hyt6O .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v9FC9Hyt6O .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v9FC9Hyt6O ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-v9FC9Hyt6O .navbar-buttons {
  text-align: center;
}
.cid-v9FC9Hyt6O button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v9FC9Hyt6O button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-v9FC9Hyt6O button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v9FC9Hyt6O button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v9FC9Hyt6O button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v9FC9Hyt6O button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v9FC9Hyt6O nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9FC9Hyt6O nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v9FC9Hyt6O nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v9FC9Hyt6O nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v9FC9Hyt6O .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-v9FC9Hyt6O .nav-link {
  font-weight: 600!important;
}
.cid-v9FC9Hyt6O a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v9FC9Hyt6O .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-v9FC9Hyt6O .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-v9FC9Hyt6O .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-v9FC9Hyt6O .navbar {
    height: 77px;
  }
  .cid-v9FC9Hyt6O .navbar.opened {
    height: auto;
  }
  .cid-v9FC9Hyt6O .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9FC9IflTo {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9FC9IflTo H1 {
  color: #e4330d;
  text-align: center;
}
.cid-v9FC9IflTo .mbr-text,
.cid-v9FC9IflTo .mbr-section-btn {
  color: #232323;
}
.cid-v9FC9IflTo .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9IflTo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FDZaLhJn {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f6ff;
}
.cid-v9FDZaLhJn .item:focus,
.cid-v9FDZaLhJn span:focus {
  outline: none;
}
.cid-v9FDZaLhJn .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-v9FDZaLhJn .content-head {
  max-width: 800px;
}
.cid-v9FDZaLhJn .item {
  padding: 10px 0;
  color: #e4330d;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-v9FDZaLhJn .item {
    min-height: 45px;
  }
}
.cid-v9FC9JkFzm {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FC9JkFzm img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FC9JkFzm H1 {
  color: #cb2c0a;
}
.cid-v9FC9JkFzm .mbr-text,
.cid-v9FC9JkFzm .mbr-section-btn {
  color: #716c80;
}
.cid-v9FC9JkFzm H3 {
  color: #716c80;
}
.cid-v9FC9JkFzm .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FC9JkFzm .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FC9JkFzm .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FC9JkFzm .link:hover {
  color: #0066ff !important;
}
.cid-v9FC9JkFzm .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FC9JkFzm DIV {
  color: #57468b;
}
.cid-v9FC9JkFzm .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9JkFzm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9JkFzm .mbr-text,
.cid-v9FC9JkFzm .media-content {
  color: #232323;
}
.cid-v9GBBYzpcx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #f2f6ff;
}
.cid-v9GBBYzpcx img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v9GBBYzpcx .mbr-text,
.cid-v9GBBYzpcx .mbr-section-btn {
  color: #57468b;
}
.cid-v9GBBYzpcx H3 {
  color: #57468b;
}
.cid-v9GBBYzpcx H1 {
  color: #cb2c0a;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-v9GBBYzpcx img {
    width: 100%!important;
  }
}
.cid-v9GBBYzpcx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9GBBYzpcx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9IIl47 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FC9IIl47 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FC9IIl47 H1 {
  color: #cb2c0a;
}
.cid-v9FC9IIl47 .mbr-text,
.cid-v9FC9IIl47 .mbr-section-btn {
  color: #716c80;
}
.cid-v9FC9IIl47 H3 {
  color: #716c80;
}
.cid-v9FC9IIl47 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FC9IIl47 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FC9IIl47 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FC9IIl47 .link:hover {
  color: #0066ff !important;
}
.cid-v9FC9IIl47 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FC9IIl47 DIV {
  color: #57468b;
}
.cid-v9FC9IIl47 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9IIl47 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9IIl47 .mbr-text,
.cid-v9FC9IIl47 .media-content {
  color: #232323;
}
.cid-v9FC9JGWNC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FC9JGWNC img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FC9JGWNC H1 {
  color: #cb2c0a;
}
.cid-v9FC9JGWNC .mbr-text,
.cid-v9FC9JGWNC .mbr-section-btn {
  color: #716c80;
}
.cid-v9FC9JGWNC H3 {
  color: #716c80;
}
.cid-v9FC9JGWNC .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FC9JGWNC .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FC9JGWNC .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FC9JGWNC .link:hover {
  color: #0066ff !important;
}
.cid-v9FC9JGWNC .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FC9JGWNC DIV {
  color: #57468b;
}
.cid-v9FC9JGWNC .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9JGWNC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9JGWNC .mbr-text,
.cid-v9FC9JGWNC .media-content {
  color: #232323;
}
.cid-v9FC9MF7oz {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v9FC9MF7oz .mbr-section-subtitle {
  color: #767676;
  text-align: justify;
}
.cid-v9FC9MF7oz .container-table {
  margin: 0 auto;
}
.cid-v9FC9MF7oz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9FC9MF7oz .dataTables_wrapper {
  display: block;
}
.cid-v9FC9MF7oz .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9FC9MF7oz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9FC9MF7oz table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #465052;
  margin-bottom: 0;
}
.cid-v9FC9MF7oz table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #465052;
  transition: all .2s;
}
.cid-v9FC9MF7oz table th:hover {
  background: #465052;
  color: #ffffff;
}
.cid-v9FC9MF7oz table td {
  border: 1px solid #465052;
}
.cid-v9FC9MF7oz .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9FC9MF7oz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9FC9MF7oz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9FC9MF7oz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9FC9MF7oz .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9FC9MF7oz .dataTables_filter {
    text-align: center;
  }
  .cid-v9FC9MF7oz .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9FC9MF7oz .head-item {
  color: #57468b;
  text-align: center;
}
.cid-v9FC9MF7oz .body-item {
  color: #716c80;
  text-align: center;
}
.cid-v9FC9MF7oz .mbr-section-title {
  color: #cb2c0a;
  text-align: justify;
}
.cid-v9FC9MF7oz .head-item1 {
  color: #232323;
}
.cid-v9FC9MF7oz .body-item1 {
  color: #232323;
}
.cid-v9FC9MF7oz .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9MF7oz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9LskUjMRw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9LskUjMRw img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9LskUjMRw H1 {
  color: #232323;
}
.cid-v9LskUjMRw .mbr-text,
.cid-v9LskUjMRw .mbr-section-btn {
  color: #716c80;
}
.cid-v9LskUjMRw H3 {
  color: #716c80;
}
.cid-v9LskUjMRw .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9LskUjMRw .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9LskUjMRw .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9LskUjMRw .link:hover {
  color: #0066ff !important;
}
.cid-v9LskUjMRw .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9LskUjMRw DIV {
  color: #57468b;
}
.cid-v9LskUjMRw .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9LskUjMRw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9LqDxDifh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9LqDxDifh H1 {
  color: #e4330d;
}
.cid-v9LqDxDifh .mbr-text,
.cid-v9LqDxDifh .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-v9LqDxDifh .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9LqDxDifh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va98ohYUIc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va98ohYUIc H1 {
  color: #e4330d;
}
.cid-va98ohYUIc .mbr-text,
.cid-va98ohYUIc .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va98ohYUIc .mbr-fallback-image.disabled {
  display: none;
}
.cid-va98ohYUIc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9K6TDp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FC9K6TDp img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FC9K6TDp H1 {
  color: #cb2c0a;
}
.cid-v9FC9K6TDp .mbr-text,
.cid-v9FC9K6TDp .mbr-section-btn {
  color: #716c80;
}
.cid-v9FC9K6TDp H3 {
  color: #716c80;
}
.cid-v9FC9K6TDp .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FC9K6TDp .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FC9K6TDp .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FC9K6TDp .link:hover {
  color: #0066ff !important;
}
.cid-v9FC9K6TDp .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FC9K6TDp DIV {
  color: #57468b;
}
.cid-v9FC9K6TDp .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9K6TDp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9K6TDp .mbr-text,
.cid-v9FC9K6TDp .media-content {
  color: #232323;
}
.cid-v9FC9KwEeX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
  background: linear-gradient(to top right, #f2f6ff, #ffffff);
}
.cid-v9FC9KwEeX .mbr-text {
  color: #232323;
}
.cid-v9FC9KwEeX .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-v9FC9KwEeX p {
  margin: 0;
}
.cid-v9FC9KwEeX .mbr-iconfont {
  transition: all 0.3s;
  color: #cb2c0a !important;
  font-size: 2.8rem !important;
}
.cid-v9FC9KwEeX .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-v9FC9KwEeX .card:hover .mbr-iconfont {
  color: #0066ff !important;
}
.cid-v9FC9KwEeX .card-title,
.cid-v9FC9KwEeX .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-v9FC9KwEeX .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-v9FC9KwEeX .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-v9FC9KwEeX .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-v9FC9KwEeX .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-v9FC9KwEeX .card-img span {
    margin-right: 0rem;
  }
  .cid-v9FC9KwEeX .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-v9FC9KwEeX .card-img {
  width: auto;
}
.cid-v9FC9KwEeX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9KwEeX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9KwEeX .card-title {
  color: #232323;
}
.cid-v9LrZjlJP7 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9LrZjlJP7 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9LrZjlJP7 H1 {
  color: #cb2c0a;
}
.cid-v9LrZjlJP7 .mbr-text,
.cid-v9LrZjlJP7 .mbr-section-btn {
  color: #716c80;
}
.cid-v9LrZjlJP7 H3 {
  color: #716c80;
}
.cid-v9LrZjlJP7 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9LrZjlJP7 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9LrZjlJP7 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9LrZjlJP7 .link:hover {
  color: #0066ff !important;
}
.cid-v9LrZjlJP7 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9LrZjlJP7 DIV {
  color: #57468b;
}
.cid-v9LrZjlJP7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9LrZjlJP7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9LrZjlJP7 .mbr-text,
.cid-v9LrZjlJP7 .media-content {
  color: #232323;
}
.cid-v9FC9Otd15 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FC9Otd15 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FC9Otd15 H1 {
  color: #cb2c0a;
}
.cid-v9FC9Otd15 .mbr-text,
.cid-v9FC9Otd15 .mbr-section-btn {
  color: #716c80;
}
.cid-v9FC9Otd15 H3 {
  color: #716c80;
}
.cid-v9FC9Otd15 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FC9Otd15 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FC9Otd15 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FC9Otd15 .link:hover {
  color: #0066ff !important;
}
.cid-v9FC9Otd15 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FC9Otd15 DIV {
  color: #57468b;
}
.cid-v9FC9Otd15 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9Otd15 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9Otd15 .mbr-text,
.cid-v9FC9Otd15 .media-content {
  color: #232323;
}
.cid-v9FOrLj2D0 {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #f2f6ff;
}
.cid-v9FOrLj2D0 .mbr-section-subtitle {
  color: #767676;
}
.cid-v9FOrLj2D0 .container-table {
  margin: 0 auto;
}
.cid-v9FOrLj2D0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9FOrLj2D0 .dataTables_wrapper {
  display: block;
}
.cid-v9FOrLj2D0 .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9FOrLj2D0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9FOrLj2D0 table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #cccccc;
  margin-bottom: 0;
}
.cid-v9FOrLj2D0 table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #cccccc;
  transition: all .2s;
}
.cid-v9FOrLj2D0 table th:hover {
  background: #cccccc;
  color: #000000;
}
.cid-v9FOrLj2D0 table td {
  border: 1px solid #cccccc;
}
.cid-v9FOrLj2D0 .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9FOrLj2D0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9FOrLj2D0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9FOrLj2D0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9FOrLj2D0 .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9FOrLj2D0 .dataTables_filter {
    text-align: center;
  }
  .cid-v9FOrLj2D0 .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9FOrLj2D0 .head-item {
  color: #57468b;
  text-align: center;
}
.cid-v9FOrLj2D0 .body-item {
  color: #716c80;
  text-align: center;
}
.cid-v9FOrLj2D0 .mbr-section-title {
  color: #cb2c0a;
  text-align: justify;
}
.cid-v9FOrLj2D0 .head-item1 {
  color: #232323;
}
.cid-v9FOrLj2D0 .body-item1 {
  color: #232323;
}
.cid-v9FOrLj2D0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FOrLj2D0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9NIMPA {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FC9NIMPA img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FC9NIMPA H1 {
  color: #cb2c0a;
}
.cid-v9FC9NIMPA .mbr-text,
.cid-v9FC9NIMPA .mbr-section-btn {
  color: #716c80;
}
.cid-v9FC9NIMPA H3 {
  color: #716c80;
}
.cid-v9FC9NIMPA .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FC9NIMPA .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FC9NIMPA .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FC9NIMPA .link:hover {
  color: #0066ff !important;
}
.cid-v9FC9NIMPA .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FC9NIMPA DIV {
  color: #57468b;
}
.cid-v9FC9NIMPA .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9NIMPA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9NIMPA .mbr-text,
.cid-v9FC9NIMPA .media-content {
  color: #232323;
}
.cid-v9FC9Q96Y3 {
  padding-top: 45px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f2f6ff;
}
.cid-v9FC9Q96Y3 .card-header {
  background: transparent;
}
.cid-v9FC9Q96Y3 .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-v9FC9Q96Y3 .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v9FC9Q96Y3 .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-v9FC9Q96Y3 .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-v9FC9Q96Y3 .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9FC9Q96Y3 .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v9FC9Q96Y3 .card .panel-body {
  color: #767676;
}
.cid-v9FC9Q96Y3 h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #ffffff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-v9FC9Q96Y3 H4 {
  color: #232323;
}
.cid-v9FC9Q96Y3 H2 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9FC9Q96Y3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9Q96Y3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9Q96Y3 .panel-text {
  color: #232323;
}
.cid-v9FC9QBfjk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9FC9QBfjk img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9FC9QBfjk H1 {
  color: #cb2c0a;
}
.cid-v9FC9QBfjk .mbr-text,
.cid-v9FC9QBfjk .mbr-section-btn {
  color: #716c80;
}
.cid-v9FC9QBfjk H3 {
  color: #716c80;
}
.cid-v9FC9QBfjk .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9FC9QBfjk .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9FC9QBfjk .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9FC9QBfjk .link:hover {
  color: #0066ff !important;
}
.cid-v9FC9QBfjk .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9FC9QBfjk DIV {
  color: #57468b;
}
.cid-v9FC9QBfjk .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9QBfjk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9QBfjk .mbr-text,
.cid-v9FC9QBfjk .media-content {
  color: #232323;
}
.cid-va98CiUq5a {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va98CiUq5a H1 {
  color: #e4330d;
}
.cid-va98CiUq5a .mbr-text,
.cid-va98CiUq5a .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va98CiUq5a .mbr-fallback-image.disabled {
  display: none;
}
.cid-va98CiUq5a .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnqv37a5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabnqv37a5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabnqv37a5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabnqv37a5 .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabnqv37a5 .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vabnqv37a5 .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vabnqv37a5 .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vabnqv37a5 .embla__slide .slide-content {
  width: 100%;
}
.cid-vabnqv37a5 .embla__slide .slide-content:hover .item-wrapper,
.cid-vabnqv37a5 .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vabnqv37a5 .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vabnqv37a5 .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vabnqv37a5 .embla__button--next,
.cid-vabnqv37a5 .embla__button--prev {
  display: flex;
}
.cid-vabnqv37a5 .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vabnqv37a5 .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vabnqv37a5 .embla__button.embla__button--prev {
  left: 0;
}
.cid-vabnqv37a5 .embla__button.embla__button--next {
  right: 0;
}
.cid-vabnqv37a5 .embla {
  position: relative;
  width: 100%;
}
.cid-vabnqv37a5 .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vabnqv37a5 .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vabnqv37a5 .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vabnqv37a5 .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabnqv37a5 .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vabnqv37a5 .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vabnqv37a5 .mbr-section-title,
.cid-vabnqv37a5 .mbr-section-btn {
  color: #e4330d;
}
.cid-v9FC9QY5kv {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-v9FC9QY5kv .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9FC9QY5kv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9FC9QY5kv .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-v9FC9QY5kv .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-v9FC9QY5kv .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v9FC9QY5kv .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-v9FC9QY5kv .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-v9FC9QY5kv .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-v9FC9QY5kv .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-v9FC9QY5kv .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-v9FC9QY5kv .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-v9FC9QY5kv .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-v9FC9QY5kv .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-v9FC9QY5kv .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-v9FC9QY5kv .items-wrapper .card {
  padding: 0 32px;
}
.cid-v9FC9QY5kv .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v9FC9QY5kv .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9FC9QY5kv .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v9FC9QY5kv .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v9FC9QY5kv .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-v9FC9QY5kv .list-wrapper .list .item-wrap:hover,
.cid-v9FC9QY5kv .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-v9FC9QY5kv .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v9FC9QY5kv .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-v9FC9QY5kv .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-v9FC9QY5kv .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-v9FC9QY5kv .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-v9FC9QY5kv .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-v9FC9QY5kv .mbr-desc {
  color: #ffffff;
}
.cid-v9FC9QY5kv .mbr-text,
.cid-v9FC9QY5kv .text-wrapper {
  color: #9aa0a6;
}
.cid-v9FC9QY5kv .list {
  color: #9aa0a6;
}
.cid-v9FC9QY5kv .mbr-text,
.cid-v9FC9QY5kv .mbr-section-btn {
  color: #ffffff;
}
.cid-v9FC9QY5kv .list,
.cid-v9FC9QY5kv .item-wrap {
  color: #ffffff;
}
.cid-u68Xv7zMOt .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-u68Xv7zMOt .nav-item:focus,
.cid-u68Xv7zMOt .nav-link:focus {
  outline: none;
}
.cid-u68Xv7zMOt .text-white:hover,
.cid-u68Xv7zMOt .text-white:active,
.cid-u68Xv7zMOt .text-white:focus {
  color: white!important;
}
.cid-u68Xv7zMOt .section {
  position: relative;
  overflow: visible!important;
}
.cid-u68Xv7zMOt .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-item:hover {
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-menu {
  background-color: black!important;
}
.cid-u68Xv7zMOt .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-u68Xv7zMOt .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-u68Xv7zMOt .nav-item .nav-link {
    position: relative;
  }
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .collapsed {
  flex-direction: row!important;
}
.cid-u68Xv7zMOt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u68Xv7zMOt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u68Xv7zMOt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u68Xv7zMOt .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u68Xv7zMOt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u68Xv7zMOt .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u68Xv7zMOt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u68Xv7zMOt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u68Xv7zMOt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u68Xv7zMOt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u68Xv7zMOt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u68Xv7zMOt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u68Xv7zMOt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u68Xv7zMOt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u68Xv7zMOt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u68Xv7zMOt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u68Xv7zMOt .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u68Xv7zMOt .navbar-caption {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68Xv7zMOt .dropdown-item.active,
.cid-u68Xv7zMOt .dropdown-item:active {
  background-color: transparent;
}
.cid-u68Xv7zMOt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u68Xv7zMOt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u68Xv7zMOt .navbar-buttons {
  text-align: center;
}
.cid-u68Xv7zMOt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u68Xv7zMOt .nav-link {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u68Xv7zMOt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-u68Xv7zMOt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u68Xv7zMOt .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u68Xv7zMOt .navbar {
    height: 77px;
  }
  .cid-u68Xv7zMOt .navbar.opened {
    height: auto;
  }
  .cid-u68Xv7zMOt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v9BXFkCK0C {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-v9BXFkCK0C H1 {
  color: #e4330d;
  text-align: center;
}
.cid-v9BXFkCK0C .mbr-text,
.cid-v9BXFkCK0C .mbr-section-btn {
  color: #232323;
}
.cid-v9BXFkCK0C .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BXFkCK0C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9C0kLl6Ig {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v9C0kLl6Ig .item:focus,
.cid-v9C0kLl6Ig span:focus {
  outline: none;
}
.cid-v9C0kLl6Ig .container-fluid {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}
.cid-v9C0kLl6Ig .content-head {
  max-width: 800px;
}
.cid-v9C0kLl6Ig .item {
  padding: 10px 0;
  color: #e4330d;
  min-height: 90px;
}
@media (max-width: 768px) {
  .cid-v9C0kLl6Ig .item {
    min-height: 45px;
  }
}
.cid-v9C3YNrnOg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9C3YNrnOg img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9C3YNrnOg H1 {
  color: #cb2c0a;
}
.cid-v9C3YNrnOg .mbr-text,
.cid-v9C3YNrnOg .mbr-section-btn {
  color: #716c80;
}
.cid-v9C3YNrnOg H3 {
  color: #716c80;
}
.cid-v9C3YNrnOg .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9C3YNrnOg .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9C3YNrnOg .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9C3YNrnOg .link:hover {
  color: #0066ff !important;
}
.cid-v9C3YNrnOg .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9C3YNrnOg DIV {
  color: #57468b;
}
.cid-v9C3YNrnOg .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9C3YNrnOg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9C3YNrnOg .mbr-text,
.cid-v9C3YNrnOg .media-content {
  color: #232323;
}
.cid-v9Glq1jjso {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9Glq1jjso img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v9Glq1jjso .mbr-text,
.cid-v9Glq1jjso .mbr-section-btn {
  color: #57468b;
}
.cid-v9Glq1jjso H3 {
  color: #57468b;
}
.cid-v9Glq1jjso H1 {
  color: #cb2c0a;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-v9Glq1jjso img {
    width: 100%!important;
  }
}
.cid-v9Glq1jjso .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Glq1jjso .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BZfML766 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9BZfML766 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9BZfML766 H1 {
  color: #cb2c0a;
}
.cid-v9BZfML766 .mbr-text,
.cid-v9BZfML766 .mbr-section-btn {
  color: #716c80;
}
.cid-v9BZfML766 H3 {
  color: #716c80;
}
.cid-v9BZfML766 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9BZfML766 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9BZfML766 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9BZfML766 .link:hover {
  color: #0066ff !important;
}
.cid-v9BZfML766 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9BZfML766 DIV {
  color: #57468b;
}
.cid-v9BZfML766 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BZfML766 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BZfML766 .mbr-text,
.cid-v9BZfML766 .media-content {
  color: #232323;
}
.cid-v9C5kZgCdQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9C5kZgCdQ img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9C5kZgCdQ H1 {
  color: #cb2c0a;
}
.cid-v9C5kZgCdQ .mbr-text,
.cid-v9C5kZgCdQ .mbr-section-btn {
  color: #716c80;
}
.cid-v9C5kZgCdQ H3 {
  color: #716c80;
}
.cid-v9C5kZgCdQ .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9C5kZgCdQ .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9C5kZgCdQ .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9C5kZgCdQ .link:hover {
  color: #0066ff !important;
}
.cid-v9C5kZgCdQ .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9C5kZgCdQ DIV {
  color: #57468b;
}
.cid-v9C5kZgCdQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9C5kZgCdQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9C5kZgCdQ .mbr-text,
.cid-v9C5kZgCdQ .media-content {
  color: #232323;
}
.cid-v9CcyxEigB {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-v9CcyxEigB .mbr-section-subtitle {
  color: #767676;
}
.cid-v9CcyxEigB .container-table {
  margin: 0 auto;
}
.cid-v9CcyxEigB .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-v9CcyxEigB .dataTables_wrapper {
  display: block;
}
.cid-v9CcyxEigB .dataTables_wrapper .search {
  margin-bottom: .5rem;
}
.cid-v9CcyxEigB .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-v9CcyxEigB table {
  width: 100% !important;
  margin-top: 6px;
  border: 1px solid #465052;
  margin-bottom: 0;
}
.cid-v9CcyxEigB table th {
  border-top: none;
  font-weight: 500;
  border: 1px solid #465052;
  transition: all .2s;
}
.cid-v9CcyxEigB table th:hover {
  background: #465052;
  color: #ffffff;
}
.cid-v9CcyxEigB table td {
  border: 1px solid #465052;
}
.cid-v9CcyxEigB .dataTables_filter {
  text-align: right;
  margin-bottom: .5rem;
}
.cid-v9CcyxEigB .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-v9CcyxEigB .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: .5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-v9CcyxEigB .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-v9CcyxEigB .dataTables_filter {
    text-align: center;
  }
}
@media (max-width: 350px) {
  .cid-v9CcyxEigB .dataTables_filter {
    text-align: center;
  }
  .cid-v9CcyxEigB .dataTables_filter input {
    width: 100% !important;
    margin-left: 0 !important;
  }
}
.cid-v9CcyxEigB .head-item {
  color: #57468b;
  text-align: center;
}
.cid-v9CcyxEigB .body-item {
  color: #716c80;
  text-align: center;
}
.cid-v9CcyxEigB .mbr-section-title {
  color: #cb2c0a;
  text-align: justify;
}
.cid-v9CcyxEigB .head-item1 {
  color: #232323;
}
.cid-v9CcyxEigB .body-item1 {
  color: #232323;
}
.cid-v9CcyxEigB .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CcyxEigB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Ll63j3Ii {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9Ll63j3Ii H1 {
  color: #e4330d;
}
.cid-v9Ll63j3Ii .mbr-text,
.cid-v9Ll63j3Ii .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-v9Ll63j3Ii .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Ll63j3Ii .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-va98cDs2wM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va98cDs2wM H1 {
  color: #e4330d;
}
.cid-va98cDs2wM .mbr-text,
.cid-va98cDs2wM .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va98cDs2wM .mbr-fallback-image.disabled {
  display: none;
}
.cid-va98cDs2wM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9C6JOkvMa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9C6JOkvMa img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9C6JOkvMa H1 {
  color: #cb2c0a;
}
.cid-v9C6JOkvMa .mbr-text,
.cid-v9C6JOkvMa .mbr-section-btn {
  color: #716c80;
}
.cid-v9C6JOkvMa H3 {
  color: #716c80;
}
.cid-v9C6JOkvMa .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9C6JOkvMa .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9C6JOkvMa .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9C6JOkvMa .link:hover {
  color: #0066ff !important;
}
.cid-v9C6JOkvMa .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9C6JOkvMa DIV {
  color: #57468b;
}
.cid-v9C6JOkvMa .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9C6JOkvMa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9C6JOkvMa .mbr-text,
.cid-v9C6JOkvMa .media-content {
  color: #232323;
}
.cid-v9NkaDmQIP {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
  background: linear-gradient(to top right, #ffffff, #f2f6ff);
}
.cid-v9NkaDmQIP .mbr-text {
  color: #232323;
}
.cid-v9NkaDmQIP .card-img span {
  font-size: 96px;
  color: #149dcc;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-v9NkaDmQIP p {
  margin: 0;
}
.cid-v9NkaDmQIP .mbr-iconfont {
  transition: all 0.3s;
  color: #cb2c0a !important;
  font-size: 2.8rem !important;
}
.cid-v9NkaDmQIP .card {
  display: flex;
  flex-direction: row;
  transition: all 0.3s;
  padding: 2rem 1.5rem !important;
}
.cid-v9NkaDmQIP .card:hover .mbr-iconfont {
  color: #0066ff !important;
}
.cid-v9NkaDmQIP .card-title,
.cid-v9NkaDmQIP .card-img {
  color: #57468b;
}
@media (max-width: 992px) {
  .cid-v9NkaDmQIP .card {
    justify-content: center;
  }
}
@media (max-width: 576px) {
  .cid-v9NkaDmQIP .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-v9NkaDmQIP .card .card-img {
    margin-bottom: 1rem;
  }
  .cid-v9NkaDmQIP .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-v9NkaDmQIP .card-img span {
    margin-right: 0rem;
  }
  .cid-v9NkaDmQIP .cardcolor:hover {
    background-color: transparent;
  }
}
.cid-v9NkaDmQIP .card-img {
  width: auto;
}
.cid-v9NkaDmQIP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9NkaDmQIP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9NkaDmQIP .card-title {
  color: #232323;
}
.cid-v9Cj9eYmg4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9Cj9eYmg4 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9Cj9eYmg4 H1 {
  color: #cb2c0a;
}
.cid-v9Cj9eYmg4 .mbr-text,
.cid-v9Cj9eYmg4 .mbr-section-btn {
  color: #716c80;
}
.cid-v9Cj9eYmg4 H3 {
  color: #716c80;
}
.cid-v9Cj9eYmg4 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9Cj9eYmg4 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9Cj9eYmg4 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9Cj9eYmg4 .link:hover {
  color: #0066ff !important;
}
.cid-v9Cj9eYmg4 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9Cj9eYmg4 DIV {
  color: #57468b;
}
.cid-v9Cj9eYmg4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cj9eYmg4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cj9eYmg4 .mbr-text,
.cid-v9Cj9eYmg4 .media-content {
  color: #232323;
}
.cid-v9Cse2xmYX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9Cse2xmYX img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9Cse2xmYX H1 {
  color: #cb2c0a;
}
.cid-v9Cse2xmYX .mbr-text,
.cid-v9Cse2xmYX .mbr-section-btn {
  color: #716c80;
}
.cid-v9Cse2xmYX H3 {
  color: #716c80;
}
.cid-v9Cse2xmYX .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9Cse2xmYX .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9Cse2xmYX .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9Cse2xmYX .link:hover {
  color: #0066ff !important;
}
.cid-v9Cse2xmYX .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9Cse2xmYX DIV {
  color: #57468b;
}
.cid-v9Cse2xmYX .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cse2xmYX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cse2xmYX .mbr-text,
.cid-v9Cse2xmYX .media-content {
  color: #232323;
}
.cid-v9CpEZ67At {
  padding-top: 45px;
  padding-bottom: 60px;
  position: relative;
  background-color: #f2f6ff;
}
.cid-v9CpEZ67At .card-header {
  background: transparent;
}
.cid-v9CpEZ67At .mbr-iconfont {
  font-size: 1.4rem!important;
}
.cid-v9CpEZ67At .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-v9CpEZ67At .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-v9CpEZ67At .card .card-header a.panel-title {
  margin-bottom: 0;
  font-style: normal;
  font-weight: 500;
  display: block;
  text-decoration: none !important;
  margin-top: -1px;
  line-height: normal;
}
.cid-v9CpEZ67At .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-v9CpEZ67At .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-v9CpEZ67At .card .panel-body {
  color: #767676;
}
.cid-v9CpEZ67At h4 {
  flex-direction: row-reverse;
  display: flex;
  background: #ffffff;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  border: none;
  padding: 1.4rem 1.6rem;
}
.cid-v9CpEZ67At H4 {
  color: #232323;
}
.cid-v9CpEZ67At H2 {
  color: #cb2c0a;
  text-align: center;
}
.cid-v9CpEZ67At .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9CpEZ67At .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9CpEZ67At .panel-text {
  color: #232323;
}
.cid-v9Cs9WcBJ7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9Cs9WcBJ7 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9Cs9WcBJ7 H1 {
  color: #cb2c0a;
}
.cid-v9Cs9WcBJ7 .mbr-text,
.cid-v9Cs9WcBJ7 .mbr-section-btn {
  color: #716c80;
}
.cid-v9Cs9WcBJ7 H3 {
  color: #716c80;
}
.cid-v9Cs9WcBJ7 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9Cs9WcBJ7 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9Cs9WcBJ7 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9Cs9WcBJ7 .link:hover {
  color: #0066ff !important;
}
.cid-v9Cs9WcBJ7 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9Cs9WcBJ7 DIV {
  color: #57468b;
}
.cid-v9Cs9WcBJ7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9Cs9WcBJ7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9Cs9WcBJ7 .mbr-text,
.cid-v9Cs9WcBJ7 .media-content {
  color: #232323;
}
.cid-va983IWJPj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-va983IWJPj H1 {
  color: #e4330d;
}
.cid-va983IWJPj .mbr-text,
.cid-va983IWJPj .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-va983IWJPj .mbr-fallback-image.disabled {
  display: none;
}
.cid-va983IWJPj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabn6JXsmV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabn6JXsmV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabn6JXsmV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabn6JXsmV .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabn6JXsmV .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vabn6JXsmV .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vabn6JXsmV .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vabn6JXsmV .embla__slide .slide-content {
  width: 100%;
}
.cid-vabn6JXsmV .embla__slide .slide-content:hover .item-wrapper,
.cid-vabn6JXsmV .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vabn6JXsmV .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vabn6JXsmV .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vabn6JXsmV .embla__button--next,
.cid-vabn6JXsmV .embla__button--prev {
  display: flex;
}
.cid-vabn6JXsmV .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vabn6JXsmV .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vabn6JXsmV .embla__button.embla__button--prev {
  left: 0;
}
.cid-vabn6JXsmV .embla__button.embla__button--next {
  right: 0;
}
.cid-vabn6JXsmV .embla {
  position: relative;
  width: 100%;
}
.cid-vabn6JXsmV .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vabn6JXsmV .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vabn6JXsmV .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vabn6JXsmV .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabn6JXsmV .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vabn6JXsmV .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vabn6JXsmV .mbr-section-title,
.cid-vabn6JXsmV .mbr-section-btn {
  color: #e4330d;
}
.cid-uP88PsCGsp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uP88PsCGsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP88PsCGsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uP88PsCGsp .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uP88PsCGsp .items-wrapper .card {
  padding: 0 32px;
}
.cid-uP88PsCGsp .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP88PsCGsp .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uP88PsCGsp .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uP88PsCGsp .list-wrapper .list .item-wrap:hover,
.cid-uP88PsCGsp .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uP88PsCGsp .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uP88PsCGsp .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP88PsCGsp .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uP88PsCGsp .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uP88PsCGsp .mbr-desc {
  color: #ffffff;
}
.cid-uP88PsCGsp .mbr-text,
.cid-uP88PsCGsp .text-wrapper {
  color: #9aa0a6;
}
.cid-uP88PsCGsp .list {
  color: #9aa0a6;
}
.cid-uP88PsCGsp .mbr-text,
.cid-uP88PsCGsp .mbr-section-btn {
  color: #ffffff;
}
.cid-uP88PsCGsp .list,
.cid-uP88PsCGsp .item-wrap {
  color: #ffffff;
}
.cid-vabdeAvoM3 .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-vabdeAvoM3 .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-vabdeAvoM3 .nav-item:focus,
.cid-vabdeAvoM3 .nav-link:focus {
  outline: none;
}
.cid-vabdeAvoM3 .text-white:hover,
.cid-vabdeAvoM3 .text-white:active,
.cid-vabdeAvoM3 .text-white:focus {
  color: white!important;
}
.cid-vabdeAvoM3 .section {
  position: relative;
  overflow: visible!important;
}
.cid-vabdeAvoM3 .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-vabdeAvoM3 .dropdown-item:hover {
  color: white!important;
}
.cid-vabdeAvoM3 .dropdown-menu {
  background-color: black!important;
}
.cid-vabdeAvoM3 .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-vabdeAvoM3 .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-vabdeAvoM3 .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-vabdeAvoM3 .nav-item .nav-link {
    position: relative;
  }
}
.cid-vabdeAvoM3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vabdeAvoM3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vabdeAvoM3 .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-vabdeAvoM3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vabdeAvoM3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vabdeAvoM3 .collapsed {
  flex-direction: row!important;
}
.cid-vabdeAvoM3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vabdeAvoM3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vabdeAvoM3 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-vabdeAvoM3 .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vabdeAvoM3 .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vabdeAvoM3 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vabdeAvoM3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vabdeAvoM3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vabdeAvoM3 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vabdeAvoM3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vabdeAvoM3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vabdeAvoM3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vabdeAvoM3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vabdeAvoM3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vabdeAvoM3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vabdeAvoM3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vabdeAvoM3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vabdeAvoM3 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vabdeAvoM3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vabdeAvoM3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vabdeAvoM3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vabdeAvoM3 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vabdeAvoM3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vabdeAvoM3 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vabdeAvoM3 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vabdeAvoM3 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vabdeAvoM3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vabdeAvoM3 .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vabdeAvoM3 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vabdeAvoM3 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vabdeAvoM3 .navbar-caption {
  font-weight: 600!important;
}
.cid-vabdeAvoM3 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vabdeAvoM3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vabdeAvoM3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vabdeAvoM3 .dropdown-item.active,
.cid-vabdeAvoM3 .dropdown-item:active {
  background-color: transparent;
}
.cid-vabdeAvoM3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vabdeAvoM3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vabdeAvoM3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vabdeAvoM3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vabdeAvoM3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vabdeAvoM3 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vabdeAvoM3 .navbar-buttons {
  text-align: center;
}
.cid-vabdeAvoM3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vabdeAvoM3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-vabdeAvoM3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vabdeAvoM3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vabdeAvoM3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vabdeAvoM3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vabdeAvoM3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vabdeAvoM3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vabdeAvoM3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vabdeAvoM3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vabdeAvoM3 .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vabdeAvoM3 .nav-link {
  font-weight: 600!important;
}
.cid-vabdeAvoM3 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vabdeAvoM3 .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vabdeAvoM3 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-vabdeAvoM3 .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vabdeAvoM3 .navbar {
    height: 77px;
  }
  .cid-vabdeAvoM3 .navbar.opened {
    height: auto;
  }
  .cid-vabdeAvoM3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vabdeBYU1e {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-vabdeBYU1e H1 {
  color: #cb2c0a;
  text-align: center;
}
.cid-vabdeBYU1e .mbr-text,
.cid-vabdeBYU1e .mbr-section-btn {
  color: #232323;
}
.cid-vabdeBYU1e .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabdeBYU1e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabdeE6r8f {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vabdeE6r8f .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabdeE6r8f .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabdeE6r8f .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabdeE6r8f .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vabdeE6r8f .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vabdeE6r8f .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vabdeE6r8f .embla__slide .slide-content {
  width: 100%;
}
.cid-vabdeE6r8f .embla__slide .slide-content:hover .item-wrapper,
.cid-vabdeE6r8f .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vabdeE6r8f .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vabdeE6r8f .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vabdeE6r8f .embla__button--next,
.cid-vabdeE6r8f .embla__button--prev {
  display: flex;
}
.cid-vabdeE6r8f .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vabdeE6r8f .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vabdeE6r8f .embla__button.embla__button--prev {
  left: 0;
}
.cid-vabdeE6r8f .embla__button.embla__button--next {
  right: 0;
}
.cid-vabdeE6r8f .embla {
  position: relative;
  width: 100%;
}
.cid-vabdeE6r8f .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vabdeE6r8f .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vabdeE6r8f .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vabdeE6r8f .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vabdeE6r8f .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vabdeE6r8f .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vabdeE6r8f .mbr-section-title,
.cid-vabdeE6r8f .mbr-section-btn {
  color: #e4330d;
}
.cid-vilRVOdT4N {
  padding-top: 150px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/contact20us202-2000x1000.webp");
}
.cid-vilRVOdT4N .mbr-overlay {
  background-color: #232323;
  opacity: 0.9;
}
.cid-vilRVOdT4N input,
.cid-vilRVOdT4N textarea {
  padding: 0.4rem 1.4rem!important;
  border-radius: 10px;
}
.cid-vilRVOdT4N .col-auto {
  width: 100%;
  text-align: center;
}
.cid-vilRVOdT4N img {
  width: 90%;
  border-radius: 8px;
}
.cid-vilRVOdT4N .btn {
  border-radius: 30px;
  padding: 0.6rem 3rem!important;
}
.cid-vilRVOdT4N textarea {
  min-height: 160px;
}
.cid-vilRVOdT4N .form-control,
.cid-vilRVOdT4N .field-input {
  padding: 0.5rem;
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #58468c;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-vilRVOdT4N .form-control:hover,
.cid-vilRVOdT4N .field-input:hover,
.cid-vilRVOdT4N .form-control:focus,
.cid-vilRVOdT4N .field-input:focus {
  background-color: #f5f6ff;
  border-color: #f5f6ff;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-vilRVOdT4N input::-webkit-input-placeholder,
.cid-vilRVOdT4N textarea::-webkit-input-placeholder {
  color: #807d78;
}
.cid-vilRVOdT4N input:-moz-placeholder,
.cid-vilRVOdT4N textarea:-moz-placeholder {
  color: #807d78;
}
.cid-vilRVOdT4N .jq-selectbox li,
.cid-vilRVOdT4N .jq-selectbox li {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-vilRVOdT4N .jq-selectbox li:hover,
.cid-vilRVOdT4N .jq-selectbox li.selected {
  background-color: #f5f6ff;
  color: #000000;
}
.cid-vilRVOdT4N .jq-selectbox:hover .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-vilRVOdT4N .jq-selectbox .jq-selectbox__trigger-arrow {
  border-top-color: #f5f6ff;
}
.cid-vilRVOdT4N H5 {
  color: #ffffff;
  padding-bottom: 2rem;
  text-align: center;
}
@media (max-width: 992px) {
  .cid-vilRVOdT4N img {
    width: 100%;
  }
}
.cid-vilRVOdT4N LABEL {
  color: #ffffff;
}
.cid-vabdeEBvon {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-vabdeEBvon .mbr-fallback-image.disabled {
  display: none;
}
.cid-vabdeEBvon .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vabdeEBvon .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vabdeEBvon .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-vabdeEBvon .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vabdeEBvon .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-vabdeEBvon .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vabdeEBvon .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vabdeEBvon .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vabdeEBvon .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-vabdeEBvon .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vabdeEBvon .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vabdeEBvon .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-vabdeEBvon .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-vabdeEBvon .items-wrapper .card {
  padding: 0 32px;
}
.cid-vabdeEBvon .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vabdeEBvon .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vabdeEBvon .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-vabdeEBvon .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vabdeEBvon .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-vabdeEBvon .list-wrapper .list .item-wrap:hover,
.cid-vabdeEBvon .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vabdeEBvon .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vabdeEBvon .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vabdeEBvon .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vabdeEBvon .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-vabdeEBvon .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-vabdeEBvon .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-vabdeEBvon .mbr-desc {
  color: #ffffff;
}
.cid-vabdeEBvon .mbr-text,
.cid-vabdeEBvon .text-wrapper {
  color: #9aa0a6;
}
.cid-vabdeEBvon .list {
  color: #9aa0a6;
}
.cid-vabdeEBvon .mbr-text,
.cid-vabdeEBvon .mbr-section-btn {
  color: #ffffff;
}
.cid-vabdeEBvon .list,
.cid-vabdeEBvon .item-wrap {
  color: #ffffff;
}
.cid-vcdB2f7Ibw .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-vcdB2f7Ibw .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-vcdB2f7Ibw .nav-item:focus,
.cid-vcdB2f7Ibw .nav-link:focus {
  outline: none;
}
.cid-vcdB2f7Ibw .text-white:hover,
.cid-vcdB2f7Ibw .text-white:active,
.cid-vcdB2f7Ibw .text-white:focus {
  color: white!important;
}
.cid-vcdB2f7Ibw .section {
  position: relative;
  overflow: visible!important;
}
.cid-vcdB2f7Ibw .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-vcdB2f7Ibw .dropdown-item:hover {
  color: white!important;
}
.cid-vcdB2f7Ibw .dropdown-menu {
  background-color: black!important;
}
.cid-vcdB2f7Ibw .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-vcdB2f7Ibw .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-vcdB2f7Ibw .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-vcdB2f7Ibw .nav-item .nav-link {
    position: relative;
  }
}
.cid-vcdB2f7Ibw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vcdB2f7Ibw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vcdB2f7Ibw .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-vcdB2f7Ibw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vcdB2f7Ibw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vcdB2f7Ibw .collapsed {
  flex-direction: row!important;
}
.cid-vcdB2f7Ibw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vcdB2f7Ibw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vcdB2f7Ibw .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-vcdB2f7Ibw .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vcdB2f7Ibw .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vcdB2f7Ibw .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vcdB2f7Ibw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vcdB2f7Ibw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vcdB2f7Ibw .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vcdB2f7Ibw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vcdB2f7Ibw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vcdB2f7Ibw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vcdB2f7Ibw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vcdB2f7Ibw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vcdB2f7Ibw .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vcdB2f7Ibw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vcdB2f7Ibw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vcdB2f7Ibw .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vcdB2f7Ibw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vcdB2f7Ibw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vcdB2f7Ibw .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vcdB2f7Ibw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vcdB2f7Ibw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vcdB2f7Ibw .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vcdB2f7Ibw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vcdB2f7Ibw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vcdB2f7Ibw .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vcdB2f7Ibw .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vcdB2f7Ibw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vcdB2f7Ibw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vcdB2f7Ibw .navbar-caption {
  font-weight: 600!important;
}
.cid-vcdB2f7Ibw .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vcdB2f7Ibw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vcdB2f7Ibw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vcdB2f7Ibw .dropdown-item.active,
.cid-vcdB2f7Ibw .dropdown-item:active {
  background-color: transparent;
}
.cid-vcdB2f7Ibw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vcdB2f7Ibw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vcdB2f7Ibw .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vcdB2f7Ibw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vcdB2f7Ibw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vcdB2f7Ibw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vcdB2f7Ibw .navbar-buttons {
  text-align: center;
}
.cid-vcdB2f7Ibw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vcdB2f7Ibw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-vcdB2f7Ibw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vcdB2f7Ibw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vcdB2f7Ibw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vcdB2f7Ibw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vcdB2f7Ibw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vcdB2f7Ibw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vcdB2f7Ibw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vcdB2f7Ibw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vcdB2f7Ibw .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vcdB2f7Ibw .nav-link {
  font-weight: 600!important;
}
.cid-vcdB2f7Ibw a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vcdB2f7Ibw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vcdB2f7Ibw .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-vcdB2f7Ibw .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vcdB2f7Ibw .navbar {
    height: 77px;
  }
  .cid-vcdB2f7Ibw .navbar.opened {
    height: auto;
  }
  .cid-vcdB2f7Ibw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vcdB2fuMdy {
  padding-top: 180px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-vcdB2fuMdy H1 {
  color: #e4330d;
  text-align: center;
}
.cid-vcdB2fuMdy .mbr-text,
.cid-vcdB2fuMdy .mbr-section-btn {
  color: #232323;
}
.cid-vcdB2fuMdy .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2fuMdy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2fTvGL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vcdB2fTvGL img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vcdB2fTvGL H1 {
  color: #cb2c0a;
}
.cid-vcdB2fTvGL .mbr-text,
.cid-vcdB2fTvGL .mbr-section-btn {
  color: #716c80;
}
.cid-vcdB2fTvGL H3 {
  color: #716c80;
}
.cid-vcdB2fTvGL .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vcdB2fTvGL .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vcdB2fTvGL .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vcdB2fTvGL .link:hover {
  color: #0066ff !important;
}
.cid-vcdB2fTvGL .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vcdB2fTvGL DIV {
  color: #57468b;
}
.cid-vcdB2fTvGL .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2fTvGL .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2fTvGL .mbr-text,
.cid-vcdB2fTvGL .media-content {
  color: #232323;
}
.cid-vcdEdIQxcv {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vcdEdIQxcv img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vcdEdIQxcv H1 {
  color: #cb2c0a;
}
.cid-vcdEdIQxcv .mbr-text,
.cid-vcdEdIQxcv .mbr-section-btn {
  color: #716c80;
}
.cid-vcdEdIQxcv H3 {
  color: #716c80;
}
.cid-vcdEdIQxcv .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vcdEdIQxcv .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vcdEdIQxcv .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vcdEdIQxcv .link:hover {
  color: #0066ff !important;
}
.cid-vcdEdIQxcv .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vcdEdIQxcv DIV {
  color: #57468b;
}
.cid-vcdEdIQxcv .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdEdIQxcv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdEdIQxcv .mbr-text,
.cid-vcdEdIQxcv .media-content {
  color: #232323;
}
.cid-vcdE4N8pBJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vcdE4N8pBJ .mbr-text {
  color: #716c80;
  text-align: left;
}
.cid-vcdE4N8pBJ h4 {
  text-align: center;
}
.cid-vcdE4N8pBJ p {
  text-align: center;
}
.cid-vcdE4N8pBJ .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-vcdE4N8pBJ .mbr-iconfont {
  transition: all 0.3s;
  color: #e4330d !important;
  font-size: 6rem !important;
}
.cid-vcdE4N8pBJ .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-vcdE4N8pBJ .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-vcdE4N8pBJ .card:hover .mbr-iconfont {
  color: #636161 !important;
}
.cid-vcdE4N8pBJ .card-title,
.cid-vcdE4N8pBJ .card-img {
  color: #e4330d;
}
.cid-vcdE4N8pBJ .card-img {
  width: auto;
}
@media (max-width: 576px) {
  .cid-vcdE4N8pBJ .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
  .cid-vcdE4N8pBJ .card:hover {
    box-shadow: none;
    transform: none;
  }
}
.cid-vcdE4N8pBJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdE4N8pBJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2hytt1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vcdB2hytt1 H1 {
  color: #e4330d;
}
.cid-vcdB2hytt1 .mbr-text,
.cid-vcdB2hytt1 .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-vcdB2hytt1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2hytt1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2hOGb2 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vcdB2hOGb2 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vcdB2hOGb2 H1 {
  color: #cb2c0a;
}
.cid-vcdB2hOGb2 .mbr-text,
.cid-vcdB2hOGb2 .mbr-section-btn {
  color: #716c80;
}
.cid-vcdB2hOGb2 H3 {
  color: #716c80;
}
.cid-vcdB2hOGb2 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vcdB2hOGb2 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vcdB2hOGb2 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vcdB2hOGb2 .link:hover {
  color: #0066ff !important;
}
.cid-vcdB2hOGb2 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vcdB2hOGb2 DIV {
  color: #57468b;
}
.cid-vcdB2hOGb2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2hOGb2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2hOGb2 .mbr-text,
.cid-vcdB2hOGb2 .media-content {
  color: #232323;
}
.cid-vcdB2iTSGW {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cb2c0a;
}
.cid-vcdB2iTSGW img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vcdB2iTSGW H1 {
  color: #ffffff;
}
.cid-vcdB2iTSGW .mbr-text,
.cid-vcdB2iTSGW .mbr-section-btn {
  color: #716c80;
}
.cid-vcdB2iTSGW H3 {
  color: #716c80;
}
.cid-vcdB2iTSGW .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vcdB2iTSGW .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vcdB2iTSGW .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vcdB2iTSGW .link:hover {
  color: #0066ff !important;
}
.cid-vcdB2iTSGW .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vcdB2iTSGW DIV {
  color: #57468b;
}
.cid-vcdB2iTSGW .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2iTSGW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2iTSGW .mbr-text,
.cid-vcdB2iTSGW .media-content {
  color: #ffffff;
}
.cid-vcdB2kjUUQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cb2c0a;
}
.cid-vcdB2kjUUQ H1 {
  color: #e4330d;
}
.cid-vcdB2kjUUQ .mbr-text,
.cid-vcdB2kjUUQ .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-vcdB2kjUUQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2kjUUQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdNG2vIzK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vcdNG2vIzK img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vcdNG2vIzK H1 {
  color: #cb2c0a;
}
.cid-vcdNG2vIzK .mbr-text,
.cid-vcdNG2vIzK .mbr-section-btn {
  color: #716c80;
}
.cid-vcdNG2vIzK H3 {
  color: #716c80;
}
.cid-vcdNG2vIzK .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vcdNG2vIzK .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vcdNG2vIzK .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vcdNG2vIzK .link:hover {
  color: #0066ff !important;
}
.cid-vcdNG2vIzK .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vcdNG2vIzK DIV {
  color: #57468b;
}
.cid-vcdNG2vIzK .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdNG2vIzK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdNG2vIzK .mbr-text,
.cid-vcdNG2vIzK .media-content {
  color: #232323;
}
.cid-vcdB2kyHAk {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vcdB2kyHAk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2kyHAk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2kyHAk .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vcdB2kyHAk .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vcdB2kyHAk .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vcdB2kyHAk .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vcdB2kyHAk .embla__slide .slide-content {
  width: 100%;
}
.cid-vcdB2kyHAk .embla__slide .slide-content:hover .item-wrapper,
.cid-vcdB2kyHAk .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vcdB2kyHAk .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vcdB2kyHAk .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vcdB2kyHAk .embla__button--next,
.cid-vcdB2kyHAk .embla__button--prev {
  display: flex;
}
.cid-vcdB2kyHAk .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vcdB2kyHAk .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vcdB2kyHAk .embla__button.embla__button--prev {
  left: 0;
}
.cid-vcdB2kyHAk .embla__button.embla__button--next {
  right: 0;
}
.cid-vcdB2kyHAk .embla {
  position: relative;
  width: 100%;
}
.cid-vcdB2kyHAk .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vcdB2kyHAk .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vcdB2kyHAk .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vcdB2kyHAk .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vcdB2kyHAk .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vcdB2kyHAk .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vcdB2kyHAk .mbr-section-title,
.cid-vcdB2kyHAk .mbr-section-btn {
  color: #e4330d;
}
.cid-vcdB2lrVAo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-vcdB2lrVAo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vcdB2lrVAo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vcdB2lrVAo .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vcdB2lrVAo .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-vcdB2lrVAo .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vcdB2lrVAo .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-vcdB2lrVAo .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vcdB2lrVAo .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vcdB2lrVAo .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vcdB2lrVAo .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-vcdB2lrVAo .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vcdB2lrVAo .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vcdB2lrVAo .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-vcdB2lrVAo .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-vcdB2lrVAo .items-wrapper .card {
  padding: 0 32px;
}
.cid-vcdB2lrVAo .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vcdB2lrVAo .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vcdB2lrVAo .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-vcdB2lrVAo .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vcdB2lrVAo .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-vcdB2lrVAo .list-wrapper .list .item-wrap:hover,
.cid-vcdB2lrVAo .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vcdB2lrVAo .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vcdB2lrVAo .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vcdB2lrVAo .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vcdB2lrVAo .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-vcdB2lrVAo .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-vcdB2lrVAo .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-vcdB2lrVAo .mbr-desc {
  color: #ffffff;
}
.cid-vcdB2lrVAo .mbr-text,
.cid-vcdB2lrVAo .text-wrapper {
  color: #9aa0a6;
}
.cid-vcdB2lrVAo .list {
  color: #9aa0a6;
}
.cid-vcdB2lrVAo .mbr-text,
.cid-vcdB2lrVAo .mbr-section-btn {
  color: #ffffff;
}
.cid-vcdB2lrVAo .list,
.cid-vcdB2lrVAo .item-wrap {
  color: #ffffff;
}
.cid-vd4aPtltHh .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-vd4aPtltHh .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-vd4aPtltHh .nav-item:focus,
.cid-vd4aPtltHh .nav-link:focus {
  outline: none;
}
.cid-vd4aPtltHh .text-white:hover,
.cid-vd4aPtltHh .text-white:active,
.cid-vd4aPtltHh .text-white:focus {
  color: white!important;
}
.cid-vd4aPtltHh .section {
  position: relative;
  overflow: visible!important;
}
.cid-vd4aPtltHh .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-vd4aPtltHh .dropdown-item:hover {
  color: white!important;
}
.cid-vd4aPtltHh .dropdown-menu {
  background-color: black!important;
}
.cid-vd4aPtltHh .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-vd4aPtltHh .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-vd4aPtltHh .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-vd4aPtltHh .nav-item .nav-link {
    position: relative;
  }
}
.cid-vd4aPtltHh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vd4aPtltHh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-vd4aPtltHh .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-vd4aPtltHh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vd4aPtltHh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vd4aPtltHh .collapsed {
  flex-direction: row!important;
}
.cid-vd4aPtltHh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-vd4aPtltHh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-vd4aPtltHh .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-vd4aPtltHh .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-vd4aPtltHh .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-vd4aPtltHh .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-vd4aPtltHh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-vd4aPtltHh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-vd4aPtltHh .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-vd4aPtltHh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-vd4aPtltHh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-vd4aPtltHh .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-vd4aPtltHh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-vd4aPtltHh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-vd4aPtltHh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-vd4aPtltHh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-vd4aPtltHh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-vd4aPtltHh .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-vd4aPtltHh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-vd4aPtltHh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-vd4aPtltHh .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-vd4aPtltHh .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-vd4aPtltHh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-vd4aPtltHh .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-vd4aPtltHh .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-vd4aPtltHh .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-vd4aPtltHh .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-vd4aPtltHh .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-vd4aPtltHh .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-vd4aPtltHh .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-vd4aPtltHh .navbar-caption {
  font-weight: 600!important;
}
.cid-vd4aPtltHh .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-vd4aPtltHh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-vd4aPtltHh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-vd4aPtltHh .dropdown-item.active,
.cid-vd4aPtltHh .dropdown-item:active {
  background-color: transparent;
}
.cid-vd4aPtltHh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-vd4aPtltHh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-vd4aPtltHh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-vd4aPtltHh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-vd4aPtltHh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-vd4aPtltHh ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-vd4aPtltHh .navbar-buttons {
  text-align: center;
}
.cid-vd4aPtltHh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vd4aPtltHh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-vd4aPtltHh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vd4aPtltHh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vd4aPtltHh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vd4aPtltHh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vd4aPtltHh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vd4aPtltHh nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vd4aPtltHh nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vd4aPtltHh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vd4aPtltHh .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-vd4aPtltHh .nav-link {
  font-weight: 600!important;
}
.cid-vd4aPtltHh a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vd4aPtltHh .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-vd4aPtltHh .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-vd4aPtltHh .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-vd4aPtltHh .navbar {
    height: 77px;
  }
  .cid-vd4aPtltHh .navbar.opened {
    height: auto;
  }
  .cid-vd4aPtltHh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vd4aPtJcLo {
  padding-top: 180px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-vd4aPtJcLo H1 {
  color: #e4330d;
  text-align: center;
}
.cid-vd4aPtJcLo .mbr-text,
.cid-vd4aPtJcLo .mbr-section-btn {
  color: #232323;
}
.cid-vd4aPtJcLo .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPtJcLo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPtVSAZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vd4aPtVSAZ img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4aPtVSAZ H1 {
  color: #cb2c0a;
}
.cid-vd4aPtVSAZ .mbr-text,
.cid-vd4aPtVSAZ .mbr-section-btn {
  color: #716c80;
}
.cid-vd4aPtVSAZ H3 {
  color: #716c80;
}
.cid-vd4aPtVSAZ .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4aPtVSAZ .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4aPtVSAZ .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4aPtVSAZ .link:hover {
  color: #0066ff !important;
}
.cid-vd4aPtVSAZ .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4aPtVSAZ DIV {
  color: #57468b;
}
.cid-vd4aPtVSAZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPtVSAZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPtVSAZ .mbr-text,
.cid-vd4aPtVSAZ .media-content {
  color: #232323;
}
.cid-vd4aPu7if0 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vd4aPu7if0 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4aPu7if0 H1 {
  color: #cb2c0a;
}
.cid-vd4aPu7if0 .mbr-text,
.cid-vd4aPu7if0 .mbr-section-btn {
  color: #716c80;
}
.cid-vd4aPu7if0 H3 {
  color: #716c80;
}
.cid-vd4aPu7if0 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4aPu7if0 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4aPu7if0 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4aPu7if0 .link:hover {
  color: #0066ff !important;
}
.cid-vd4aPu7if0 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4aPu7if0 DIV {
  color: #57468b;
}
.cid-vd4aPu7if0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPu7if0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPu7if0 .mbr-text,
.cid-vd4aPu7if0 .media-content {
  color: #232323;
}
.cid-vd4aPuj4Mh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vd4aPuj4Mh .mbr-text {
  color: #716c80;
  text-align: left;
}
.cid-vd4aPuj4Mh h4 {
  text-align: center;
}
.cid-vd4aPuj4Mh p {
  text-align: center;
}
.cid-vd4aPuj4Mh .card-img span {
  font-size: 96px;
  color: #149dcc;
}
.cid-vd4aPuj4Mh .mbr-iconfont {
  transition: all 0.3s;
  color: #e4330d !important;
  font-size: 6rem !important;
}
.cid-vd4aPuj4Mh .card {
  transition: all 0.3s;
  padding: 2rem!important;
}
.cid-vd4aPuj4Mh .card:hover {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  transform: translateY(-1.5rem);
}
.cid-vd4aPuj4Mh .card:hover .mbr-iconfont {
  color: #636161 !important;
}
.cid-vd4aPuj4Mh .card-title,
.cid-vd4aPuj4Mh .card-img {
  color: #e4330d;
}
.cid-vd4aPuj4Mh .card-img {
  width: auto;
}
@media (max-width: 576px) {
  .cid-vd4aPuj4Mh .card {
    padding: 2rem 0rem 0rem 0rem!important;
  }
  .cid-vd4aPuj4Mh .card:hover {
    box-shadow: none;
    transform: none;
  }
}
.cid-vd4aPuj4Mh .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPuj4Mh .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPuPHsq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vd4aPuPHsq img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4aPuPHsq H1 {
  color: #cb2c0a;
}
.cid-vd4aPuPHsq .mbr-text,
.cid-vd4aPuPHsq .mbr-section-btn {
  color: #716c80;
}
.cid-vd4aPuPHsq H3 {
  color: #716c80;
}
.cid-vd4aPuPHsq .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4aPuPHsq .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4aPuPHsq .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4aPuPHsq .link:hover {
  color: #0066ff !important;
}
.cid-vd4aPuPHsq .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4aPuPHsq DIV {
  color: #57468b;
}
.cid-vd4aPuPHsq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPuPHsq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPuPHsq .mbr-text,
.cid-vd4aPuPHsq .media-content {
  color: #232323;
}
.cid-vd4aPv6KHP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cb2c0a;
}
.cid-vd4aPv6KHP img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4aPv6KHP H1 {
  color: #ffffff;
}
.cid-vd4aPv6KHP .mbr-text,
.cid-vd4aPv6KHP .mbr-section-btn {
  color: #716c80;
}
.cid-vd4aPv6KHP H3 {
  color: #716c80;
}
.cid-vd4aPv6KHP .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4aPv6KHP .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4aPv6KHP .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4aPv6KHP .link:hover {
  color: #0066ff !important;
}
.cid-vd4aPv6KHP .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4aPv6KHP DIV {
  color: #57468b;
}
.cid-vd4aPv6KHP .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPv6KHP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPv6KHP .mbr-text,
.cid-vd4aPv6KHP .media-content {
  color: #ffffff;
}
.cid-vd4aPvjoTq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cb2c0a;
}
.cid-vd4aPvjoTq H1 {
  color: #e4330d;
}
.cid-vd4aPvjoTq .mbr-text,
.cid-vd4aPvjoTq .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-vd4aPvjoTq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPvjoTq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4h5iYBUH {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vd4h5iYBUH img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4h5iYBUH H1 {
  color: #cb2c0a;
}
.cid-vd4h5iYBUH .mbr-text,
.cid-vd4h5iYBUH .mbr-section-btn {
  color: #716c80;
}
.cid-vd4h5iYBUH H3 {
  color: #716c80;
}
.cid-vd4h5iYBUH .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4h5iYBUH .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4h5iYBUH .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4h5iYBUH .link:hover {
  color: #0066ff !important;
}
.cid-vd4h5iYBUH .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4h5iYBUH DIV {
  color: #57468b;
}
.cid-vd4h5iYBUH .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4h5iYBUH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4h5iYBUH .mbr-text,
.cid-vd4h5iYBUH .media-content {
  color: #232323;
}
.cid-vd4i9AqfbU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vd4i9AqfbU img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4i9AqfbU H1 {
  color: #cb2c0a;
}
.cid-vd4i9AqfbU .mbr-text,
.cid-vd4i9AqfbU .mbr-section-btn {
  color: #716c80;
}
.cid-vd4i9AqfbU H3 {
  color: #716c80;
}
.cid-vd4i9AqfbU .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4i9AqfbU .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4i9AqfbU .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4i9AqfbU .link:hover {
  color: #0066ff !important;
}
.cid-vd4i9AqfbU .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4i9AqfbU DIV {
  color: #57468b;
}
.cid-vd4i9AqfbU .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4i9AqfbU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4i9AqfbU .mbr-text,
.cid-vd4i9AqfbU .media-content {
  color: #232323;
}
.cid-vd4kF3M7Qw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-vd4kF3M7Qw img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4kF3M7Qw H1 {
  color: #cb2c0a;
}
.cid-vd4kF3M7Qw .mbr-text,
.cid-vd4kF3M7Qw .mbr-section-btn {
  color: #716c80;
}
.cid-vd4kF3M7Qw H3 {
  color: #716c80;
}
.cid-vd4kF3M7Qw .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4kF3M7Qw .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4kF3M7Qw .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4kF3M7Qw .link:hover {
  color: #0066ff !important;
}
.cid-vd4kF3M7Qw .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4kF3M7Qw DIV {
  color: #57468b;
}
.cid-vd4kF3M7Qw .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4kF3M7Qw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4kF3M7Qw .mbr-text,
.cid-vd4kF3M7Qw .media-content {
  color: #232323;
}
.cid-vd4mAaaPRa {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #cb2c0a;
}
.cid-vd4mAaaPRa img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-vd4mAaaPRa H1 {
  color: #ffffff;
}
.cid-vd4mAaaPRa .mbr-text,
.cid-vd4mAaaPRa .mbr-section-btn {
  color: #716c80;
}
.cid-vd4mAaaPRa H3 {
  color: #716c80;
}
.cid-vd4mAaaPRa .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-vd4mAaaPRa .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-vd4mAaaPRa .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-vd4mAaaPRa .link:hover {
  color: #0066ff !important;
}
.cid-vd4mAaaPRa .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-vd4mAaaPRa DIV {
  color: #57468b;
}
.cid-vd4mAaaPRa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4mAaaPRa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4mAaaPRa .mbr-text,
.cid-vd4mAaaPRa .media-content {
  color: #ffffff;
}
.cid-vd4mOvLaQ8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #cb2c0a;
}
.cid-vd4mOvLaQ8 H1 {
  color: #e4330d;
}
.cid-vd4mOvLaQ8 .mbr-text,
.cid-vd4mOvLaQ8 .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-vd4mOvLaQ8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4mOvLaQ8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPvPfsl {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vd4aPvPfsl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPvPfsl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPvPfsl .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vd4aPvPfsl .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-vd4aPvPfsl .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-vd4aPvPfsl .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-vd4aPvPfsl .embla__slide .slide-content {
  width: 100%;
}
.cid-vd4aPvPfsl .embla__slide .slide-content:hover .item-wrapper,
.cid-vd4aPvPfsl .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-vd4aPvPfsl .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-vd4aPvPfsl .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-vd4aPvPfsl .embla__button--next,
.cid-vd4aPvPfsl .embla__button--prev {
  display: flex;
}
.cid-vd4aPvPfsl .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-vd4aPvPfsl .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-vd4aPvPfsl .embla__button.embla__button--prev {
  left: 0;
}
.cid-vd4aPvPfsl .embla__button.embla__button--next {
  right: 0;
}
.cid-vd4aPvPfsl .embla {
  position: relative;
  width: 100%;
}
.cid-vd4aPvPfsl .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-vd4aPvPfsl .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-vd4aPvPfsl .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-vd4aPvPfsl .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-vd4aPvPfsl .item-menu-overlay {
  opacity: 0 !important;
}
.cid-vd4aPvPfsl .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-vd4aPvPfsl .mbr-section-title,
.cid-vd4aPvPfsl .mbr-section-btn {
  color: #e4330d;
}
.cid-vd4aPwxEig {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-vd4aPwxEig .mbr-fallback-image.disabled {
  display: none;
}
.cid-vd4aPwxEig .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vd4aPwxEig .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-vd4aPwxEig .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-vd4aPwxEig .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-vd4aPwxEig .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-vd4aPwxEig .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-vd4aPwxEig .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-vd4aPwxEig .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-vd4aPwxEig .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-vd4aPwxEig .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-vd4aPwxEig .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-vd4aPwxEig .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-vd4aPwxEig .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-vd4aPwxEig .items-wrapper .card {
  padding: 0 32px;
}
.cid-vd4aPwxEig .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vd4aPwxEig .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vd4aPwxEig .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-vd4aPwxEig .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-vd4aPwxEig .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-vd4aPwxEig .list-wrapper .list .item-wrap:hover,
.cid-vd4aPwxEig .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-vd4aPwxEig .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-vd4aPwxEig .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-vd4aPwxEig .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-vd4aPwxEig .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-vd4aPwxEig .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-vd4aPwxEig .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-vd4aPwxEig .mbr-desc {
  color: #ffffff;
}
.cid-vd4aPwxEig .mbr-text,
.cid-vd4aPwxEig .text-wrapper {
  color: #9aa0a6;
}
.cid-vd4aPwxEig .list {
  color: #9aa0a6;
}
.cid-vd4aPwxEig .mbr-text,
.cid-vd4aPwxEig .mbr-section-btn {
  color: #ffffff;
}
.cid-vd4aPwxEig .list,
.cid-vd4aPwxEig .item-wrap {
  color: #ffffff;
}
.cid-u68Xv7zMOt .dropdown-item:before {
  content: '';
  position: absolute;
  left: 16px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .dropdown-item:hover:before {
  opacity: 1!important;
}
.cid-u68Xv7zMOt .nav-item:focus,
.cid-u68Xv7zMOt .nav-link:focus {
  outline: none;
}
.cid-u68Xv7zMOt .text-white:hover,
.cid-u68Xv7zMOt .text-white:active,
.cid-u68Xv7zMOt .text-white:focus {
  color: white!important;
}
.cid-u68Xv7zMOt .section {
  position: relative;
  overflow: visible!important;
}
.cid-u68Xv7zMOt .dropdown-item {
  font-weight: 400!important;
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-item:hover {
  color: white!important;
}
.cid-u68Xv7zMOt .dropdown-menu {
  background-color: black!important;
}
.cid-u68Xv7zMOt .navbar .dropdown.open > .dropdown-menu {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
  display: block;
}
.cid-u68Xv7zMOt .nav-link:before {
  content: '';
  position: absolute;
  left: 10px;
  top: 52%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  opacity: 0;
  background-color: #ff3d00;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.cid-u68Xv7zMOt .nav-item:hover .nav-link:before {
  opacity: 1!important;
}
@media (min-width: 992px) {
  .cid-u68Xv7zMOt .nav-item .nav-link {
    position: relative;
  }
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item:hover {
  padding-left: 2rem;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-u68Xv7zMOt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-u68Xv7zMOt .collapsed {
  flex-direction: row!important;
}
.cid-u68Xv7zMOt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-u68Xv7zMOt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-u68Xv7zMOt .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #ffffff;
  background: none;
}
.cid-u68Xv7zMOt .navbar.opened {
  transition: all .3s;
  background: #ffffff !important;
}
.cid-u68Xv7zMOt .navbar .dropdown-item {
  padding: .235rem 1.5rem;
}
.cid-u68Xv7zMOt .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-u68Xv7zMOt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-u68Xv7zMOt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-u68Xv7zMOt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-u68Xv7zMOt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-u68Xv7zMOt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-u68Xv7zMOt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-u68Xv7zMOt .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-u68Xv7zMOt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-u68Xv7zMOt .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
  }
  .cid-u68Xv7zMOt .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-u68Xv7zMOt .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-u68Xv7zMOt .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-u68Xv7zMOt .navbar.navbar-short {
  background: #ffffff !important;
  min-height: 60px;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-u68Xv7zMOt .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-u68Xv7zMOt .navbar-caption {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-u68Xv7zMOt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-u68Xv7zMOt .dropdown-item.active,
.cid-u68Xv7zMOt .dropdown-item:active {
  background-color: transparent;
}
.cid-u68Xv7zMOt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-u68Xv7zMOt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-u68Xv7zMOt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-u68Xv7zMOt ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-u68Xv7zMOt .navbar-buttons {
  text-align: center;
}
.cid-u68Xv7zMOt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #e4330d;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-u68Xv7zMOt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-u68Xv7zMOt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-u68Xv7zMOt .navbar-dropdown {
  position: absolute;
  top: 0;
  left: 0;
  padding: .5rem 1rem;
  position: fixed;
}
.cid-u68Xv7zMOt .nav-link {
  font-weight: 600!important;
}
.cid-u68Xv7zMOt a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-u68Xv7zMOt .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-u68Xv7zMOt .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
}
.cid-u68Xv7zMOt .icons-menu span {
  font-size: 26px;
  color: #232323;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-u68Xv7zMOt .navbar {
    height: 77px;
  }
  .cid-u68Xv7zMOt .navbar.opened {
    height: auto;
  }
  .cid-u68Xv7zMOt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vaVdrYKqHO {
  padding-top: 210px;
  padding-bottom: 105px;
  background-image: url("../../../assets/images/photo-1488229297570-58520851e868.webp");
}
.cid-vaVdrYKqHO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vaVdrYKqHO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vaVdrYKqHO .mbr-text,
.cid-vaVdrYKqHO .mbr-section-btn {
  color: #e1e8ff;
}
.cid-vaVdrYKqHO H1 {
  text-align: left;
  color: #cb2c0a;
}
.cid-vaVdrYKqHO H3 {
  color: #000000;
}
.cid-uTxTIZliY4 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-uTxTIZliY4 img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-uTxTIZliY4 H1 {
  color: #cb2c0a;
}
.cid-uTxTIZliY4 .mbr-text,
.cid-uTxTIZliY4 .mbr-section-btn {
  color: #716c80;
}
.cid-uTxTIZliY4 H3 {
  color: #716c80;
}
.cid-uTxTIZliY4 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uTxTIZliY4 .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-uTxTIZliY4 .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-uTxTIZliY4 .link:hover {
  color: #0066ff !important;
}
.cid-uTxTIZliY4 .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-uTxTIZliY4 DIV {
  color: #57468b;
}
.cid-uTxTIZliY4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTxTIZliY4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTxTIZliY4 .mbr-text,
.cid-uTxTIZliY4 .media-content {
  color: #232323;
}
.cid-uTxJO70gH7 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f6ff;
}
.cid-uTxJO70gH7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTxJO70gH7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uTxJO70gH7 .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-uTxJO70gH7 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-uTxJO70gH7 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-uTxJO70gH7 .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-uTxJO70gH7 .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-uTxJO70gH7 .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-uTxJO70gH7 .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-uTxJO70gH7 .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-uTxJO70gH7 .app-video-wrapper img {
  background-color: #ffffff;
  padding: 4px;
}
.cid-uTxJO70gH7 .media-content,
.cid-uTxJO70gH7 .mbr-figure {
  align-self: center;
}
.cid-uTxJO70gH7 .mbr-figure {
  overflow: hidden;
}
.cid-uTxJO70gH7 .card {
  background-color: #000000;
  background-color: #ffffff;
  padding: 4px;
}
.cid-uTxJO70gH7 .icon-title {
  color: #bff747;
}
.cid-uTxJO70gH7 .mbr-text {
  color: #232323;
}
.cid-uTxJO70gH7 .mbr-number {
  color: #cb2c0a;
}
.cid-uTxJO70gH7 .card-text,
.cid-uTxJO70gH7 .item .mbr-section-btn {
  color: #232323;
}
.cid-uTxJO70gH7 .mbr-section-title {
  color: #e4330d;
}
.cid-v9wvV8BRyJ {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9wvV8BRyJ img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9wvV8BRyJ H1 {
  color: #cb2c0a;
}
.cid-v9wvV8BRyJ .mbr-text,
.cid-v9wvV8BRyJ .mbr-section-btn {
  color: #716c80;
}
.cid-v9wvV8BRyJ H3 {
  color: #716c80;
}
.cid-v9wvV8BRyJ .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9wvV8BRyJ .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9wvV8BRyJ .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9wvV8BRyJ .link:hover {
  color: #0066ff !important;
}
.cid-v9wvV8BRyJ .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9wvV8BRyJ DIV {
  color: #57468b;
}
.cid-v9wvV8BRyJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9wvV8BRyJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9wvV8BRyJ .mbr-text,
.cid-v9wvV8BRyJ .media-content {
  color: #232323;
}
.cid-v9GhFieheG {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #f2f6ff;
}
.cid-v9GhFieheG img {
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v9GhFieheG .mbr-text,
.cid-v9GhFieheG .mbr-section-btn {
  color: #57468b;
}
.cid-v9GhFieheG H3 {
  color: #57468b;
}
.cid-v9GhFieheG H1 {
  color: #cb2c0a;
  text-align: justify;
}
@media (max-width: 992px) {
  .cid-v9GhFieheG img {
    width: 100%!important;
  }
}
.cid-v9GhFieheG .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9GhFieheG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9wJ2QpuEx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9wJ2QpuEx img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9wJ2QpuEx H1 {
  color: #cb2c0a;
}
.cid-v9wJ2QpuEx .mbr-text,
.cid-v9wJ2QpuEx .mbr-section-btn {
  color: #716c80;
}
.cid-v9wJ2QpuEx H3 {
  color: #716c80;
}
.cid-v9wJ2QpuEx .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9wJ2QpuEx .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9wJ2QpuEx .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9wJ2QpuEx .link:hover {
  color: #0066ff !important;
}
.cid-v9wJ2QpuEx .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9wJ2QpuEx DIV {
  color: #57468b;
}
.cid-v9wJ2QpuEx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9wJ2QpuEx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9wJ2QpuEx .mbr-text,
.cid-v9wJ2QpuEx .media-content {
  color: #232323;
}
.cid-v9LIeLOlu1 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #f2f6ff;
}
.cid-v9LIeLOlu1 h4 {
  margin-bottom: 0;
}
.cid-v9LIeLOlu1 p {
  color: #767676;
}
.cid-v9LIeLOlu1 .card:hover img {
  box-shadow: 0 10px 55px 5px rgba(137, 173, 255, 0.35);
}
.cid-v9LIeLOlu1 .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-v9LIeLOlu1 .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-v9LIeLOlu1 .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-v9LIeLOlu1 .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-v9LIeLOlu1 .btn-info-outline:active,
.cid-v9LIeLOlu1 .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-v9LIeLOlu1 .card-box {
  padding-top: 2rem;
}
.cid-v9LIeLOlu1 .card-wrapper {
  height: 100%;
}
.cid-v9LIeLOlu1 .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9LIeLOlu1 img {
  transition: all 0.3s;
  border-radius: 8px;
}
.cid-v9LIeLOlu1 .card-title {
  color: #cb2c0a;
}
.cid-v9LIeLOlu1 .main-title {
  color: #57468b;
}
.cid-v9LIeLOlu1 DIV {
  color: #57468b;
}
.cid-v9LIeLOlu1 .card-img {
  width: auto;
}
.cid-v9LIeLOlu1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9LIeLOlu1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BEjpkArU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f2f6ff;
}
.cid-v9BEjpkArU img {
  height: 100%;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.cid-v9BEjpkArU H1 {
  color: #cb2c0a;
}
.cid-v9BEjpkArU .mbr-text,
.cid-v9BEjpkArU .mbr-section-btn {
  color: #716c80;
}
.cid-v9BEjpkArU H3 {
  color: #716c80;
}
.cid-v9BEjpkArU .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-v9BEjpkArU .link {
  display: flex;
  width: fit-content;
  transition: all 0.3s;
  align-items: center;
}
.cid-v9BEjpkArU .link .link-ico {
  padding-top: 2px;
  transition: padding 0.3s;
}
.cid-v9BEjpkArU .link:hover {
  color: #0066ff !important;
}
.cid-v9BEjpkArU .link:hover .link-ico {
  color: #0066ff !important;
  padding-left: 10px;
}
.cid-v9BEjpkArU DIV {
  color: #57468b;
}
.cid-v9BEjpkArU .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9BEjpkArU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v9BEjpkArU .mbr-text,
.cid-v9BEjpkArU .media-content {
  color: #232323;
}
.cid-uTxXilg3py {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f2f6ff;
}
.cid-uTxXilg3py h4 {
  margin-bottom: 0;
}
.cid-uTxXilg3py p {
  color: #767676;
}
.cid-uTxXilg3py .btn-info-outline {
  border: none;
  color: #42c200 !important;
  padding: 0;
  margin: 0 0.25rem!important;
}
.cid-uTxXilg3py .btn-info-outline span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  transition: padding 0.3s!important;
}
.cid-uTxXilg3py .btn-info-outline:hover span {
  padding-left: 10px;
}
.cid-uTxXilg3py .btn-info-outline:hover {
  background-color: transparent!important;
  color: #0066ff !important;
  box-shadow: none!important;
}
.cid-uTxXilg3py .btn-info-outline:active,
.cid-uTxXilg3py .btn-info-outline:focus {
  background-color: transparent!important;
  box-shadow: none!important;
}
.cid-uTxXilg3py .card-box {
  padding-top: 2rem;
}
.cid-uTxXilg3py .card-wrapper {
  height: 100%;
}
.cid-uTxXilg3py .mbr-iconfont {
  padding-left: 0.4rem;
}
.cid-uTxXilg3py img {
  border-radius: 8px;
}
.cid-uTxXilg3py .card-title {
  color: #232323;
}
.cid-uTxXilg3py .main-title {
  color: #cb2c0a;
  text-align: justify;
}
.cid-uTxXilg3py DIV {
  color: #57468b;
}
.cid-uTxXilg3py .card-img {
  width: auto;
}
.cid-uTxXilg3py .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTxXilg3py .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTxQKq7VCz {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #f2f6ff;
}
.cid-uTxQKq7VCz .card-subtitle {
  text-align: left;
  margin-left: -15px;
  color: #000000;
}
.cid-uTxQKq7VCz .flex-column {
  transition: all 300ms ease;
  border-radius: 2rem;
  padding: 2rem 1.5rem;
  background-color: #f2f6ff;
}
.cid-uTxQKq7VCz .flex-column:hover {
  box-shadow: 5px 5px 0 0 #000000 !important;
  background-color: #cccccc;
}
.cid-uTxQKq7VCz .flex-column .iconfont-wrapper {
  text-align: left;
  margin-bottom: 16px;
}
.cid-uTxQKq7VCz .flex-column .iconfont-wrapper .mbr-iconfont {
  color: #cb2c0a;
}
.cid-uTxQKq7VCz .card-text {
  margin-bottom: 2rem;
  text-align: left;
  color: #000000;
}
.cid-uTxQKq7VCz .button-align {
  margin-top: 36px;
  text-align: center;
}
.cid-uTxQKq7VCz .mbr-section-btn {
  width: auto;
  display: inline-block;
}
.cid-uTxQKq7VCz img {
  border-radius: 10%;
  height: 65px;
  width: auto;
  margin: 0;
}
.cid-uTxQKq7VCz .flex-column .mbr-iconfont::before {
  font-size: 25px;
}
.cid-uTxQKq7VCz .card-title {
  margin-bottom: 4px;
  padding: 0;
  margin-left: -15px;
}
.cid-uTxQKq7VCz .col-12.col-md-6.col-lg-4 {
  margin-top: 30px;
}
.cid-uTxQKq7VCz .col-12.col-md-6.col-lg-4:nth-child(1) {
  margin-top: 0px;
}
.cid-uTxQKq7VCz .col-12.col-md-6.col-lg-4:nth-child(2) {
  margin-top: 0px;
}
.cid-uTxQKq7VCz .col-12.col-md-6.col-lg-4:nth-child(3) {
  margin-top: 0px;
}
@media (max-width: 992px) {
  .cid-uTxQKq7VCz .col-12.col-md-6.col-lg-4:nth-child(3) {
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .cid-uTxQKq7VCz .col-12.col-md-6.col-lg-4:nth-child(2) {
    margin-top: 30px;
  }
}
.cid-uTxQKq7VCz .align {
  display: flex;
  align-items: center;
}
.cid-uTxQKq7VCz .mbr-section-title {
  margin-bottom: 56px;
  color: #cb2c0a;
  text-align: justify;
}
.cid-uTxQKq7VCz .btn {
  margin-top: 20px;
  padding: 1rem 2rem;
}
.cid-uTxQKq7VCz .card-text,
.cid-uTxQKq7VCz .iconfont-wrapper {
  color: #232323;
}
.cid-uTxQKq7VCz .item-title {
  color: #000000;
  margin-bottom: 1rem;
}
.cid-v9LVBVl3Zx {
  padding-top: 30px;
  padding-bottom: 45px;
  background-color: #f2f6ff;
}
.cid-v9LVBVl3Zx H1 {
  color: #e4330d;
}
.cid-v9LVBVl3Zx .mbr-text,
.cid-v9LVBVl3Zx .mbr-section-btn {
  color: #716c80;
  text-align: center;
}
.cid-v9LVBVl3Zx .mbr-fallback-image.disabled {
  display: none;
}
.cid-v9LVBVl3Zx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTF6IqGe9O {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-uTF6IqGe9O .mbr-fallback-image.disabled {
  display: none;
}
.cid-uTF6IqGe9O .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uTF6IqGe9O .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uTF6IqGe9O .title-wrapper .mbr-section-title {
    margin-bottom: 30px;
  }
}
.cid-uTF6IqGe9O .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 220px;
  max-width: 220px;
}
@media (max-width: 767px) {
  .cid-uTF6IqGe9O .embla__slide {
    min-width: 100%;
    max-width: 100%;
  }
}
.cid-uTF6IqGe9O .embla__slide .slide-content {
  width: 100%;
}
.cid-uTF6IqGe9O .embla__slide .slide-content:hover .item-wrapper,
.cid-uTF6IqGe9O .embla__slide .slide-content:focus .item-wrapper {
  background-color: #e4330d;
}
.cid-uTF6IqGe9O .embla__slide .slide-content .item-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 140px;
  transition: all 0.3s ease-in-out;
  padding: 0 20px;
}
.cid-uTF6IqGe9O .embla__slide .slide-content .item-wrapper .item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-uTF6IqGe9O .embla__button--next,
.cid-uTF6IqGe9O .embla__button--prev {
  display: flex;
}
.cid-uTF6IqGe9O .embla__button {
  bottom: 0;
  width: 60px;
  height: 60px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 50%;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
  display: none;
}
.cid-uTF6IqGe9O .embla__button:hover {
  background-color: #e4ed64 !important;
  color: #000000 !important;
}
.cid-uTF6IqGe9O .embla__button.embla__button--prev {
  left: 0;
}
.cid-uTF6IqGe9O .embla__button.embla__button--next {
  right: 0;
}
.cid-uTF6IqGe9O .embla {
  position: relative;
  width: 100%;
}
.cid-uTF6IqGe9O .embla__viewport {
  overflow: hidden;
  width: 100%;
  margin-right: 1rem;
}
.cid-uTF6IqGe9O .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-uTF6IqGe9O .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-uTF6IqGe9O .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.cid-uTF6IqGe9O .item-menu-overlay {
  opacity: 0 !important;
}
.cid-uTF6IqGe9O .mbr-section-title {
  color: #000000;
  text-align: center;
}
.cid-uTF6IqGe9O .mbr-section-title,
.cid-uTF6IqGe9O .mbr-section-btn {
  color: #cb2c0a;
  text-align: justify;
}
.cid-uP88PsCGsp {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #232323;
}
.cid-uP88PsCGsp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP88PsCGsp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper {
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .content-wrapper .social-wrapper {
    display: block;
  }
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .mbr-desc {
  margin-right: 24px;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .content-wrapper .social-wrapper .mbr-desc {
    margin-right: 0;
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap {
  display: inline-flex;
  flex-wrap: wrap;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a {
  display: block;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a:hover .mbr-iconfont,
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a:focus .mbr-iconfont {
  background-color: #cccccc;
  color: #ffffff;
}
.cid-uP88PsCGsp .content-wrapper .social-wrapper .social-wrap .soc-item a .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  color: #efefef;
  background-color: transparent;
  font-size: 24px;
  border-radius: 100%;
  transition: all 0.3s ease-in-out;
  margin: 2px;
}
.cid-uP88PsCGsp .border-wrap {
  width: 100%;
  height: 1px;
  background-color: #ffffff;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .border-wrap {
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .items-wrapper {
  margin: 0 -32px;
  justify-content: center;
}
.cid-uP88PsCGsp .items-wrapper .card {
  padding: 0 32px;
}
.cid-uP88PsCGsp .list-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .list-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .list-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP88PsCGsp .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-uP88PsCGsp .list-wrapper .list .item-wrap {
  margin-bottom: 8px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
.cid-uP88PsCGsp .list-wrapper .list .item-wrap:hover,
.cid-uP88PsCGsp .list-wrapper .list .item-wrap:focus {
  color: #ffffff;
}
.cid-uP88PsCGsp .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-uP88PsCGsp .text-wrapper {
  margin-bottom: 48px;
}
@media (max-width: 992px) {
  .cid-uP88PsCGsp .text-wrapper {
    margin-bottom: 24px;
  }
}
.cid-uP88PsCGsp .text-wrapper .mbr-desc {
  margin-bottom: 16px;
}
.cid-uP88PsCGsp .text-wrapper .mbr-text {
  margin-bottom: 16px;
}
.cid-uP88PsCGsp .mbr-copy {
  margin-bottom: 0;
  color: #9aa0a6;
}
.cid-uP88PsCGsp .mbr-desc {
  color: #ffffff;
}
.cid-uP88PsCGsp .mbr-text,
.cid-uP88PsCGsp .text-wrapper {
  color: #9aa0a6;
}
.cid-uP88PsCGsp .list {
  color: #9aa0a6;
}
.cid-uP88PsCGsp .mbr-text,
.cid-uP88PsCGsp .mbr-section-btn {
  color: #ffffff;
}
.cid-uP88PsCGsp .list,
.cid-uP88PsCGsp .item-wrap {
  color: #ffffff;
}
