body {
  font-family: Spartan;
}
.display-1 {
  font-family: 'Work Sans', sans-serif;
  font-size: 3.75rem;
  line-height: 1.25;
  letter-spacing: -0.07em;
}
.display-1 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-2 {
  font-family: 'Spartan', sans-serif;
  font-size: 3.2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 4rem;
}
.display-4 {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
}
.display-4 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-5 {
  font-family: 'Spartan', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.05em;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.625rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.56rem;
    font-size: calc( 1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.77rem + (3.2 - 1.77) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 30px;
}
.bg-primary {
  background-color: #111151 !important;
}
.bg-success {
  background-color: #ffc772 !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffa41d !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #111151 !important;
  border-color: #111151 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #020209 !important;
  border-color: #020209 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #020209 !important;
  border-color: #020209 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #111151 !important;
  border-color: #111151 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #020209 !important;
  border-color: #020209 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #020209 !important;
  border-color: #020209 !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffc772 !important;
  border-color: #ffc772 !important;
  color: #724500 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #ffa51b !important;
  border-color: #ffa51b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #724500 !important;
  background-color: #ffa51b !important;
  border-color: #ffa51b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffa41d !important;
  border-color: #ffa41d !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #c57600 !important;
  border-color: #c57600 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #c57600 !important;
  border-color: #c57600 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #111151;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #020209 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #111151 !important;
  border-color: #111151 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #111151;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #020209 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #111151 !important;
  border-color: #111151 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffc772;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffa51b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #724500 !important;
  background-color: #ffc772 !important;
  border-color: #ffc772 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffa41d;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #c57600 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #ffa41d !important;
  border-color: #ffa41d !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #111151 !important;
}
.text-secondary {
  color: #111151 !important;
}
.text-success {
  color: #ffc772 !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffa41d !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #ff9e0c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #b66d00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #111151;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffa41d;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #111151;
  border-color: #111151;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #111151;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #6868df;
}
.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: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fff6e9;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.75rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #111151 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Roboto Condensed', sans-serif;
  font-size: 1.4rem;
  letter-spacing: -0.04em;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.75rem;
}
blockquote {
  border-color: #111151;
}
/* Forms */
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #111151;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #111151;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #111151;
  border-bottom-color: #111151;
}
.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: #111151 !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: #111151 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23111151' %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;
}
html,
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-tFcjmH3JIG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFcjmH3JIG nav.navbar {
  position: fixed;
}
.cid-tFcjmH3JIG .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .wrapper {
    padding: 0;
  }
}
.cid-tFcjmH3JIG .btn {
  border-radius: 30px;
}
.cid-tFcjmH3JIG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFcjmH3JIG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFcjmH3JIG .dropdown-item:hover,
.cid-tFcjmH3JIG .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-tFcjmH3JIG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFcjmH3JIG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFcjmH3JIG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFcjmH3JIG .nav-link {
  position: relative;
}
.cid-tFcjmH3JIG .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown-menu,
.cid-tFcjmH3JIG .navbar.opened {
  background: #232323 !important;
}
.cid-tFcjmH3JIG .nav-item:focus,
.cid-tFcjmH3JIG .nav-link:focus {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFcjmH3JIG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFcjmH3JIG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.opened {
  transition: all 0.3s;
}
.cid-tFcjmH3JIG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFcjmH3JIG .navbar .navbar-logo img {
  width: auto;
}
.cid-tFcjmH3JIG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar.collapsed {
  justify-content: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFcjmH3JIG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFcjmH3JIG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFcjmH3JIG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFcjmH3JIG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFcjmH3JIG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFcjmH3JIG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFcjmH3JIG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFcjmH3JIG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFcjmH3JIG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFcjmH3JIG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFcjmH3JIG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown-item.active,
.cid-tFcjmH3JIG .dropdown-item:active {
  background-color: transparent;
}
.cid-tFcjmH3JIG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFcjmH3JIG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFcjmH3JIG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFcjmH3JIG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFcjmH3JIG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tFcjmH3JIG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFcjmH3JIG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFcjmH3JIG .navbar {
    height: 70px;
  }
  .cid-tFcjmH3JIG .navbar.opened {
    height: auto;
  }
  .cid-tFcjmH3JIG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uftnGssSi3 {
  padding-top: 7rem;
  padding-bottom: 3rem;
}
.cid-uftnGssSi3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uftnGssSi3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-image: url("../../../assets/images/img20230721124242-2000x1128.jpg");
}
@media (max-width: 992px) {
  .cid-uftnGssSi3 .container {
    padding: 0 20px;
  }
  .cid-uftnGssSi3 .container .row {
    padding: 0;
  }
}
.cid-uftnGssSi3 .title-wrapper .mbr-section-title {
  margin-bottom: 90px;
}
@media (max-width: 992px) {
  .cid-uftnGssSi3 .title-wrapper .mbr-section-title {
    margin-bottom: 40px;
  }
}
.cid-uftnGssSi3 .text-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .cid-uftnGssSi3 .text-wrapper .mbr-text {
    margin-bottom: 32px;
  }
}
.cid-uftnGssSi3 .text-wrapper .mbr-section-btn .btn .mbr-iconfont {
  color: #c6a38f;
}
.cid-uftnGssSi3 .mbr-section-title {
  color: #feff1d;
  text-align: center;
}
.cid-uftnGssSi3 .mbr-text {
  color: #ffffff;
}
.cid-uftnGssSi3 .mbr-text,
.cid-uftnGssSi3 .mbr-section-btn {
  text-align: center;
  color: #eaeaea;
}
.cid-uPfpzZ5rpi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uPfpzZ5rpi .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPfpzZ5rpi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPfpzZ5rpi .mbr-section-title {
  color: #ffffff;
}
.cid-tE4mx9L9gt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-tE4mx9L9gt .mbr-list {
  display: inline-flex;
}
@media (max-width: 768px) {
  .cid-tE4mx9L9gt .mbr-list {
    display: block;
    width: auto;
  }
}
.cid-tE4mx9L9gt .mbr-list ul {
  margin: 0 72px 0 0;
  list-style: none;
  padding-left: 0;
  list-style-position: inside;
}
.cid-tE4mx9L9gt .mbr-list ul li {
  margin-bottom: 16px;
  display: flex;
  list-style: none;
  position: relative;
}
.cid-tE4mx9L9gt .mbr-list ul li:before {
  margin-top: -3px;
  margin-right: 12px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #973636;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-tE4mx9L9gt .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-tE4mx9L9gt .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-tE4mx9L9gt .mbr-text {
  margin-bottom: 32px;
  color: #000000;
}
.cid-tE4mx9L9gt .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tE4mx9L9gt .image-wrapper {
    margin-top: 23px;
  }
}
.cid-tE4mx9L9gt .image-wrapper img:first-child {
  width: 79%;
  max-width: 520px;
  object-fit: cover;
}
.cid-tE4mx9L9gt .image-wrapper .image-absolute {
  position: absolute;
  top: 48%;
  left: 0;
  max-width: 354px;
  max-height: 283px;
}
@media (max-width: 768px) {
  .cid-tE4mx9L9gt .image-wrapper .image-absolute {
    max-width: 200px;
    max-height: 250px;
  }
}
.cid-tE4mx9L9gt .image-wrapper .image-logo {
  position: absolute;
  top: 24%;
  left: 57%;
  width: 80px;
  height: 80px;
}
.cid-tE4mx9L9gt .mbr-section-title,
.cid-tE4mx9L9gt .list-wrapper {
  text-align: left;
  color: #275f73;
}
.cid-tE4mx9L9gt DIV {
  color: #232323;
}
.cid-tFcDLDjbD9 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-tFcDLDjbD9 .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-tFcDLDjbD9 .image-wrapper {
    height: auto;
  }
}
@media (max-width: 768px) {
  .cid-tFcDLDjbD9 .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tFcDLDjbD9 .image-wrapper img {
  max-width: 520px;
  height: 640px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tFcDLDjbD9 .image-wrapper img {
    height: 457px;
  }
}
.cid-tFcDLDjbD9 .image-wrapper .mbr-description {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 353px;
  height: auto;
  padding: 55px 40px 55px;
  margin: 0;
  background-color: #ff4712;
}
@media (max-width: 1200px) {
  .cid-tFcDLDjbD9 .image-wrapper .mbr-description {
    width: 255px;
  }
}
@media (max-width: 768px) {
  .cid-tFcDLDjbD9 .image-wrapper .mbr-description {
    padding: 30px 20px;
  }
}
.cid-tFcDLDjbD9 .text {
  padding-left: 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-tFcDLDjbD9 .text {
    padding: 0 12px;
  }
}
.cid-tFcDLDjbD9 .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 768px) {
  .cid-tFcDLDjbD9 .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-tFcDLDjbD9 .text .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tFcDLDjbD9 .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tFcDLDjbD9 .text .list-wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-tFcDLDjbD9 .text .list-wrapper {
    margin-top: 20px;
  }
}
.cid-tFcDLDjbD9 .text .list-wrapper .list-item {
  padding: 27px 0;
  border-top: 1px solid #bbbbbb;
}
.cid-tFcDLDjbD9 .text .list-wrapper .list-item:first-child {
  padding-top: 0;
  border: none;
}
.cid-tFcDLDjbD9 .text .list-wrapper .list-item:last-child {
  padding-bottom: 0;
}
.cid-tFcDLDjbD9 .text .list-wrapper .list-item .mbr-number {
  margin: 0 15px 0 0;
  display: inline;
}
.cid-tFcDLDjbD9 .text .list-wrapper .list-item .mbr-list {
  margin: 0;
  display: inline;
}
.cid-tFcDLDjbD9 .mbr-section-btn {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-tFcDLDjbD9 .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-tFcDLDjbD9 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tFcDLDjbD9 .btn:hover {
  box-shadow: none;
}
.cid-tFcDLDjbD9 .mbr-description {
  color: #fafafa;
}
.cid-tFcDLDjbD9 .mbr-section-subtitle {
  color: #FF4712;
}
.cid-tFcDLDjbD9 .mbr-section-title {
  color: #20232a;
}
.cid-tFcDLDjbD9 .mbr-text {
  color: #000000;
}
.cid-tFcDLDjbD9 .mbr-number {
  color: #84858a;
}
.cid-tFcDLDjbD9 .mbr-list {
  color: #20232a;
}
.cid-tFcDLDjbD9 .mbr-section-title,
.cid-tFcDLDjbD9 .list-item,
.cid-tFcDLDjbD9 .mbr-section-btn {
  text-align: left;
}
.cid-t3Po0oBoQ4 {
  padding-top: 1rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-t3Po0oBoQ4 .image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 992px) {
  .cid-t3Po0oBoQ4 .image-wrapper {
    height: auto;
  }
}
@media (max-width: 768px) {
  .cid-t3Po0oBoQ4 .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-t3Po0oBoQ4 .image-wrapper img {
  max-width: 520px;
  height: 640px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-t3Po0oBoQ4 .image-wrapper img {
    height: 457px;
  }
}
.cid-t3Po0oBoQ4 .image-wrapper .mbr-description {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 353px;
  height: auto;
  padding: 55px 40px 55px;
  margin: 0;
  background-color: #973636;
}
@media (max-width: 1200px) {
  .cid-t3Po0oBoQ4 .image-wrapper .mbr-description {
    width: 255px;
  }
}
@media (max-width: 768px) {
  .cid-t3Po0oBoQ4 .image-wrapper .mbr-description {
    padding: 30px 20px;
  }
}
.cid-t3Po0oBoQ4 .text {
  padding-left: 9%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 992px) {
  .cid-t3Po0oBoQ4 .text {
    padding: 0 12px;
  }
}
.cid-t3Po0oBoQ4 .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 768px) {
  .cid-t3Po0oBoQ4 .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-t3Po0oBoQ4 .text .text-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-t3Po0oBoQ4 .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-t3Po0oBoQ4 .text .list-wrapper {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-t3Po0oBoQ4 .text .list-wrapper {
    margin-top: 20px;
  }
}
.cid-t3Po0oBoQ4 .text .list-wrapper .list-item {
  padding: 27px 0;
  border-top: 1px solid #bbbbbb;
}
.cid-t3Po0oBoQ4 .text .list-wrapper .list-item:first-child {
  padding-top: 0;
  border: none;
}
.cid-t3Po0oBoQ4 .text .list-wrapper .list-item:last-child {
  padding-bottom: 0;
}
.cid-t3Po0oBoQ4 .text .list-wrapper .list-item .mbr-number {
  margin: 0 15px 0 0;
  display: inline;
}
.cid-t3Po0oBoQ4 .text .list-wrapper .list-item .mbr-list {
  margin: 0;
  display: inline;
}
.cid-t3Po0oBoQ4 .mbr-section-btn {
  margin-top: 45px;
}
@media (max-width: 768px) {
  .cid-t3Po0oBoQ4 .mbr-section-btn {
    margin-top: 20px;
  }
}
.cid-t3Po0oBoQ4 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3Po0oBoQ4 .btn:hover {
  box-shadow: none;
}
.cid-t3Po0oBoQ4 .mbr-description {
  color: #fafafa;
}
.cid-t3Po0oBoQ4 .mbr-section-subtitle {
  color: #FF4712;
}
.cid-t3Po0oBoQ4 .mbr-section-title {
  color: #20232a;
}
.cid-t3Po0oBoQ4 .mbr-text {
  color: #000000;
}
.cid-t3Po0oBoQ4 .mbr-number {
  color: #84858a;
}
.cid-t3Po0oBoQ4 .mbr-list {
  color: #20232a;
}
.cid-t3Po0oBoQ4 .mbr-section-title,
.cid-t3Po0oBoQ4 .list-item,
.cid-t3Po0oBoQ4 .mbr-section-btn {
  text-align: left;
}
.cid-t3PnW1iP4u {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/491843687-1220684156731893-3006843529513558920-n-1-960x650.jpeg");
}
.cid-t3PnW1iP4u .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #ffb649;
  text-align: center;
}
.cid-t3PnW1iP4u .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-t3PnW1iP4u .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-t3PnW1iP4u .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-t3PnW1iP4u .btn:hover {
  box-shadow: none;
}
.cid-t3PnW1iP4u .mbr-section-title,
.cid-t3PnW1iP4u .mbr-section-btn {
  text-align: center;
  color: #ffb649;
}
.cid-tHCKlqGktV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-tHCKlqGktV .video-wrapper iframe {
  width: 100%;
}
.cid-tHCKlqGktV .mbr-section-title,
.cid-tHCKlqGktV .mbr-section-subtitle,
.cid-tHCKlqGktV .mbr-text {
  text-align: center;
}
.cid-tHCKlqGktV .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-tHCKlqGktV .mbr-section-title {
  margin-bottom: 14px;
  color: #20232a;
  text-align: center;
}
.cid-tHCKlqGktV .mbr-text {
  margin-bottom: 0;
  color: #65676c;
}
.cid-tHCKlqGktV .mbr-section-head {
  margin-bottom: 45px;
}
.cid-vqhkl6kYgd {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vqhkl6kYgd .content {
  display: flex;
  align-items: center;
}
.cid-vqhkl6kYgd .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-vqhkl6kYgd .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-vqhkl6kYgd .mbr-text {
  margin-bottom: 38px;
  color: #08323c;
}
.cid-vqhkl6kYgd .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-vqhkl6kYgd .btn:hover {
  box-shadow: none;
}
.cid-vqhkl6kYgd .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vqhkl6kYgd .image-wrapper {
    margin-top: 25px;
  }
}
.cid-vqhkl6kYgd .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-vqhkl6kYgd .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-vqhkl6kYgd .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-vqhkl6kYgd .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-vqhkl6kYgd .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-vqhkl6kYgd .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-vqhkl6kYgd .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-vqhkl6kYgd .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-vqhkl6kYgd .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-vqhkl6kYgd .mbr-iconfont {
  color: #ffffff;
}
.cid-vqhkl6kYgd .mbr-image-text {
  color: #ffffff;
}
.cid-vqhkl6kYgd .mbr-section-title,
.cid-vqhkl6kYgd .mbr-section-btn {
  color: #275f73;
}
.cid-vmJXOIEeNk {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJXOIEeNk .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJXOIEeNk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJXOIEeNk .mbr-section-title {
  color: #ffffff;
}
.cid-uPOX1R9GwW {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #1f242e;
}
.cid-uPOX1R9GwW .row {
  justify-content: center;
}
.cid-uPOX1R9GwW .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-uPOX1R9GwW .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-uPOX1R9GwW .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-uPOX1R9GwW .card {
    margin-bottom: 30px;
  }
}
.cid-uPOX1R9GwW .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-uPOX1R9GwW .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-uPOX1R9GwW .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-uPOX1R9GwW .card-wrapper {
    padding: 29px;
  }
}
.cid-uPOX1R9GwW .card-wrapper .card-button {
  width: 100%;
}
.cid-uPOX1R9GwW .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-uPOX1R9GwW .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-uPOX1R9GwW .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-uPOX1R9GwW .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-uPOX1R9GwW .card:hover .card-text-link {
  opacity: 1;
}
.cid-uPOX1R9GwW .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-uPOX1R9GwW .mbr-button {
  color: #000000;
}
.cid-uPOX1R9GwW .mbr-card-title {
  color: #FFFFFF;
}
.cid-uPOX1R9GwW .mbr-date {
  color: #fafafa;
}
.cid-uPOX1R9GwW .mbr-link {
  color: #FFFFFF;
}
.cid-uPOX1R9GwW .mbr-card-title,
.cid-uPOX1R9GwW .mbr-card-title,
.cid-uPOX1R9GwW .card-button,
.cid-uPOX1R9GwW .mbr-date,
.cid-uPOX1R9GwW .mbr-link {
  text-align: left;
}
.cid-uPOX1R9GwW .mbr-section-title,
.cid-uPOX1R9GwW .mbr-section-btn {
  color: #eaeaea;
}
.cid-tMQjy9EeHW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tMQjy9EeHW .mbr-fallback-image.disabled {
  display: none;
}
.cid-tMQjy9EeHW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tMQjy9EeHW .mbr-section-title {
  color: #ffffff;
}
.cid-tFnYUlkw0e {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-tFnYUlkw0e .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFnYUlkw0e .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFnYUlkw0e .bg-facebook {
  background: #1778f2;
  color: #ffffff;
}
.cid-tFnYUlkw0e .bg-facebook:hover {
  background: #0b60cb;
}
.cid-tFnYUlkw0e .bg-instagram {
  background: #f00075;
  color: #ffffff;
}
.cid-tFnYUlkw0e .bg-instagram:hover {
  background: #bd005c;
}
.cid-tFnYUlkw0e .bg-youtube {
  background: #ff0000;
  color: #ffffff;
}
.cid-tFnYUlkw0e .bg-youtube:hover {
  background: #cc0000;
}
.cid-tFnYUlkw0e .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-tFnYUlkw0e [class^="socicon-"]:before,
.cid-tFnYUlkw0e [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-tFnYUlkw0e .mbr-section-title,
.cid-tFnYUlkw0e .social-list {
  color: #ffb649;
}
.cid-tFo03GE6Lg {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tFo03GE6Lg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tFo03GE6Lg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tFo03GE6Lg .mbr-section-title {
  color: #ffffff;
}
.cid-tFigNJoBLr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: #232323;
}
.cid-tFigNJoBLr .google-map {
  height: 30rem;
  position: relative;
}
.cid-tFigNJoBLr .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-tFigNJoBLr .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-tFigNJoBLr .google-map[data-state] {
  background: #e9e5dc;
}
.cid-tFigNJoBLr .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-tFigNJoBLr .mbr-section-title {
  color: #ffb649;
}
.cid-tFigNJoBLr .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tFigNJoBLr .mbr-section-subtitle P {
  text-align: center;
}
.cid-tEewfLQ0Cz {
  padding-top: 75px;
  padding-bottom: 60px;
  background-color: #232323;
}
.cid-tEewfLQ0Cz .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tEewfLQ0Cz textarea {
  min-height: 200px;
}
.cid-tEewfLQ0Cz .btn {
  padding: 1rem 3rem;
}
.cid-tEewfLQ0Cz .form-control,
.cid-tEewfLQ0Cz .field-input {
  padding: 1.2rem 1.6rem;
  background-color: #d58001;
  border-color: #d2d2e3;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  border-radius: 1rem;
  outline: none;
}
.cid-tEewfLQ0Cz .form-control::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .field-input::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .form-control::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .field-input::-webkit-input-placeholder {
  color: #000000;
}
.cid-tEewfLQ0Cz .form-control:-moz-placeholder,
.cid-tEewfLQ0Cz .field-input:-moz-placeholder,
.cid-tEewfLQ0Cz .form-control:-moz-placeholder,
.cid-tEewfLQ0Cz .field-input:-moz-placeholder {
  color: #000000;
}
.cid-tEewfLQ0Cz .form-control:hover,
.cid-tEewfLQ0Cz .field-input:hover,
.cid-tEewfLQ0Cz .form-control:focus,
.cid-tEewfLQ0Cz .field-input:focus {
  background-color: #65676c;
  border-color: #d2d2e3 !important;
  color: #d2d2e3;
  box-shadow: none;
  outline: none;
}
.cid-tEewfLQ0Cz .form-control:hover::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .field-input:hover::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .form-control:focus::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .field-input:focus::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .form-control:hover::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .field-input:hover::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .form-control:focus::-webkit-input-placeholder,
.cid-tEewfLQ0Cz .field-input:focus::-webkit-input-placeholder {
  color: #bbbbbb;
}
.cid-tEewfLQ0Cz .form-control:hover:-moz-placeholder,
.cid-tEewfLQ0Cz .field-input:hover:-moz-placeholder,
.cid-tEewfLQ0Cz .form-control:focus:-moz-placeholder,
.cid-tEewfLQ0Cz .field-input:focus:-moz-placeholder,
.cid-tEewfLQ0Cz .form-control:hover:-moz-placeholder,
.cid-tEewfLQ0Cz .field-input:hover:-moz-placeholder,
.cid-tEewfLQ0Cz .form-control:focus:-moz-placeholder,
.cid-tEewfLQ0Cz .field-input:focus:-moz-placeholder {
  color: #bbbbbb;
}
.cid-tEewfLQ0Cz .jq-number__spin:hover,
.cid-tEewfLQ0Cz .jq-number__spin:focus {
  background-color: #65676c;
  border-color: #d2d2e3 !important;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-tEewfLQ0Cz .jq-number__spin {
  background-color: #d58001;
  border-color: #d2d2e3;
  color: #ffffff;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tEewfLQ0Cz .jq-selectbox li,
.cid-tEewfLQ0Cz .jq-selectbox li {
  background-color: #d58001;
  color: #ffffff;
}
.cid-tEewfLQ0Cz .jq-selectbox li:hover,
.cid-tEewfLQ0Cz .jq-selectbox li.selected {
  background-color: #65676c;
  color: #ffffff;
}
.cid-tEewfLQ0Cz .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tEewfLQ0Cz .jq-number__spin.minus:hover:after,
.cid-tEewfLQ0Cz .jq-number__spin.plus:hover:after {
  border-top-color: #d58001;
  border-bottom-color: #d58001;
}
.cid-tEewfLQ0Cz .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tEewfLQ0Cz .jq-number__spin.minus:after,
.cid-tEewfLQ0Cz .jq-number__spin.plus:after {
  border-top-color: #65676c;
  border-bottom-color: #65676c;
}
.cid-tEewfLQ0Cz input::-webkit-clear-button {
  display: none;
}
.cid-tEewfLQ0Cz input::-webkit-inner-spin-button {
  display: none;
}
.cid-tEewfLQ0Cz input::-webkit-outer-spin-button {
  display: none;
}
.cid-tEewfLQ0Cz input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tEewfLQ0Cz .mbr-section-title {
  color: #ffb649;
}
.cid-tF4SMIpt91 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #232323;
}
.cid-tF4SMIpt91 img,
.cid-tF4SMIpt91 .item-img {
  width: 100%;
}
.cid-tF4SMIpt91 .item:focus,
.cid-tF4SMIpt91 span:focus {
  outline: none;
}
.cid-tF4SMIpt91 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tF4SMIpt91 .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tF4SMIpt91 .item {
  padding: 0;
  margin: 0;
}
.cid-tF4SMIpt91 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #171a21;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tF4SMIpt91 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tF4SMIpt91 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tF4SMIpt91 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tF4SMIpt91 .mbr-section-title {
  color: #232323;
}
.cid-tF4SMIpt91 .mbr-text,
.cid-tF4SMIpt91 .mbr-section-btn {
  text-align: left;
}
.cid-tF4SMIpt91 .item-title {
  text-align: left;
}
.cid-tF4SMIpt91 .item-subtitle {
  text-align: left;
  color: #bbbbbb;
}
.cid-tEexLoqVhD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tEexLoqVhD .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tEexLoqVhD .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tEexLoqVhD .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tEexLoqVhD .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tEexLoqVhD .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tEexLoqVhD .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tEexLoqVhD .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tEexLoqVhD .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tEexLoqVhD .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tEexLoqVhD .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tEexLoqVhD .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tEexLoqVhD .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tEexLoqVhD .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tEexLoqVhD .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFcjmH3JIG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFcjmH3JIG nav.navbar {
  position: fixed;
}
.cid-tFcjmH3JIG .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .wrapper {
    padding: 0;
  }
}
.cid-tFcjmH3JIG .btn {
  border-radius: 30px;
}
.cid-tFcjmH3JIG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFcjmH3JIG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFcjmH3JIG .dropdown-item:hover,
.cid-tFcjmH3JIG .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-tFcjmH3JIG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFcjmH3JIG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFcjmH3JIG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFcjmH3JIG .nav-link {
  position: relative;
}
.cid-tFcjmH3JIG .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown-menu,
.cid-tFcjmH3JIG .navbar.opened {
  background: #232323 !important;
}
.cid-tFcjmH3JIG .nav-item:focus,
.cid-tFcjmH3JIG .nav-link:focus {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFcjmH3JIG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFcjmH3JIG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.opened {
  transition: all 0.3s;
}
.cid-tFcjmH3JIG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFcjmH3JIG .navbar .navbar-logo img {
  width: auto;
}
.cid-tFcjmH3JIG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar.collapsed {
  justify-content: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFcjmH3JIG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFcjmH3JIG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFcjmH3JIG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFcjmH3JIG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFcjmH3JIG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFcjmH3JIG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFcjmH3JIG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFcjmH3JIG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFcjmH3JIG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFcjmH3JIG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFcjmH3JIG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown-item.active,
.cid-tFcjmH3JIG .dropdown-item:active {
  background-color: transparent;
}
.cid-tFcjmH3JIG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFcjmH3JIG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFcjmH3JIG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFcjmH3JIG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFcjmH3JIG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tFcjmH3JIG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFcjmH3JIG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFcjmH3JIG .navbar {
    height: 70px;
  }
  .cid-tFcjmH3JIG .navbar.opened {
    height: auto;
  }
  .cid-tFcjmH3JIG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF4yHbrRfb {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tF4yHbrRfb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4yHbrRfb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4yHbrRfb .row {
  justify-content: flex-start;
}
.cid-tF4yHbrRfb .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-tF4yHbrRfb .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4yHbrRfb .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tF4yHbrRfb .image-wrapper {
  width: 100%;
}
.cid-tF4yHbrRfb .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tF4yHbrRfb .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tF4yHbrRfb .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4yHbrRfb .mbr-text {
    margin-top: 45px;
  }
}
.cid-tF4yHbrRfb .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tF4yHbrRfb .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tF4yHbrRfb .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tF4yHbrRfb .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tF4yHbrRfb .mbr-text,
.cid-tF4yHbrRfb .mbr-section-btn {
  color: #d58001;
}
.cid-uP8T3QbGVw {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-uP8T3QbGVw .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8T3QbGVw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP8T3QbGVw .mbr-section-title {
  color: #ffffff;
}
.cid-tGYUBGB74h {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-tGYUBGB74h .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tGYUBGB74h .currentcost {
  color: #232323;
}
.cid-tGYUBGB74h .card-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (min-width: 992px) {
  .cid-tGYUBGB74h .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tGYUBGB74h .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGYUBGB74h .text-box {
    padding: 1rem;
  }
}
.cid-tGYUBGB74h .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tGYUBGB74h H5 {
  color: #275f73;
}
.cid-tGYUBGB74h .mbr-text,
.cid-tGYUBGB74h .cost,
.cid-tGYUBGB74h .mbr-section-btn {
  color: #000000;
}
.cid-tGYUBGB74h DIV {
  text-align: justify;
}
.cid-uga2QhRWjw {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uga2QhRWjw .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-uga2QhRWjw .currentcost {
  color: #232323;
}
.cid-uga2QhRWjw .card-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (min-width: 992px) {
  .cid-uga2QhRWjw .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-uga2QhRWjw .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-uga2QhRWjw .text-box {
    padding: 1rem;
  }
}
.cid-uga2QhRWjw .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-uga2QhRWjw H5 {
  color: #ffa41d;
}
.cid-uga2QhRWjw .mbr-text,
.cid-uga2QhRWjw .cost,
.cid-uga2QhRWjw .mbr-section-btn {
  color: #000000;
}
.cid-tGC0olDCJ4 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-tGC0olDCJ4 .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-tGC0olDCJ4 .mbr-text {
  color: #000000;
}
.cid-tGC0olDCJ4 .mbr-section-title {
  color: #ffa41d;
}
.cid-uP8J9VWhir {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/da-22-proyeccin-frente-al-silencio-taller-11-2000x613.jpg");
}
.cid-uP8J9VWhir .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uP8J9VWhir .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uP8J9VWhir .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uP8J9VWhir .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uP8J9VWhir .btn:hover {
  box-shadow: none;
}
.cid-uP8J9VWhir .mbr-section-title,
.cid-uP8J9VWhir .mbr-section-btn {
  text-align: center;
}
.cid-vq7SAUMSr4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/bciff-26-curso-cine-2-2000x1328.jpeg");
}
.cid-vq7SAUMSr4 .video-wrapper iframe {
  width: 100%;
}
.cid-vq7SAUMSr4 .mbr-section-title,
.cid-vq7SAUMSr4 .mbr-section-subtitle,
.cid-vq7SAUMSr4 .mbr-text {
  text-align: center;
}
.cid-vq7SAUMSr4 .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-vq7SAUMSr4 .mbr-section-title {
  margin-bottom: 14px;
  color: #20232a;
  text-align: center;
}
.cid-vq7SAUMSr4 .mbr-text {
  margin-bottom: 0;
  color: #65676c;
}
.cid-vq7SAUMSr4 .mbr-section-head {
  margin-bottom: 45px;
}
.cid-tF4yHccUl1 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-tF4yHccUl1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4yHccUl1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4yHccUl1 .mbr-section-title {
  color: #ffffff;
}
.cid-tF4yHcrQ7l {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-tF4yHcrQ7l .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4yHcrQ7l .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4yHcrQ7l .mbr-section-title {
  color: #ffffff;
}
.cid-ugahlg79sV {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-ugahlg79sV .image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ugahlg79sV .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-ugahlg79sV .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ugahlg79sV .text {
  padding-left: 108px;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-ugahlg79sV .text {
    padding-left: 1rem;
  }
}
.cid-ugahlg79sV .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ugahlg79sV .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ugahlg79sV .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-ugahlg79sV .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugahlg79sV .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 165px;
}
@media (max-width: 992px) {
  .cid-ugahlg79sV .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-ugahlg79sV .text img {
    height: 294px;
  }
}
.cid-ugahlg79sV .mbr-section-subtitle {
  color: #275f73;
}
.cid-ugahlg79sV .mbr-section-title {
  color: #275f73;
}
.cid-ugahlg79sV .mbr-text {
  color: #000000;
}
.cid-ugaholbSFr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ugaholbSFr .image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ugaholbSFr .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-ugaholbSFr .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ugaholbSFr .text {
  padding-left: 108px;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-ugaholbSFr .text {
    padding-left: 1rem;
  }
}
.cid-ugaholbSFr .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ugaholbSFr .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ugaholbSFr .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-ugaholbSFr .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-ugaholbSFr .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 165px;
}
@media (max-width: 992px) {
  .cid-ugaholbSFr .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-ugaholbSFr .text img {
    height: 294px;
  }
}
.cid-ugaholbSFr .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ugaholbSFr .mbr-section-title {
  color: #275f73;
}
.cid-ugaholbSFr .mbr-text {
  color: #000000;
}
.cid-vm2nBowGAD {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vm2nBowGAD .image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vm2nBowGAD .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-vm2nBowGAD .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vm2nBowGAD .text {
  padding-left: 108px;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-vm2nBowGAD .text {
    padding-left: 1rem;
  }
}
.cid-vm2nBowGAD .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-vm2nBowGAD .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-vm2nBowGAD .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-vm2nBowGAD .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vm2nBowGAD .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 165px;
}
@media (max-width: 992px) {
  .cid-vm2nBowGAD .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-vm2nBowGAD .text img {
    height: 294px;
  }
}
.cid-vm2nBowGAD .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vm2nBowGAD .mbr-section-title {
  color: #275f73;
}
.cid-vm2nBowGAD .mbr-text {
  color: #000000;
}
.cid-tGY2e7EK32 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tGY2e7EK32 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGY2e7EK32 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGY2e7EK32 .mbr-section-title {
  color: #ffffff;
}
.cid-tGXG0ef3Uo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-tGXG0ef3Uo .image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGXG0ef3Uo .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-tGXG0ef3Uo .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tGXG0ef3Uo .text {
  padding-left: 108px;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-tGXG0ef3Uo .text {
    padding-left: 1rem;
  }
}
.cid-tGXG0ef3Uo .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tGXG0ef3Uo .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-tGXG0ef3Uo .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tGXG0ef3Uo .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tGXG0ef3Uo .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 165px;
}
@media (max-width: 992px) {
  .cid-tGXG0ef3Uo .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tGXG0ef3Uo .text img {
    height: 294px;
  }
}
.cid-tGXG0ef3Uo .mbr-section-subtitle {
  color: #275f73;
}
.cid-tGXG0ef3Uo .mbr-section-title {
  color: #275f73;
}
.cid-tGXG0ef3Uo .mbr-text {
  color: #000000;
}
.cid-uP8VzKC87N {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-uP8VzKC87N .mbr-fallback-image.disabled {
  display: none;
}
.cid-uP8VzKC87N .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uP8VzKC87N .mbr-section-title {
  color: #ffffff;
}
.cid-vmrRhTZ6Pp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vmrRhTZ6Pp .image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vmrRhTZ6Pp .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-vmrRhTZ6Pp .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vmrRhTZ6Pp .text {
  padding-left: 108px;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-vmrRhTZ6Pp .text {
    padding-left: 1rem;
  }
}
.cid-vmrRhTZ6Pp .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-vmrRhTZ6Pp .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-vmrRhTZ6Pp .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-vmrRhTZ6Pp .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-vmrRhTZ6Pp .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 165px;
}
@media (max-width: 992px) {
  .cid-vmrRhTZ6Pp .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-vmrRhTZ6Pp .text img {
    height: 294px;
  }
}
.cid-vmrRhTZ6Pp .mbr-section-subtitle {
  color: #275f73;
}
.cid-vmrRhTZ6Pp .mbr-section-title {
  color: #275f73;
}
.cid-vmrRhTZ6Pp .mbr-text {
  color: #171a21;
}
.cid-tGXUeYHCoh {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-tGXUeYHCoh .image-wrapper img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-tGXUeYHCoh .image-wrapper img {
    height: 440px;
  }
}
@media (max-width: 992px) {
  .cid-tGXUeYHCoh .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-tGXUeYHCoh .text {
  padding-left: 108px;
  padding-left: 1rem;
}
@media (max-width: 992px) {
  .cid-tGXUeYHCoh .text {
    padding-left: 1rem;
  }
}
.cid-tGXUeYHCoh .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-tGXUeYHCoh .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-tGXUeYHCoh .text .text-wrapper .mbr-section-title {
  margin-bottom: 18px;
}
.cid-tGXUeYHCoh .text .text-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tGXUeYHCoh .text img {
  width: 100%;
  height: 482px;
  object-fit: cover;
  margin-top: 165px;
}
@media (max-width: 992px) {
  .cid-tGXUeYHCoh .text img {
    margin-top: 20px;
  }
}
@media (max-width: 768px) {
  .cid-tGXUeYHCoh .text img {
    height: 294px;
  }
}
.cid-tGXUeYHCoh .mbr-section-subtitle {
  color: #ff6c42;
}
.cid-tGXUeYHCoh .mbr-section-title {
  color: #275f73;
}
.cid-tGXUeYHCoh .mbr-text {
  color: #171a21;
}
.cid-tF4yHfLLqH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tF4yHfLLqH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4yHfLLqH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4yHfLLqH .mbr-section-title {
  color: #ffffff;
}
.cid-tGXZn9bvwo {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
.cid-tGXZn9bvwo .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-tGXZn9bvwo .currentcost {
  color: #232323;
}
.cid-tGXZn9bvwo .card-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (min-width: 992px) {
  .cid-tGXZn9bvwo .text-box {
    padding: 2rem;
    padding-right: 4rem;
    padding-left: 4rem;
    padding-right: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tGXZn9bvwo .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tGXZn9bvwo .text-box {
    padding: 1rem;
  }
}
.cid-tGXZn9bvwo .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-tGXZn9bvwo H5 {
  color: #275f73;
}
.cid-tGXZn9bvwo .mbr-text,
.cid-tGXZn9bvwo .cost,
.cid-tGXZn9bvwo .mbr-section-btn {
  color: #000000;
}
.cid-tHD0iFKQkv {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tHD0iFKQkv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHD0iFKQkv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHD0iFKQkv .mbr-section-title {
  color: #ffffff;
}
.cid-uPeSdlQjlO {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uPeSdlQjlO .content {
  display: flex;
  align-items: center;
}
.cid-uPeSdlQjlO .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-uPeSdlQjlO .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-uPeSdlQjlO .mbr-text {
  margin-bottom: 38px;
  color: #000000;
}
.cid-uPeSdlQjlO .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uPeSdlQjlO .btn:hover {
  box-shadow: none;
}
.cid-uPeSdlQjlO .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uPeSdlQjlO .image-wrapper {
    margin-top: 25px;
  }
}
.cid-uPeSdlQjlO .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-uPeSdlQjlO .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-uPeSdlQjlO .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-uPeSdlQjlO .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-uPeSdlQjlO .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-uPeSdlQjlO .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-uPeSdlQjlO .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-uPeSdlQjlO .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-uPeSdlQjlO .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-uPeSdlQjlO .mbr-iconfont {
  color: #ffffff;
}
.cid-uPeSdlQjlO .mbr-image-text {
  color: #ffffff;
}
.cid-uPeSdlQjlO .mbr-section-title,
.cid-uPeSdlQjlO .mbr-section-btn {
  color: #275f73;
}
.cid-tF4yHgCsFM {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tF4yHgCsFM .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4yHgCsFM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4yHgCsFM .mbr-section-title {
  color: #ffffff;
}
.cid-tF4yHgYqkA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tF4yHgYqkA .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tF4yHgYqkA .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tF4yHgYqkA .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tF4yHgYqkA .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tF4yHgYqkA .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tF4yHgYqkA .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tF4yHgYqkA .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tF4yHgYqkA .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tF4yHgYqkA .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tF4yHgYqkA .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tF4yHgYqkA .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tF4yHgYqkA .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tF4yHgYqkA .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tF4yHgYqkA .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFcjmH3JIG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFcjmH3JIG nav.navbar {
  position: fixed;
}
.cid-tFcjmH3JIG .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .wrapper {
    padding: 0;
  }
}
.cid-tFcjmH3JIG .btn {
  border-radius: 30px;
}
.cid-tFcjmH3JIG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFcjmH3JIG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFcjmH3JIG .dropdown-item:hover,
.cid-tFcjmH3JIG .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-tFcjmH3JIG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFcjmH3JIG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFcjmH3JIG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFcjmH3JIG .nav-link {
  position: relative;
}
.cid-tFcjmH3JIG .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown-menu,
.cid-tFcjmH3JIG .navbar.opened {
  background: #232323 !important;
}
.cid-tFcjmH3JIG .nav-item:focus,
.cid-tFcjmH3JIG .nav-link:focus {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFcjmH3JIG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFcjmH3JIG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.opened {
  transition: all 0.3s;
}
.cid-tFcjmH3JIG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFcjmH3JIG .navbar .navbar-logo img {
  width: auto;
}
.cid-tFcjmH3JIG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar.collapsed {
  justify-content: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFcjmH3JIG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFcjmH3JIG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFcjmH3JIG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFcjmH3JIG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFcjmH3JIG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFcjmH3JIG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFcjmH3JIG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFcjmH3JIG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFcjmH3JIG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFcjmH3JIG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFcjmH3JIG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown-item.active,
.cid-tFcjmH3JIG .dropdown-item:active {
  background-color: transparent;
}
.cid-tFcjmH3JIG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFcjmH3JIG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFcjmH3JIG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFcjmH3JIG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFcjmH3JIG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tFcjmH3JIG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFcjmH3JIG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFcjmH3JIG .navbar {
    height: 70px;
  }
  .cid-tFcjmH3JIG .navbar.opened {
    height: auto;
  }
  .cid-tFcjmH3JIG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF4z5JIJaX {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tF4z5JIJaX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4z5JIJaX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4z5JIJaX .row {
  justify-content: flex-start;
}
.cid-tF4z5JIJaX .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-tF4z5JIJaX .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4z5JIJaX .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tF4z5JIJaX .image-wrapper {
  width: 100%;
}
.cid-tF4z5JIJaX .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tF4z5JIJaX .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tF4z5JIJaX .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4z5JIJaX .mbr-text {
    margin-top: 45px;
  }
}
.cid-tF4z5JIJaX .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tF4z5JIJaX .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tF4z5JIJaX .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tF4z5JIJaX .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tF4z5JIJaX .mbr-text,
.cid-tF4z5JIJaX .mbr-section-btn {
  color: #d58001;
}
.cid-tF4z5LQccm {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tF4z5LQccm .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4z5LQccm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4z5LQccm .mbr-section-title {
  color: #ffffff;
}
.cid-tF4z5KMLgD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-tF4z5KMLgD .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4z5KMLgD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4z5KMLgD .mbr-section-title {
  color: #ffffff;
}
.cid-vp5takivbZ {
  padding-top: 6rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vp5takivbZ img,
.cid-vp5takivbZ .item-img {
  width: 100%;
}
.cid-vp5takivbZ .item:focus,
.cid-vp5takivbZ span:focus {
  outline: none;
}
.cid-vp5takivbZ .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vp5takivbZ .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vp5takivbZ .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vp5takivbZ .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vp5takivbZ .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vp5takivbZ .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vp5takivbZ .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vp5takivbZ .mbr-section-title {
  color: #08323c;
}
.cid-vp5takivbZ .mbr-text,
.cid-vp5takivbZ .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vp5takivbZ .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vp5takivbZ .item-subtitle {
  text-align: left;
}
.cid-vp5takivbZ .mbr-section-subtitle {
  color: #232323;
}
.cid-vpi9PfIQ2t {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-vpi9PfIQ2t img,
.cid-vpi9PfIQ2t .item-img {
  width: 100%;
}
.cid-vpi9PfIQ2t .item:focus,
.cid-vpi9PfIQ2t span:focus {
  outline: none;
}
.cid-vpi9PfIQ2t .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vpi9PfIQ2t .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vpi9PfIQ2t .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vpi9PfIQ2t .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vpi9PfIQ2t .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vpi9PfIQ2t .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vpi9PfIQ2t .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vpi9PfIQ2t .mbr-section-title {
  color: #08323c;
}
.cid-vpi9PfIQ2t .mbr-text,
.cid-vpi9PfIQ2t .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vpi9PfIQ2t .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vpi9PfIQ2t .item-subtitle {
  text-align: left;
}
.cid-vpi9PfIQ2t .mbr-section-subtitle {
  color: #232323;
}
.cid-vpyPFJl2H8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vpyPFJl2H8 img,
.cid-vpyPFJl2H8 .item-img {
  width: 100%;
}
.cid-vpyPFJl2H8 .item:focus,
.cid-vpyPFJl2H8 span:focus {
  outline: none;
}
.cid-vpyPFJl2H8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vpyPFJl2H8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vpyPFJl2H8 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vpyPFJl2H8 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vpyPFJl2H8 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vpyPFJl2H8 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vpyPFJl2H8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vpyPFJl2H8 .mbr-section-title {
  color: #08323c;
}
.cid-vpyPFJl2H8 .mbr-text,
.cid-vpyPFJl2H8 .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vpyPFJl2H8 .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vpyPFJl2H8 .item-subtitle {
  text-align: left;
}
.cid-vpyPFJl2H8 .mbr-section-subtitle {
  color: #232323;
}
.cid-vq5MwbvO2F {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vq5MwbvO2F img,
.cid-vq5MwbvO2F .item-img {
  width: 100%;
}
.cid-vq5MwbvO2F .item:focus,
.cid-vq5MwbvO2F span:focus {
  outline: none;
}
.cid-vq5MwbvO2F .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vq5MwbvO2F .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vq5MwbvO2F .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vq5MwbvO2F .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vq5MwbvO2F .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vq5MwbvO2F .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vq5MwbvO2F .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vq5MwbvO2F .mbr-section-title {
  color: #08323c;
}
.cid-vq5MwbvO2F .mbr-text,
.cid-vq5MwbvO2F .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vq5MwbvO2F .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vq5MwbvO2F .item-subtitle {
  text-align: left;
}
.cid-vq5MwbvO2F .mbr-section-subtitle {
  color: #232323;
}
.cid-vq5Oixuuzl {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vq5Oixuuzl img,
.cid-vq5Oixuuzl .item-img {
  width: 100%;
}
.cid-vq5Oixuuzl .item:focus,
.cid-vq5Oixuuzl span:focus {
  outline: none;
}
.cid-vq5Oixuuzl .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vq5Oixuuzl .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vq5Oixuuzl .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vq5Oixuuzl .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vq5Oixuuzl .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vq5Oixuuzl .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vq5Oixuuzl .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vq5Oixuuzl .mbr-section-title {
  color: #08323c;
}
.cid-vq5Oixuuzl .mbr-text,
.cid-vq5Oixuuzl .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vq5Oixuuzl .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vq5Oixuuzl .item-subtitle {
  text-align: left;
}
.cid-vq5Oixuuzl .mbr-section-subtitle {
  color: #232323;
}
.cid-vq5QPXbuXx {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vq5QPXbuXx img,
.cid-vq5QPXbuXx .item-img {
  width: 100%;
}
.cid-vq5QPXbuXx .item:focus,
.cid-vq5QPXbuXx span:focus {
  outline: none;
}
.cid-vq5QPXbuXx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vq5QPXbuXx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vq5QPXbuXx .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vq5QPXbuXx .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vq5QPXbuXx .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vq5QPXbuXx .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vq5QPXbuXx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vq5QPXbuXx .mbr-section-title {
  color: #08323c;
}
.cid-vq5QPXbuXx .mbr-text,
.cid-vq5QPXbuXx .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vq5QPXbuXx .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vq5QPXbuXx .item-subtitle {
  text-align: left;
}
.cid-vq5QPXbuXx .mbr-section-subtitle {
  color: #232323;
}
.cid-vq5SfLhf9r {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vq5SfLhf9r img,
.cid-vq5SfLhf9r .item-img {
  width: 100%;
}
.cid-vq5SfLhf9r .item:focus,
.cid-vq5SfLhf9r span:focus {
  outline: none;
}
.cid-vq5SfLhf9r .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vq5SfLhf9r .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vq5SfLhf9r .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vq5SfLhf9r .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vq5SfLhf9r .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vq5SfLhf9r .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vq5SfLhf9r .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vq5SfLhf9r .mbr-section-title {
  color: #08323c;
}
.cid-vq5SfLhf9r .mbr-text,
.cid-vq5SfLhf9r .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vq5SfLhf9r .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vq5SfLhf9r .item-subtitle {
  text-align: left;
}
.cid-vq5SfLhf9r .mbr-section-subtitle {
  color: #232323;
}
.cid-vq5UrHUoLr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vq5UrHUoLr img,
.cid-vq5UrHUoLr .item-img {
  width: 100%;
}
.cid-vq5UrHUoLr .item:focus,
.cid-vq5UrHUoLr span:focus {
  outline: none;
}
.cid-vq5UrHUoLr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vq5UrHUoLr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vq5UrHUoLr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vq5UrHUoLr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vq5UrHUoLr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vq5UrHUoLr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vq5UrHUoLr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vq5UrHUoLr .mbr-section-title {
  color: #08323c;
}
.cid-vq5UrHUoLr .mbr-text,
.cid-vq5UrHUoLr .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vq5UrHUoLr .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vq5UrHUoLr .item-subtitle {
  text-align: left;
}
.cid-vq5UrHUoLr .mbr-section-subtitle {
  color: #232323;
}
.cid-vq5XmQNtRr {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vq5XmQNtRr img,
.cid-vq5XmQNtRr .item-img {
  width: 100%;
}
.cid-vq5XmQNtRr .item:focus,
.cid-vq5XmQNtRr span:focus {
  outline: none;
}
.cid-vq5XmQNtRr .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vq5XmQNtRr .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vq5XmQNtRr .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vq5XmQNtRr .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vq5XmQNtRr .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vq5XmQNtRr .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vq5XmQNtRr .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vq5XmQNtRr .mbr-section-title {
  color: #08323c;
}
.cid-vq5XmQNtRr .mbr-text,
.cid-vq5XmQNtRr .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vq5XmQNtRr .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vq5XmQNtRr .item-subtitle {
  text-align: left;
}
.cid-vq5XmQNtRr .mbr-section-subtitle {
  color: #232323;
}
.cid-vqhkL01YMf {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqhkL01YMf img,
.cid-vqhkL01YMf .item-img {
  width: 100%;
}
.cid-vqhkL01YMf .item:focus,
.cid-vqhkL01YMf span:focus {
  outline: none;
}
.cid-vqhkL01YMf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vqhkL01YMf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vqhkL01YMf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vqhkL01YMf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqhkL01YMf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vqhkL01YMf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vqhkL01YMf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vqhkL01YMf .mbr-section-title {
  color: #08323c;
}
.cid-vqhkL01YMf .mbr-text,
.cid-vqhkL01YMf .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vqhkL01YMf .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vqhkL01YMf .item-subtitle {
  text-align: left;
}
.cid-vqhkL01YMf .mbr-section-subtitle {
  color: #232323;
}
.cid-vqhmlzKxRY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqhmlzKxRY img,
.cid-vqhmlzKxRY .item-img {
  width: 100%;
}
.cid-vqhmlzKxRY .item:focus,
.cid-vqhmlzKxRY span:focus {
  outline: none;
}
.cid-vqhmlzKxRY .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vqhmlzKxRY .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #232323;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vqhmlzKxRY .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-vqhmlzKxRY .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vqhmlzKxRY .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-vqhmlzKxRY .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-vqhmlzKxRY .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vqhmlzKxRY .mbr-section-title {
  color: #08323c;
}
.cid-vqhmlzKxRY .mbr-text,
.cid-vqhmlzKxRY .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-vqhmlzKxRY .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-vqhmlzKxRY .item-subtitle {
  text-align: left;
}
.cid-vqhmlzKxRY .mbr-section-subtitle {
  color: #232323;
}
.cid-vqhPGWyYaz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqhPGWyYaz .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhPGWyYaz .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-vqhPGWyYaz .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-vqhPGWyYaz .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vqhPGWyYaz .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqhPGWyYaz .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-vqhPGWyYaz .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-vqhPGWyYaz .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-vqhPGWyYaz .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-vqhPGWyYaz .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-vqhPGWyYaz .media-content,
.cid-vqhPGWyYaz .mbr-figure {
  align-self: center;
}
.cid-vqhPGWyYaz .mbr-figure {
  overflow: hidden;
}
.cid-vqhPGWyYaz .card {
  background-color: #000000;
}
.cid-vqhPGWyYaz .icon-title {
  color: #bff747;
}
.cid-vqhPGWyYaz .mbr-text {
  color: #000000;
}
.cid-vqhPGWyYaz .mbr-number {
  color: #bff747;
}
.cid-vqhPGWyYaz .card-text,
.cid-vqhPGWyYaz .item .mbr-section-btn {
  color: #fdfde1;
}
.cid-vqhQ2CTbbO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqhQ2CTbbO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhQ2CTbbO .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-vqhQ2CTbbO .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-vqhQ2CTbbO .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vqhQ2CTbbO .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqhQ2CTbbO .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-vqhQ2CTbbO .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-vqhQ2CTbbO .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-vqhQ2CTbbO .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-vqhQ2CTbbO .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-vqhQ2CTbbO .media-content,
.cid-vqhQ2CTbbO .mbr-figure {
  align-self: center;
}
.cid-vqhQ2CTbbO .mbr-figure {
  overflow: hidden;
}
.cid-vqhQ2CTbbO .card {
  background-color: #000000;
}
.cid-vqhQ2CTbbO .icon-title {
  color: #bff747;
}
.cid-vqhQ2CTbbO .mbr-text {
  color: #000000;
}
.cid-vqhQ2CTbbO .mbr-number {
  color: #bff747;
}
.cid-vqhQ2CTbbO .card-text,
.cid-vqhQ2CTbbO .item .mbr-section-btn {
  color: #fdfde1;
}
.cid-vqhQlrnQjd {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqhQlrnQjd .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqhQlrnQjd .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-vqhQlrnQjd .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-vqhQlrnQjd .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vqhQlrnQjd .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqhQlrnQjd .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-vqhQlrnQjd .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-vqhQlrnQjd .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-vqhQlrnQjd .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-vqhQlrnQjd .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-vqhQlrnQjd .media-content,
.cid-vqhQlrnQjd .mbr-figure {
  align-self: center;
}
.cid-vqhQlrnQjd .mbr-figure {
  overflow: hidden;
}
.cid-vqhQlrnQjd .card {
  background-color: #000000;
}
.cid-vqhQlrnQjd .icon-title {
  color: #bff747;
}
.cid-vqhQlrnQjd .mbr-text {
  color: #000000;
}
.cid-vqhQlrnQjd .mbr-number {
  color: #bff747;
}
.cid-vqhQlrnQjd .card-text,
.cid-vqhQlrnQjd .item .mbr-section-btn {
  color: #fdfde1;
}
.cid-vqzsCBlEd5 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqzsCBlEd5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqzsCBlEd5 .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-vqzsCBlEd5 .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-vqzsCBlEd5 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vqzsCBlEd5 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqzsCBlEd5 .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-vqzsCBlEd5 .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-vqzsCBlEd5 .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-vqzsCBlEd5 .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-vqzsCBlEd5 .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-vqzsCBlEd5 .media-content,
.cid-vqzsCBlEd5 .mbr-figure {
  align-self: center;
}
.cid-vqzsCBlEd5 .mbr-figure {
  overflow: hidden;
}
.cid-vqzsCBlEd5 .card {
  background-color: #000000;
}
.cid-vqzsCBlEd5 .icon-title {
  color: #bff747;
}
.cid-vqzsCBlEd5 .mbr-text {
  color: #000000;
}
.cid-vqzsCBlEd5 .mbr-number {
  color: #bff747;
}
.cid-vqzsCBlEd5 .card-text,
.cid-vqzsCBlEd5 .item .mbr-section-btn {
  color: #fdfde1;
}
.cid-vqzsIGrJHq {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqzsIGrJHq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqzsIGrJHq .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-vqzsIGrJHq .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-vqzsIGrJHq .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vqzsIGrJHq .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqzsIGrJHq .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-vqzsIGrJHq .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-vqzsIGrJHq .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-vqzsIGrJHq .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-vqzsIGrJHq .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-vqzsIGrJHq .media-content,
.cid-vqzsIGrJHq .mbr-figure {
  align-self: center;
}
.cid-vqzsIGrJHq .mbr-figure {
  overflow: hidden;
}
.cid-vqzsIGrJHq .card {
  background-color: #000000;
}
.cid-vqzsIGrJHq .icon-title {
  color: #bff747;
}
.cid-vqzsIGrJHq .mbr-text {
  color: #000000;
}
.cid-vqzsIGrJHq .mbr-number {
  color: #bff747;
}
.cid-vqzsIGrJHq .card-text,
.cid-vqzsIGrJHq .item .mbr-section-btn {
  color: #fdfde1;
}
.cid-vqzsRblpM3 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #bbbbbb;
}
.cid-vqzsRblpM3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vqzsRblpM3 .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-vqzsRblpM3 .mbr-figure {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
  }
}
.cid-vqzsRblpM3 .row {
  align-items: center;
}
@media (min-width: 992px) {
  .cid-vqzsRblpM3 .text-wrapper {
    padding: 0 2rem;
  }
}
.cid-vqzsRblpM3 .text-wrapper .mbr-card-title {
  margin-bottom: 0.5rem;
}
.cid-vqzsRblpM3 .text-wrapper .py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}
.cid-vqzsRblpM3 .text-wrapper .pb-4 {
  padding-bottom: 1.5rem !important;
}
.cid-vqzsRblpM3 .text-wrapper .pt-4 {
  padding-top: 1.5rem !important;
}
.cid-vqzsRblpM3 .text-wrapper .mbr-figure iframe {
  width: 100%;
  overflow: hidden;
}
.cid-vqzsRblpM3 .media-content,
.cid-vqzsRblpM3 .mbr-figure {
  align-self: center;
}
.cid-vqzsRblpM3 .mbr-figure {
  overflow: hidden;
}
.cid-vqzsRblpM3 .card {
  background-color: #000000;
}
.cid-vqzsRblpM3 .icon-title {
  color: #bff747;
}
.cid-vqzsRblpM3 .mbr-text {
  color: #000000;
}
.cid-vqzsRblpM3 .mbr-number {
  color: #bff747;
}
.cid-vqzsRblpM3 .card-text,
.cid-vqzsRblpM3 .item .mbr-section-btn {
  color: #fdfde1;
}
.cid-tF4z5OJXVT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tF4z5OJXVT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4z5OJXVT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4z5OJXVT .mbr-section-title {
  color: #ffffff;
}
.cid-tF4z5P5VDk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tF4z5P5VDk .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tF4z5P5VDk .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tF4z5P5VDk .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tF4z5P5VDk .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tF4z5P5VDk .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tF4z5P5VDk .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tF4z5P5VDk .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tF4z5P5VDk .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tF4z5P5VDk .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tF4z5P5VDk .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tF4z5P5VDk .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tF4z5P5VDk .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tF4z5P5VDk .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tF4z5P5VDk .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFcjmH3JIG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFcjmH3JIG nav.navbar {
  position: fixed;
}
.cid-tFcjmH3JIG .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .wrapper {
    padding: 0;
  }
}
.cid-tFcjmH3JIG .btn {
  border-radius: 30px;
}
.cid-tFcjmH3JIG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFcjmH3JIG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFcjmH3JIG .dropdown-item:hover,
.cid-tFcjmH3JIG .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-tFcjmH3JIG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFcjmH3JIG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFcjmH3JIG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFcjmH3JIG .nav-link {
  position: relative;
}
.cid-tFcjmH3JIG .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown-menu,
.cid-tFcjmH3JIG .navbar.opened {
  background: #232323 !important;
}
.cid-tFcjmH3JIG .nav-item:focus,
.cid-tFcjmH3JIG .nav-link:focus {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFcjmH3JIG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFcjmH3JIG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.opened {
  transition: all 0.3s;
}
.cid-tFcjmH3JIG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFcjmH3JIG .navbar .navbar-logo img {
  width: auto;
}
.cid-tFcjmH3JIG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar.collapsed {
  justify-content: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFcjmH3JIG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFcjmH3JIG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFcjmH3JIG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFcjmH3JIG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFcjmH3JIG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFcjmH3JIG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFcjmH3JIG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFcjmH3JIG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFcjmH3JIG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFcjmH3JIG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFcjmH3JIG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown-item.active,
.cid-tFcjmH3JIG .dropdown-item:active {
  background-color: transparent;
}
.cid-tFcjmH3JIG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFcjmH3JIG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFcjmH3JIG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFcjmH3JIG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFcjmH3JIG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tFcjmH3JIG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFcjmH3JIG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFcjmH3JIG .navbar {
    height: 70px;
  }
  .cid-tFcjmH3JIG .navbar.opened {
    height: auto;
  }
  .cid-tFcjmH3JIG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF4zatN7Jf {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tF4zatN7Jf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4zatN7Jf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4zatN7Jf .row {
  justify-content: flex-start;
}
.cid-tF4zatN7Jf .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-tF4zatN7Jf .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4zatN7Jf .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tF4zatN7Jf .image-wrapper {
  width: 100%;
}
.cid-tF4zatN7Jf .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tF4zatN7Jf .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tF4zatN7Jf .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4zatN7Jf .mbr-text {
    margin-top: 45px;
  }
}
.cid-tF4zatN7Jf .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tF4zatN7Jf .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tF4zatN7Jf .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tF4zatN7Jf .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tF4zatN7Jf .mbr-text,
.cid-tF4zatN7Jf .mbr-section-btn {
  color: #d58001;
}
.cid-ugOUblcOHE {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ugOUblcOHE .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOUblcOHE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOUblcOHE .mbr-section-title {
  color: #ffffff;
}
.cid-tFmyY0dDnv {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-tFmyY0dDnv .row {
  justify-content: center;
}
.cid-tFmyY0dDnv .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-tFmyY0dDnv .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
}
.cid-tFmyY0dDnv .card {
  padding: 0 15px;
}
.cid-tFmyY0dDnv .item-wrapper {
  height: 100%;
}
.cid-tFmyY0dDnv .card-wrapper {
  margin-bottom: 30px;
  border-radius: 0;
}
.cid-tFmyY0dDnv .card-wrapper .card-image {
  height: 306px;
  overflow: hidden;
  margin-bottom: 22px;
}
.cid-tFmyY0dDnv .card-wrapper .card-image img {
  height: 306px;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-tFmyY0dDnv .card-wrapper .card-text {
  margin: 0 0 26px 0;
  display: flex;
}
.cid-tFmyY0dDnv .card-wrapper .card-text .mbr-card-title {
  margin-bottom: 0;
}
.cid-tFmyY0dDnv .card-wrapper .card-text p {
  margin-right: 13px;
}
.cid-tFmyY0dDnv .card-wrapper .card-border {
  height: 1px;
  background: #275f73;
  opacity: .3;
  transition: all 1s linear;
}
.cid-tFmyY0dDnv .mbr-section-btn {
  margin-top: 33px;
}
.cid-tFmyY0dDnv .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-tFmyY0dDnv .btn:hover {
  box-shadow: none;
}
.cid-tFmyY0dDnv .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-tFmyY0dDnv .card:hover .card-border {
  opacity: 1;
}
.cid-tFmyY0dDnv .mbr-section-title,
.cid-tFmyY0dDnv .mbr-section-btn {
  text-align: center;
}
.cid-tFmyY0dDnv .mbr-card-title {
  color: #275f73;
  text-align: right;
}
.cid-tF4zauEJZ6 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-tF4zauEJZ6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4zauEJZ6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4zauEJZ6 .mbr-section-title {
  color: #ffffff;
}
.cid-tF4zauUrBo {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-tF4zauUrBo .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4zauUrBo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4zauUrBo .mbr-section-title {
  color: #ffffff;
}
.cid-tF4zaxbIAK {
  background-color: #65676c;
}
.cid-tF4zaxbIAK .content {
  display: flex;
  height: 10px;
  justify-content: center;
  align-items: center;
}
.cid-tF4zaxbIAK .content img {
  width: 43px;
  height: 43px;
  object-fit: cover;
  margin-right: 15px;
}
.cid-tF4zaxbIAK .content p {
  margin: 0;
}
.cid-tF4zaxbIAK .mbr-text {
  color: #ffffff;
}
.cid-tF4zazeLk9 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tF4zazeLk9 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tF4zazeLk9 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tF4zazeLk9 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tF4zazeLk9 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tF4zazeLk9 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tF4zazeLk9 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tF4zazeLk9 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tF4zazeLk9 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tF4zazeLk9 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tF4zazeLk9 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tF4zazeLk9 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tF4zazeLk9 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tF4zazeLk9 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tF4zazeLk9 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tFcjmH3JIG {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tFcjmH3JIG nav.navbar {
  position: fixed;
}
.cid-tFcjmH3JIG .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .wrapper {
    padding: 0;
  }
}
.cid-tFcjmH3JIG .btn {
  border-radius: 30px;
}
.cid-tFcjmH3JIG .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tFcjmH3JIG .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tFcjmH3JIG .dropdown-item:hover,
.cid-tFcjmH3JIG .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-tFcjmH3JIG .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tFcjmH3JIG .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tFcjmH3JIG .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tFcjmH3JIG .nav-link {
  position: relative;
}
.cid-tFcjmH3JIG .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown-menu,
.cid-tFcjmH3JIG .navbar.opened {
  background: #232323 !important;
}
.cid-tFcjmH3JIG .nav-item:focus,
.cid-tFcjmH3JIG .nav-link:focus {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tFcjmH3JIG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tFcjmH3JIG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tFcjmH3JIG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tFcjmH3JIG .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.opened {
  transition: all 0.3s;
}
.cid-tFcjmH3JIG .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tFcjmH3JIG .navbar .navbar-logo img {
  width: auto;
}
.cid-tFcjmH3JIG .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar.collapsed {
  justify-content: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tFcjmH3JIG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tFcjmH3JIG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tFcjmH3JIG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tFcjmH3JIG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tFcjmH3JIG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tFcjmH3JIG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tFcjmH3JIG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tFcjmH3JIG .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tFcjmH3JIG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tFcjmH3JIG .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tFcjmH3JIG .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tFcjmH3JIG .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tFcjmH3JIG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tFcjmH3JIG .navbar.navbar-short {
  min-height: 60px;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tFcjmH3JIG .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tFcjmH3JIG .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tFcjmH3JIG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tFcjmH3JIG .dropdown-item.active,
.cid-tFcjmH3JIG .dropdown-item:active {
  background-color: transparent;
}
.cid-tFcjmH3JIG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tFcjmH3JIG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tFcjmH3JIG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tFcjmH3JIG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tFcjmH3JIG ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tFcjmH3JIG .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tFcjmH3JIG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tFcjmH3JIG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tFcjmH3JIG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tFcjmH3JIG .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tFcjmH3JIG a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tFcjmH3JIG .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tFcjmH3JIG .navbar {
    height: 70px;
  }
  .cid-tFcjmH3JIG .navbar.opened {
    height: auto;
  }
  .cid-tFcjmH3JIG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF4zdopx08 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tF4zdopx08 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4zdopx08 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4zdopx08 .row {
  justify-content: flex-start;
}
.cid-tF4zdopx08 .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-tF4zdopx08 .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4zdopx08 .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tF4zdopx08 .image-wrapper {
  width: 100%;
}
.cid-tF4zdopx08 .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tF4zdopx08 .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tF4zdopx08 .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tF4zdopx08 .mbr-text {
    margin-top: 45px;
  }
}
.cid-tF4zdopx08 .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tF4zdopx08 .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tF4zdopx08 .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tF4zdopx08 .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tF4zdopx08 .mbr-text,
.cid-tF4zdopx08 .mbr-section-btn {
  color: #d58001;
}
.cid-ugOUgsmsQa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ugOUgsmsQa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOUgsmsQa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOUgsmsQa .mbr-section-title {
  color: #ffffff;
}
.cid-tG6ZZtNL9c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-tG6ZZtNL9c .mbr-section-head {
  width: 100%;
  margin-bottom: 70px;
}
.cid-tG6ZZtNL9c .mbr-section-title {
  color: #d58001;
  text-align: left;
}
.cid-tG6ZZtNL9c .mbr-section-subtitle {
  color: #000000;
  margin-top: 16px;
}
.cid-tG6ZZtNL9c .items-row {
  row-gap: 30px;
}
@media (min-width: 768px) {
  .cid-tG6ZZtNL9c .items-row {
    margin: 0 -15px;
  }
  .cid-tG6ZZtNL9c .items-row > [class*="col"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.cid-tG6ZZtNL9c .item-wrapper {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  overflow: visible;
}
.cid-tG6ZZtNL9c .item-img {
  display: flex;
  flex-grow: 0;
  flex-shrink: 0;
  width: 100%;
}
.cid-tG6ZZtNL9c .item-img img {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 0.974;
  --bs-aspect-ratio: 0.974;
  object-fit: cover;
}
.cid-tG6ZZtNL9c .item-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px 0 0;
}
.cid-tG6ZZtNL9c .item-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tG6ZZtNL9c .mbr-text {
  color: #275f73;
  padding-top: 5px;
}
.cid-tG6ZZtNL9c .social-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 25px;
}
.cid-tG6ZZtNL9c .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-width: 50px;
  min-height: 50px;
  margin-right: -5px;
  margin-left: -5px;
  transition: 0.3s all;
}
.cid-tG6ZZtNL9c .soc-item:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%;
  background: #1da1f2;
  border-radius: 50%;
  transition: 0.3s all;
}
.cid-tG6ZZtNL9c .soc-item .mbr-iconfont {
  position: relative;
  z-index: 5;
  transition: 0.3s all;
  font-size: 16px;
  color: #000000;
  padding: 10px;
}
.cid-tG6ZZtNL9c .soc-item:hover .mbr-iconfont {
  color: #FFFFFF !important;
}
.cid-tG6ZZtNL9c .soc-item:hover:before {
  transform: translate(-50%, -50%) scale(1);
}
.cid-tG6ZZtNL9c .mbr-section-btn {
  margin-top: 20px;
}
.cid-tG6ZZtNL9c .item-title,
.cid-tG6ZZtNL9c .mbr-section-btn {
  color: #275f73;
}
.cid-tG6TFHPfv1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-tG6TFHPfv1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tG6TFHPfv1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tG6TFHPfv1 .row {
  justify-content: space-between;
}
.cid-tG6TFHPfv1 .line {
  widht: 100%;
  height: 2px;
  background: gray;
  margin-bottom: 2rem;
}
.cid-tG6TFHPfv1 .mbr-text,
.cid-tG6TFHPfv1 .mbr-section-btn {
  color: #000000;
}
.cid-tG6TFHPfv1 .mbr-section-title {
  color: #ffffff;
}
.cid-tG6TFHPfv1 .mbr-section-subtitle {
  color: #000000;
}
.cid-tF4zdp9ZIJ {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-tF4zdp9ZIJ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4zdp9ZIJ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4zdp9ZIJ .mbr-section-title {
  color: #ffffff;
}
.cid-tF4zdpoto2 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-tF4zdpoto2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF4zdpoto2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF4zdpoto2 .mbr-section-title {
  color: #ffffff;
}
.cid-tF4zdtErS6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tF4zdtErS6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tF4zdtErS6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tF4zdtErS6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tF4zdtErS6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tF4zdtErS6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tF4zdtErS6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tF4zdtErS6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tF4zdtErS6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tF4zdtErS6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tF4zdtErS6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tF4zdtErS6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tF4zdtErS6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tF4zdtErS6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tF4zdtErS6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tGBFXzdXsZ {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tGBFXzdXsZ nav.navbar {
  position: fixed;
}
.cid-tGBFXzdXsZ .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tGBFXzdXsZ .wrapper {
    padding: 0;
  }
}
.cid-tGBFXzdXsZ .btn {
  border-radius: 30px;
}
.cid-tGBFXzdXsZ .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGBFXzdXsZ .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tGBFXzdXsZ .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tGBFXzdXsZ .dropdown-item:hover,
.cid-tGBFXzdXsZ .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-tGBFXzdXsZ .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tGBFXzdXsZ .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tGBFXzdXsZ .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tGBFXzdXsZ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tGBFXzdXsZ .nav-link {
  position: relative;
}
.cid-tGBFXzdXsZ .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tGBFXzdXsZ .dropdown-menu,
.cid-tGBFXzdXsZ .navbar.opened {
  background: #232323 !important;
}
.cid-tGBFXzdXsZ .nav-item:focus,
.cid-tGBFXzdXsZ .nav-link:focus {
  outline: none;
}
.cid-tGBFXzdXsZ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tGBFXzdXsZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tGBFXzdXsZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tGBFXzdXsZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tGBFXzdXsZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tGBFXzdXsZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tGBFXzdXsZ .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tGBFXzdXsZ .navbar.opened {
  transition: all 0.3s;
}
.cid-tGBFXzdXsZ .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tGBFXzdXsZ .navbar .navbar-logo img {
  width: auto;
}
.cid-tGBFXzdXsZ .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tGBFXzdXsZ .navbar.collapsed {
  justify-content: center;
}
.cid-tGBFXzdXsZ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tGBFXzdXsZ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tGBFXzdXsZ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tGBFXzdXsZ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tGBFXzdXsZ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tGBFXzdXsZ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tGBFXzdXsZ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tGBFXzdXsZ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tGBFXzdXsZ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tGBFXzdXsZ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tGBFXzdXsZ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tGBFXzdXsZ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tGBFXzdXsZ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tGBFXzdXsZ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tGBFXzdXsZ .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tGBFXzdXsZ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tGBFXzdXsZ .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tGBFXzdXsZ .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tGBFXzdXsZ .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tGBFXzdXsZ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tGBFXzdXsZ .navbar.navbar-short {
  min-height: 60px;
}
.cid-tGBFXzdXsZ .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tGBFXzdXsZ .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tGBFXzdXsZ .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tGBFXzdXsZ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tGBFXzdXsZ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tGBFXzdXsZ .dropdown-item.active,
.cid-tGBFXzdXsZ .dropdown-item:active {
  background-color: transparent;
}
.cid-tGBFXzdXsZ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tGBFXzdXsZ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tGBFXzdXsZ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tGBFXzdXsZ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tGBFXzdXsZ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tGBFXzdXsZ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tGBFXzdXsZ ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tGBFXzdXsZ .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tGBFXzdXsZ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tGBFXzdXsZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tGBFXzdXsZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tGBFXzdXsZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGBFXzdXsZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tGBFXzdXsZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tGBFXzdXsZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGBFXzdXsZ nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tGBFXzdXsZ nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tGBFXzdXsZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tGBFXzdXsZ .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tGBFXzdXsZ a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tGBFXzdXsZ .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tGBFXzdXsZ .navbar {
    height: 70px;
  }
  .cid-tGBFXzdXsZ .navbar.opened {
    height: auto;
  }
  .cid-tGBFXzdXsZ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tGBFXofjnI {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tGBFXofjnI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBFXofjnI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGBFXofjnI .row {
  justify-content: flex-start;
}
.cid-tGBFXofjnI .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-tGBFXofjnI .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tGBFXofjnI .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tGBFXofjnI .image-wrapper {
  width: 100%;
}
.cid-tGBFXofjnI .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tGBFXofjnI .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tGBFXofjnI .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tGBFXofjnI .mbr-text {
    margin-top: 45px;
  }
}
.cid-tGBFXofjnI .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tGBFXofjnI .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tGBFXofjnI .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tGBFXofjnI .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tGBFXofjnI .mbr-text,
.cid-tGBFXofjnI .mbr-section-btn {
  color: #d58001;
}
.cid-ugOUlSWnIH {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ugOUlSWnIH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugOUlSWnIH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugOUlSWnIH .mbr-section-title {
  color: #ffffff;
}
.cid-tGBFXpCDSV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-tGBFXpCDSV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBFXpCDSV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGBFXpCDSV .mbr-section-title {
  color: #ffffff;
}
.cid-vqhkEpZVIV {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vqhkEpZVIV .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vqhkEpZVIV .mbr-text {
  color: #000000;
}
.cid-vqhkEpZVIV .mbr-section-title {
  color: #ffa41d;
}
.cid-vp9v3L4WKt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vp9v3L4WKt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vp9v3L4WKt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vp9v3L4WKt .mbr-section-title {
  color: #ffffff;
}
.cid-vp9sENlZoE {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vp9sENlZoE .mbr-fallback-image.disabled {
  display: none;
}
.cid-vp9sENlZoE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vp9sENlZoE .video-wrapper iframe {
  width: 100%;
}
.cid-vp9sENlZoE .mbr-section-title,
.cid-vp9sENlZoE .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vp9sENlZoE .text-wrapper {
    padding: 2rem;
  }
}
.cid-vp9sENlZoE .mbr-description {
  color: #275f73;
}
.cid-vp9sENlZoE .mbr-text {
  color: #000000;
}
.cid-vp9sENlZoE .mbr-section-subtitle {
  color: #275f73;
}
.cid-vp9sENlZoE .mbr-section-title {
  color: #275f73;
  text-align: right;
}
.cid-tGBFXv9ebb {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tGBFXv9ebb .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tGBFXv9ebb img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tGBFXv9ebb .text-wrapper {
    padding: 2rem;
  }
}
.cid-tGBFXv9ebb .mbr-description {
  color: #232323;
}
.cid-tGBFXv9ebb .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-tGBFXv9ebb .mbr-section-title {
  color: #275f73;
}
.cid-vp96B6fcdr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vp96B6fcdr .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vp96B6fcdr img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vp96B6fcdr .text-wrapper {
    padding: 2rem;
  }
}
.cid-vp96B6fcdr .mbr-description {
  color: #232323;
}
.cid-vp96B6fcdr .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-vp96B6fcdr .mbr-section-title {
  color: #275f73;
}
.cid-vmrVMnufc9 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-vmrVMnufc9 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vmrVMnufc9 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vmrVMnufc9 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vmrVMnufc9 .mbr-description {
  color: #232323;
}
.cid-vmrVMnufc9 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-vmrVMnufc9 .mbr-section-title {
  color: #275f73;
}
.cid-tGBFXwk9xt {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-tGBFXwk9xt .mbr-fallback-image.disabled {
  display: none;
}
.cid-tGBFXwk9xt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tGBFXwk9xt .mbr-section-title {
  color: #ffffff;
}
.cid-tGBFXyFEsa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tGBFXyFEsa .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tGBFXyFEsa .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tGBFXyFEsa .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tGBFXyFEsa .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tGBFXyFEsa .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tGBFXyFEsa .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tGBFXyFEsa .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tGBFXyFEsa .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tGBFXyFEsa .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tGBFXyFEsa .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tGBFXyFEsa .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tGBFXyFEsa .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tGBFXyFEsa .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tGBFXyFEsa .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-tHZnJuwrL8 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tHZnJuwrL8 nav.navbar {
  position: fixed;
}
.cid-tHZnJuwrL8 .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-tHZnJuwrL8 .wrapper {
    padding: 0;
  }
}
.cid-tHZnJuwrL8 .btn {
  border-radius: 30px;
}
.cid-tHZnJuwrL8 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tHZnJuwrL8 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tHZnJuwrL8 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tHZnJuwrL8 .dropdown-item:hover,
.cid-tHZnJuwrL8 .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-tHZnJuwrL8 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tHZnJuwrL8 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tHZnJuwrL8 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-tHZnJuwrL8 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tHZnJuwrL8 .nav-link {
  position: relative;
}
.cid-tHZnJuwrL8 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tHZnJuwrL8 .dropdown-menu,
.cid-tHZnJuwrL8 .navbar.opened {
  background: #232323 !important;
}
.cid-tHZnJuwrL8 .nav-item:focus,
.cid-tHZnJuwrL8 .nav-link:focus {
  outline: none;
}
.cid-tHZnJuwrL8 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tHZnJuwrL8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHZnJuwrL8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tHZnJuwrL8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tHZnJuwrL8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHZnJuwrL8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHZnJuwrL8 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-tHZnJuwrL8 .navbar.opened {
  transition: all 0.3s;
}
.cid-tHZnJuwrL8 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tHZnJuwrL8 .navbar .navbar-logo img {
  width: auto;
}
.cid-tHZnJuwrL8 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHZnJuwrL8 .navbar.collapsed {
  justify-content: center;
}
.cid-tHZnJuwrL8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHZnJuwrL8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHZnJuwrL8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-tHZnJuwrL8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHZnJuwrL8 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHZnJuwrL8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tHZnJuwrL8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHZnJuwrL8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tHZnJuwrL8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tHZnJuwrL8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHZnJuwrL8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHZnJuwrL8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHZnJuwrL8 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHZnJuwrL8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tHZnJuwrL8 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tHZnJuwrL8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHZnJuwrL8 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHZnJuwrL8 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tHZnJuwrL8 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tHZnJuwrL8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tHZnJuwrL8 .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHZnJuwrL8 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tHZnJuwrL8 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tHZnJuwrL8 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tHZnJuwrL8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHZnJuwrL8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHZnJuwrL8 .dropdown-item.active,
.cid-tHZnJuwrL8 .dropdown-item:active {
  background-color: transparent;
}
.cid-tHZnJuwrL8 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHZnJuwrL8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tHZnJuwrL8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tHZnJuwrL8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-tHZnJuwrL8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHZnJuwrL8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHZnJuwrL8 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tHZnJuwrL8 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tHZnJuwrL8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-tHZnJuwrL8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tHZnJuwrL8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHZnJuwrL8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHZnJuwrL8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHZnJuwrL8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHZnJuwrL8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHZnJuwrL8 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHZnJuwrL8 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHZnJuwrL8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHZnJuwrL8 .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-tHZnJuwrL8 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHZnJuwrL8 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tHZnJuwrL8 .navbar {
    height: 70px;
  }
  .cid-tHZnJuwrL8 .navbar.opened {
    height: auto;
  }
  .cid-tHZnJuwrL8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHZnJt2xY8 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-tHZnJt2xY8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHZnJt2xY8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHZnJt2xY8 .row {
  justify-content: flex-start;
}
.cid-tHZnJt2xY8 .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-tHZnJt2xY8 .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tHZnJt2xY8 .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-tHZnJt2xY8 .image-wrapper {
  width: 100%;
}
.cid-tHZnJt2xY8 .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-tHZnJt2xY8 .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-tHZnJt2xY8 .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-tHZnJt2xY8 .mbr-text {
    margin-top: 45px;
  }
}
.cid-tHZnJt2xY8 .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-tHZnJt2xY8 .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-tHZnJt2xY8 .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-tHZnJt2xY8 .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-tHZnJt2xY8 .mbr-text,
.cid-tHZnJt2xY8 .mbr-section-btn {
  color: #d58001;
}
.cid-tHZnJtiqI8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-tHZnJtiqI8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHZnJtiqI8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHZnJtiqI8 .mbr-section-title {
  color: #ffffff;
}
.cid-tHZnJtwbjK {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-tHZnJtwbjK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHZnJtwbjK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHZnJtwbjK .mbr-section-title {
  color: #ffffff;
}
.cid-tHZp4FWzOy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #bbbbbb;
}
.cid-tHZp4FWzOy .card {
  height: auto;
  background-color: transparent;
  box-shadow: 0px 10px 20px 0px rgba(29, 29, 27, 0.2);
  transition: all 0.6s ease;
}
.cid-tHZp4FWzOy .card:hover {
  transform: scale(1.03);
}
.cid-tHZp4FWzOy .card-padding {
  padding: 0.72rem 0.75rem;
}
.cid-tHZp4FWzOy .title-section {
  margin-bottom: 1.5rem;
}
@media (min-width: 992px) {
  .cid-tHZp4FWzOy .title-section {
    padding: 0 6rem;
    margin-bottom: 4rem;
  }
}
.cid-tHZp4FWzOy .img-container {
  display: flex;
  justify-content: center;
}
.cid-tHZp4FWzOy .card-img-top {
  width: 230px;
  height: 230px;
  border-radius: 50%;
  object-fit: cover;
}
.cid-tHZp4FWzOy .mbr-section-subtitle {
  text-align: center;
}
.cid-tHZp4FWzOy .mbr-text {
  text-align: center;
}
.cid-tHZp4FWzOy .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHZp4FWzOy .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHZp4FWzOy .card-title {
  color: #d58001;
}
.cid-tHZp4FWzOy .title2 {
  color: #ffa41d;
}
.cid-tHZp4FWzOy .mbr-section-title {
  color: #ff6c42;
}
.cid-tHZnJuPX6t {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-tHZnJuPX6t .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHZnJuPX6t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHZnJuPX6t .mbr-section-title {
  color: #ffffff;
}
.cid-tHZnJv5TFo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-tHZnJv5TFo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-tHZnJv5TFo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-tHZnJv5TFo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-tHZnJv5TFo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-tHZnJv5TFo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-tHZnJv5TFo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-tHZnJv5TFo .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-tHZnJv5TFo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-tHZnJv5TFo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tHZnJv5TFo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-tHZnJv5TFo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tHZnJv5TFo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-tHZnJv5TFo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-tHZnJv5TFo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufES76dClC {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufES76dClC nav.navbar {
  position: fixed;
}
.cid-ufES76dClC .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufES76dClC .wrapper {
    padding: 0;
  }
}
.cid-ufES76dClC .btn {
  border-radius: 30px;
}
.cid-ufES76dClC .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufES76dClC .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufES76dClC .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufES76dClC .dropdown-item:hover,
.cid-ufES76dClC .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufES76dClC .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufES76dClC .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufES76dClC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufES76dClC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufES76dClC .nav-link {
  position: relative;
}
.cid-ufES76dClC .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufES76dClC .dropdown-menu,
.cid-ufES76dClC .navbar.opened {
  background: #232323 !important;
}
.cid-ufES76dClC .nav-item:focus,
.cid-ufES76dClC .nav-link:focus {
  outline: none;
}
.cid-ufES76dClC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufES76dClC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufES76dClC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufES76dClC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufES76dClC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufES76dClC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufES76dClC .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufES76dClC .navbar.opened {
  transition: all 0.3s;
}
.cid-ufES76dClC .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufES76dClC .navbar .navbar-logo img {
  width: auto;
}
.cid-ufES76dClC .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufES76dClC .navbar.collapsed {
  justify-content: center;
}
.cid-ufES76dClC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufES76dClC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufES76dClC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufES76dClC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufES76dClC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufES76dClC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufES76dClC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufES76dClC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufES76dClC .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufES76dClC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufES76dClC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufES76dClC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufES76dClC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufES76dClC .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufES76dClC .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufES76dClC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufES76dClC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufES76dClC .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufES76dClC .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufES76dClC .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufES76dClC .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufES76dClC .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufES76dClC .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufES76dClC .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufES76dClC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufES76dClC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufES76dClC .dropdown-item.active,
.cid-ufES76dClC .dropdown-item:active {
  background-color: transparent;
}
.cid-ufES76dClC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufES76dClC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufES76dClC .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufES76dClC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufES76dClC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufES76dClC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufES76dClC ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufES76dClC .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufES76dClC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufES76dClC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufES76dClC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufES76dClC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufES76dClC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufES76dClC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufES76dClC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufES76dClC nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufES76dClC nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufES76dClC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufES76dClC .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufES76dClC a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufES76dClC .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufES76dClC .navbar {
    height: 70px;
  }
  .cid-ufES76dClC .navbar.opened {
    height: auto;
  }
  .cid-ufES76dClC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufES76ALos {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ufES76ALos .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufES76ALos .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufES76ALos .row {
  justify-content: flex-start;
}
.cid-ufES76ALos .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ufES76ALos .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufES76ALos .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-ufES76ALos .image-wrapper {
  width: 100%;
}
.cid-ufES76ALos .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-ufES76ALos .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-ufES76ALos .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufES76ALos .mbr-text {
    margin-top: 45px;
  }
}
.cid-ufES76ALos .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-ufES76ALos .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-ufES76ALos .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-ufES76ALos .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-ufES76ALos .mbr-text,
.cid-ufES76ALos .mbr-section-btn {
  color: #d58001;
}
.cid-ufES77TgZV {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-ufES77TgZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufES77TgZV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufES77TgZV .mbr-section-title {
  color: #ffffff;
}
.cid-ugfMo2e00L {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ugfMo2e00L .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfMo2e00L .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfMo2e00L .mbr-section-title {
  color: #ffffff;
}
.cid-uOGD0RW4bx {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOGD0RW4bx .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOGD0RW4bx .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOGD0RW4bx .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOGD0RW4bx .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOGD0RW4bx .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOGD0RW4bx .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOGD0RW4bx .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOGD0RW4bx .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-uOGD0RW4bx .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOGD0RW4bx .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOGD0RW4bx .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOGD0RW4bx .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOGD0RW4bx .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOGD0RW4bx .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOGD0RW4bx .card-wrap {
  position: relative;
}
.cid-uOGD0RW4bx .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOGD0RW4bx .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOGD0RW4bx .card-wrapper .item-card {
  padding: 0;
}
.cid-uOGD0RW4bx .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOGD0RW4bx .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOGD0RW4bx .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOGD0RW4bx .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOGD0RW4bx .mbr-section-subtitle {
  color: #FF4712;
}
.cid-uOGD0RW4bx .mbr-section-title {
  color: #275f73;
}
.cid-uOGD0RW4bx .mbr-link {
  color: #20232a;
}
.cid-uOGD0RW4bx .mbr-card-title {
  color: #fafafa;
}
.cid-uOGD0RW4bx .mbr-number {
  color: #fafafa;
}
.cid-uOGD0RW4bx .mbr-desc {
  color: #fafafa;
}
.cid-uOGD3cLwV8 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOGD3cLwV8 .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-uOGD3cLwV8 .mbr-text {
  color: #000000;
}
.cid-uOGD3cLwV8 .mbr-section-title {
  color: #275f73;
}
.cid-ufFaWwIQk2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ufFaWwIQk2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufFaWwIQk2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufFaWwIQk2 .mbr-section-title {
  color: #ffffff;
}
.cid-vmDWr0H1KO {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vmDWr0H1KO .image-wrapper {
  margin-bottom: 170px;
}
.cid-vmDWr0H1KO .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vmDWr0H1KO .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-vmDWr0H1KO .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vmDWr0H1KO .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-vmDWr0H1KO .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-vmDWr0H1KO .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-vmDWr0H1KO .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-vmDWr0H1KO .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-vmDWr0H1KO .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-vmDWr0H1KO .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-vmDWr0H1KO .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-vmDWr0H1KO .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-vmDWr0H1KO .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-vmDWr0H1KO .card-wrap {
  position: relative;
}
.cid-vmDWr0H1KO .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-vmDWr0H1KO .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-vmDWr0H1KO .card-wrapper .item-card {
  padding: 0;
}
.cid-vmDWr0H1KO .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-vmDWr0H1KO .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-vmDWr0H1KO .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-vmDWr0H1KO .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-vmDWr0H1KO .mbr-section-subtitle {
  color: #FF4712;
}
.cid-vmDWr0H1KO .mbr-section-title {
  color: #275f73;
}
.cid-vmDWr0H1KO .mbr-link {
  color: #20232a;
}
.cid-vmDWr0H1KO .mbr-card-title {
  color: #fafafa;
}
.cid-vmDWr0H1KO .mbr-number {
  color: #fafafa;
}
.cid-vmDWr0H1KO .mbr-desc {
  color: #fafafa;
}
.cid-vmJCoVEfZY {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vmJCoVEfZY .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vmJCoVEfZY .mbr-text {
  color: #000000;
}
.cid-vmJCoVEfZY .mbr-section-title {
  color: #275f73;
}
.cid-vnjqmbVcue {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vnjqmbVcue .mbr-fallback-image.disabled {
  display: none;
}
.cid-vnjqmbVcue .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vnjqmbVcue .video-wrapper iframe {
  width: 100%;
}
.cid-vnjqmbVcue .mbr-section-title,
.cid-vnjqmbVcue .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vnjqmbVcue .text-wrapper {
    padding: 2rem;
  }
}
.cid-vnjqmbVcue .mbr-description {
  color: #275f73;
}
.cid-vnjqmbVcue .mbr-text {
  color: #000000;
}
.cid-vnjqmbVcue .mbr-section-subtitle {
  color: #275f73;
}
.cid-vnjqmbVcue .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmJCpXEWCH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vmJCpXEWCH .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vmJCpXEWCH .mbr-text {
  color: #000000;
}
.cid-vmJCpXEWCH .mbr-section-title {
  color: #275f73;
}
.cid-ufF2x9O0wC {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufF2x9O0wC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufF2x9O0wC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufF2x9O0wC .video-wrapper iframe {
  width: 100%;
}
.cid-ufF2x9O0wC .mbr-section-title,
.cid-ufF2x9O0wC .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufF2x9O0wC .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufF2x9O0wC .mbr-description {
  color: #275f73;
}
.cid-ufF2x9O0wC .mbr-text {
  color: #000000;
}
.cid-ufF2x9O0wC .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufF2x9O0wC .mbr-section-title {
  color: #bbbbbb;
}
.cid-uOSxEZ4daO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSxEZ4daO .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSxEZ4daO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSxEZ4daO .mbr-section-title {
  color: #ffffff;
}
.cid-ugfNP3seiN {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #bbbbbb;
}
.cid-ugfNP3seiN .image-wrapper {
  margin-bottom: 170px;
}
.cid-ugfNP3seiN .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ugfNP3seiN .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ugfNP3seiN .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ugfNP3seiN .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ugfNP3seiN .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ugfNP3seiN .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ugfNP3seiN .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ugfNP3seiN .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ugfNP3seiN .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ugfNP3seiN .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ugfNP3seiN .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ugfNP3seiN .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ugfNP3seiN .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ugfNP3seiN .card-wrap {
  position: relative;
}
.cid-ugfNP3seiN .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ugfNP3seiN .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ugfNP3seiN .card-wrapper .item-card {
  padding: 0;
}
.cid-ugfNP3seiN .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ugfNP3seiN .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ugfNP3seiN .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ugfNP3seiN .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ugfNP3seiN .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ugfNP3seiN .mbr-section-title {
  color: #275f73;
  text-align: center;
}
.cid-ugfNP3seiN .mbr-link {
  color: #20232a;
}
.cid-ugfNP3seiN .mbr-card-title {
  color: #fafafa;
}
.cid-ugfNP3seiN .mbr-number {
  color: #fafafa;
}
.cid-ugfNP3seiN .mbr-desc {
  color: #fafafa;
}
.cid-uOXQYXfQIp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOXQYXfQIp .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOXQYXfQIp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOXQYXfQIp .mbr-section-title {
  color: #ffffff;
}
.cid-ugfMDmxnD9 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-ugfMDmxnD9 .item-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 1400px) {
  .cid-ugfMDmxnD9 .item-wrapper {
    padding: 0 4rem;
  }
}
@media (min-width: 992px) {
  .cid-ugfMDmxnD9 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ugfMDmxnD9 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-ugfMDmxnD9 b,
.cid-ugfMDmxnD9 strong {
  font-weight: 900;
}
.cid-ugfMDmxnD9 img,
.cid-ugfMDmxnD9 .item-img {
  width: 100%;
  height: 100%;
  height: 700px;
  object-fit: cover;
}
.cid-ugfMDmxnD9 .item:focus,
.cid-ugfMDmxnD9 span:focus {
  outline: none;
}
.cid-ugfMDmxnD9 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ugfMDmxnD9 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ugfMDmxnD9 .mbr-section-title {
  color: #d58001;
  text-align: left;
}
.cid-ugfMDmxnD9 .mbr-text,
.cid-ugfMDmxnD9 .mbr-section-btn {
  text-align: center;
}
.cid-ugfMDmxnD9 .item-title {
  text-align: center;
  color: #275f73;
}
.cid-ugfMDmxnD9 .item-subtitle {
  text-align: center;
  color: #275f73;
}
.cid-ugfMDmxnD9 .mbr-section-subtitle {
  color: #275f73;
}
.cid-uOSxIrZrHl {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSxIrZrHl .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSxIrZrHl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSxIrZrHl .mbr-section-title {
  color: #ffffff;
}
.cid-vkoqhWDguc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-vkoqhWDguc .content {
  display: flex;
  align-items: center;
}
.cid-vkoqhWDguc .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #275f73;
  text-align: left;
}
.cid-vkoqhWDguc .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-vkoqhWDguc .mbr-text {
  margin-bottom: 38px;
  color: #000000;
}
.cid-vkoqhWDguc .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-vkoqhWDguc .btn:hover {
  box-shadow: none;
}
.cid-vkoqhWDguc .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vkoqhWDguc .image-wrapper {
    margin-top: 25px;
  }
}
.cid-vkoqhWDguc .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-vkoqhWDguc .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-vkoqhWDguc .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-vkoqhWDguc .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-vkoqhWDguc .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-vkoqhWDguc .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-vkoqhWDguc .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-vkoqhWDguc .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-vkoqhWDguc .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-vkoqhWDguc .mbr-iconfont {
  color: #ffffff;
}
.cid-vkoqhWDguc .mbr-image-text {
  color: #ffffff;
}
.cid-vkoqhWDguc .mbr-section-title,
.cid-vkoqhWDguc .mbr-section-btn {
  color: #275f73;
}
.cid-vkoqgJ9V6W {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vkoqgJ9V6W .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkoqgJ9V6W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkoqgJ9V6W .video-wrapper iframe {
  width: 100%;
}
.cid-vkoqgJ9V6W .mbr-section-title,
.cid-vkoqgJ9V6W .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vkoqgJ9V6W .text-wrapper {
    padding: 2rem;
  }
}
.cid-vkoqgJ9V6W .mbr-description {
  color: #275f73;
}
.cid-vkoqgJ9V6W .mbr-text {
  color: #000000;
}
.cid-vkoqgJ9V6W .mbr-section-subtitle {
  color: #275f73;
}
.cid-vkoqgJ9V6W .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmJFkOlSzY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJFkOlSzY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJFkOlSzY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJFkOlSzY .mbr-section-title {
  color: #ffffff;
}
.cid-vmr7tA0ETR {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr7tA0ETR .row {
  justify-content: center;
}
.cid-vmr7tA0ETR .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr7tA0ETR .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr7tA0ETR .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr7tA0ETR .card {
    margin-bottom: 30px;
  }
}
.cid-vmr7tA0ETR .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr7tA0ETR .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr7tA0ETR .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr7tA0ETR .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr7tA0ETR .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr7tA0ETR .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr7tA0ETR .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr7tA0ETR .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr7tA0ETR .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr7tA0ETR .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr7tA0ETR .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr7tA0ETR .mbr-button {
  color: #000000;
}
.cid-vmr7tA0ETR .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr7tA0ETR .mbr-date {
  color: #fafafa;
}
.cid-vmr7tA0ETR .mbr-link {
  color: #FFFFFF;
}
.cid-vmr7tA0ETR .mbr-card-title,
.cid-vmr7tA0ETR .mbr-card-title,
.cid-vmr7tA0ETR .card-button,
.cid-vmr7tA0ETR .mbr-date,
.cid-vmr7tA0ETR .mbr-link {
  text-align: left;
}
.cid-vmr7tA0ETR .mbr-section-title,
.cid-vmr7tA0ETR .mbr-section-btn {
  color: #eaeaea;
}
.cid-uPeUrFCTiK {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-uPeUrFCTiK .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPeUrFCTiK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPeUrFCTiK .mbr-section-title {
  color: #ffffff;
}
.cid-ufES7eicdc {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufES7eicdc .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufES7eicdc .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufES7eicdc .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufES7eicdc .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufES7eicdc .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufES7eicdc .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufES7eicdc .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufES7eicdc .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufES7eicdc .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufES7eicdc .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufES7eicdc .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufES7eicdc .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufES7eicdc .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufES7eicdc .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufESMzvlfS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufESMzvlfS nav.navbar {
  position: fixed;
}
.cid-ufESMzvlfS .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufESMzvlfS .wrapper {
    padding: 0;
  }
}
.cid-ufESMzvlfS .btn {
  border-radius: 30px;
}
.cid-ufESMzvlfS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufESMzvlfS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufESMzvlfS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufESMzvlfS .dropdown-item:hover,
.cid-ufESMzvlfS .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufESMzvlfS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufESMzvlfS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufESMzvlfS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufESMzvlfS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufESMzvlfS .nav-link {
  position: relative;
}
.cid-ufESMzvlfS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufESMzvlfS .dropdown-menu,
.cid-ufESMzvlfS .navbar.opened {
  background: #232323 !important;
}
.cid-ufESMzvlfS .nav-item:focus,
.cid-ufESMzvlfS .nav-link:focus {
  outline: none;
}
.cid-ufESMzvlfS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufESMzvlfS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufESMzvlfS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufESMzvlfS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufESMzvlfS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufESMzvlfS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufESMzvlfS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufESMzvlfS .navbar.opened {
  transition: all 0.3s;
}
.cid-ufESMzvlfS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufESMzvlfS .navbar .navbar-logo img {
  width: auto;
}
.cid-ufESMzvlfS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufESMzvlfS .navbar.collapsed {
  justify-content: center;
}
.cid-ufESMzvlfS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufESMzvlfS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufESMzvlfS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufESMzvlfS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufESMzvlfS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufESMzvlfS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufESMzvlfS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufESMzvlfS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufESMzvlfS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufESMzvlfS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufESMzvlfS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufESMzvlfS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufESMzvlfS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufESMzvlfS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufESMzvlfS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufESMzvlfS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufESMzvlfS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufESMzvlfS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufESMzvlfS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufESMzvlfS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufESMzvlfS .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufESMzvlfS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufESMzvlfS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufESMzvlfS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufESMzvlfS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufESMzvlfS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufESMzvlfS .dropdown-item.active,
.cid-ufESMzvlfS .dropdown-item:active {
  background-color: transparent;
}
.cid-ufESMzvlfS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufESMzvlfS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufESMzvlfS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufESMzvlfS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufESMzvlfS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufESMzvlfS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufESMzvlfS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufESMzvlfS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufESMzvlfS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufESMzvlfS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufESMzvlfS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufESMzvlfS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufESMzvlfS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufESMzvlfS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufESMzvlfS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufESMzvlfS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufESMzvlfS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufESMzvlfS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufESMzvlfS .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufESMzvlfS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufESMzvlfS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufESMzvlfS .navbar {
    height: 70px;
  }
  .cid-ufESMzvlfS .navbar.opened {
    height: auto;
  }
  .cid-ufESMzvlfS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufESMzPNfT {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ufESMzPNfT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESMzPNfT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESMzPNfT .row {
  justify-content: flex-start;
}
.cid-ufESMzPNfT .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ufESMzPNfT .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufESMzPNfT .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-ufESMzPNfT .image-wrapper {
  width: 100%;
}
.cid-ufESMzPNfT .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-ufESMzPNfT .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-ufESMzPNfT .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufESMzPNfT .mbr-text {
    margin-top: 45px;
  }
}
.cid-ufESMzPNfT .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-ufESMzPNfT .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-ufESMzPNfT .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-ufESMzPNfT .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-ufESMzPNfT .mbr-text,
.cid-ufESMzPNfT .mbr-section-btn {
  color: #d58001;
}
.cid-uOSyu8a79b {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSyu8a79b .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSyu8a79b .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSyu8a79b .mbr-section-title {
  color: #ffffff;
}
.cid-ufESMA7Ewp {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESMA7Ewp .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufESMA7Ewp .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufESMA7Ewp .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufESMA7Ewp .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufESMA7Ewp .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufESMA7Ewp .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufESMA7Ewp .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufESMA7Ewp .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufESMA7Ewp .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufESMA7Ewp .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufESMA7Ewp .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufESMA7Ewp .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufESMA7Ewp .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufESMA7Ewp .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufESMA7Ewp .card-wrap {
  position: relative;
}
.cid-ufESMA7Ewp .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufESMA7Ewp .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufESMA7Ewp .card-wrapper .item-card {
  padding: 0;
}
.cid-ufESMA7Ewp .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufESMA7Ewp .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufESMA7Ewp .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufESMA7Ewp .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufESMA7Ewp .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufESMA7Ewp .mbr-section-title {
  color: #275f73;
}
.cid-ufESMA7Ewp .mbr-link {
  color: #20232a;
}
.cid-ufESMA7Ewp .mbr-card-title {
  color: #fafafa;
}
.cid-ufESMA7Ewp .mbr-number {
  color: #fafafa;
}
.cid-ufESMA7Ewp .mbr-desc {
  color: #fafafa;
}
.cid-ufESMArByH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESMArByH .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufESMArByH .mbr-text {
  color: #000000;
}
.cid-ufESMArByH .mbr-section-title {
  color: #275f73;
}
.cid-ufESMCrivH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-ufESMCrivH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESMCrivH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESMCrivH .mbr-section-title {
  color: #ffffff;
}
.cid-uOSyrZmubC {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSyrZmubC .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSyrZmubC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSyrZmubC .mbr-section-title {
  color: #ffffff;
}
.cid-uOGG8iSU5U {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOGG8iSU5U .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOGG8iSU5U .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOGG8iSU5U .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOGG8iSU5U .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOGG8iSU5U .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOGG8iSU5U .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOGG8iSU5U .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOGG8iSU5U .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-uOGG8iSU5U .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOGG8iSU5U .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOGG8iSU5U .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOGG8iSU5U .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOGG8iSU5U .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOGG8iSU5U .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOGG8iSU5U .card-wrap {
  position: relative;
}
.cid-uOGG8iSU5U .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOGG8iSU5U .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOGG8iSU5U .card-wrapper .item-card {
  padding: 0;
}
.cid-uOGG8iSU5U .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOGG8iSU5U .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOGG8iSU5U .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOGG8iSU5U .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOGG8iSU5U .mbr-section-subtitle {
  color: #FF4712;
}
.cid-uOGG8iSU5U .mbr-section-title {
  color: #275f73;
}
.cid-uOGG8iSU5U .mbr-link {
  color: #20232a;
}
.cid-uOGG8iSU5U .mbr-card-title {
  color: #fafafa;
}
.cid-uOGG8iSU5U .mbr-number {
  color: #fafafa;
}
.cid-uOGG8iSU5U .mbr-desc {
  color: #fafafa;
}
.cid-uOGGjhawOB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOGGjhawOB .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-uOGGjhawOB .mbr-text {
  color: #000000;
}
.cid-uOGGjhawOB .mbr-section-title {
  color: #275f73;
}
.cid-uOGGlfBe3i {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uOGGlfBe3i .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOGGlfBe3i .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOGGlfBe3i .video-wrapper iframe {
  width: 100%;
}
.cid-uOGGlfBe3i .mbr-section-title,
.cid-uOGGlfBe3i .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOGGlfBe3i .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOGGlfBe3i .mbr-description {
  color: #275f73;
}
.cid-uOGGlfBe3i .mbr-text {
  color: #000000;
}
.cid-uOGGlfBe3i .mbr-section-subtitle {
  color: #275f73;
}
.cid-uOGGAIFzUU {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOGGAIFzUU .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-uOGGAIFzUU .mbr-text {
  color: #000000;
}
.cid-uOGGAIFzUU .mbr-section-title {
  color: #275f73;
}
.cid-uPfnrEbVnf {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uPfnrEbVnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPfnrEbVnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPfnrEbVnf .video-wrapper iframe {
  width: 100%;
}
.cid-uPfnrEbVnf .mbr-section-title,
.cid-uPfnrEbVnf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uPfnrEbVnf .text-wrapper {
    padding: 2rem;
  }
}
.cid-uPfnrEbVnf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-uPfnrEbVnf .mbr-description {
  color: #275f73;
}
.cid-uPfnrEbVnf .mbr-section-subtitle {
  color: #275f73;
}
.cid-uPfnrEbVnf .mbr-section-title {
  color: #bbbbbb;
}
.cid-uOSyp4mnA5 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSyp4mnA5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSyp4mnA5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSyp4mnA5 .mbr-section-title {
  color: #ffffff;
}
.cid-vmrwYM0Tjq {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vmrwYM0Tjq .image-wrapper {
  margin-bottom: 170px;
}
.cid-vmrwYM0Tjq .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vmrwYM0Tjq .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-vmrwYM0Tjq .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vmrwYM0Tjq .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-vmrwYM0Tjq .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-vmrwYM0Tjq .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-vmrwYM0Tjq .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-vmrwYM0Tjq .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-vmrwYM0Tjq .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-vmrwYM0Tjq .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-vmrwYM0Tjq .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-vmrwYM0Tjq .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-vmrwYM0Tjq .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-vmrwYM0Tjq .card-wrap {
  position: relative;
}
.cid-vmrwYM0Tjq .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-vmrwYM0Tjq .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-vmrwYM0Tjq .card-wrapper .item-card {
  padding: 0;
}
.cid-vmrwYM0Tjq .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-vmrwYM0Tjq .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-vmrwYM0Tjq .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-vmrwYM0Tjq .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-vmrwYM0Tjq .mbr-section-subtitle {
  color: #FF4712;
}
.cid-vmrwYM0Tjq .mbr-section-title {
  color: #275f73;
}
.cid-vmrwYM0Tjq .mbr-link {
  color: #20232a;
}
.cid-vmrwYM0Tjq .mbr-card-title {
  color: #fafafa;
}
.cid-vmrwYM0Tjq .mbr-number {
  color: #fafafa;
}
.cid-vmrwYM0Tjq .mbr-desc {
  color: #fafafa;
}
.cid-ufESMEKK5O {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESMEKK5O .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufESMEKK5O .mbr-text {
  color: #000000;
}
.cid-ufESMEKK5O .mbr-section-title {
  color: #275f73;
}
.cid-ufESMF88WH {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESMF88WH .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESMF88WH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESMF88WH .video-wrapper iframe {
  width: 100%;
}
.cid-ufESMF88WH .mbr-section-title,
.cid-ufESMF88WH .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufESMF88WH .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufESMF88WH .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ufESMF88WH .mbr-description {
  color: #275f73;
}
.cid-ufESMF88WH .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufESMF88WH .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufESMFV5Ys {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESMFV5Ys .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufESMFV5Ys .mbr-text {
  color: #000000;
}
.cid-ufESMFV5Ys .mbr-section-title {
  color: #275f73;
}
.cid-ufESMGijQr {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufESMGijQr .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESMGijQr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESMGijQr .video-wrapper iframe {
  width: 100%;
}
.cid-ufESMGijQr .mbr-section-title,
.cid-ufESMGijQr .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufESMGijQr .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufESMGijQr .mbr-text {
  color: #000000;
}
.cid-ufESMGijQr .mbr-description {
  color: #cf2f00;
}
.cid-ufESMGijQr .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufESMGijQr .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmJG0atcnf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJG0atcnf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJG0atcnf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJG0atcnf .mbr-section-title {
  color: #ffffff;
}
.cid-ufESMElaL0 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESMElaL0 .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufESMElaL0 .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufESMElaL0 .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufESMElaL0 .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufESMElaL0 .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufESMElaL0 .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufESMElaL0 .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufESMElaL0 .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufESMElaL0 .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufESMElaL0 .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufESMElaL0 .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufESMElaL0 .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufESMElaL0 .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufESMElaL0 .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufESMElaL0 .card-wrap {
  position: relative;
}
.cid-ufESMElaL0 .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufESMElaL0 .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufESMElaL0 .card-wrapper .item-card {
  padding: 0;
}
.cid-ufESMElaL0 .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufESMElaL0 .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufESMElaL0 .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufESMElaL0 .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufESMElaL0 .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufESMElaL0 .mbr-section-title {
  color: #275f73;
}
.cid-ufESMElaL0 .mbr-link {
  color: #20232a;
}
.cid-ufESMElaL0 .mbr-card-title {
  color: #fafafa;
}
.cid-ufESMElaL0 .mbr-number {
  color: #fafafa;
}
.cid-ufESMElaL0 .mbr-desc {
  color: #fafafa;
}
.cid-vmrxU4ONGT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #bbbbbb;
}
.cid-vmrxU4ONGT .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vmrxU4ONGT .mbr-text {
  color: #000000;
}
.cid-vmrxU4ONGT .mbr-section-title {
  color: #275f73;
}
.cid-vmJG9Fwaq1 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJG9Fwaq1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJG9Fwaq1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJG9Fwaq1 .mbr-section-title {
  color: #ffffff;
}
.cid-vp9bgFSFYf {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vp9bgFSFYf .content {
  display: flex;
  align-items: center;
}
.cid-vp9bgFSFYf .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-vp9bgFSFYf .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-vp9bgFSFYf .mbr-text {
  margin-bottom: 38px;
  color: #000000;
}
.cid-vp9bgFSFYf .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-vp9bgFSFYf .btn:hover {
  box-shadow: none;
}
.cid-vp9bgFSFYf .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-vp9bgFSFYf .image-wrapper {
    margin-top: 25px;
  }
}
.cid-vp9bgFSFYf .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-vp9bgFSFYf .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-vp9bgFSFYf .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-vp9bgFSFYf .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-vp9bgFSFYf .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-vp9bgFSFYf .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-vp9bgFSFYf .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-vp9bgFSFYf .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-vp9bgFSFYf .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-vp9bgFSFYf .mbr-iconfont {
  color: #ffffff;
}
.cid-vp9bgFSFYf .mbr-image-text {
  color: #ffffff;
}
.cid-vp9bgFSFYf .mbr-section-title,
.cid-vp9bgFSFYf .mbr-section-btn {
  color: #275f73;
}
.cid-vp9bjd3cvx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vp9bjd3cvx .mbr-fallback-image.disabled {
  display: none;
}
.cid-vp9bjd3cvx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vp9bjd3cvx .mbr-section-title {
  color: #ffffff;
}
.cid-vmr7OcdVoD {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr7OcdVoD .row {
  justify-content: center;
}
.cid-vmr7OcdVoD .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr7OcdVoD .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr7OcdVoD .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr7OcdVoD .card {
    margin-bottom: 30px;
  }
}
.cid-vmr7OcdVoD .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr7OcdVoD .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr7OcdVoD .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr7OcdVoD .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr7OcdVoD .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr7OcdVoD .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr7OcdVoD .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr7OcdVoD .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr7OcdVoD .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr7OcdVoD .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr7OcdVoD .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr7OcdVoD .mbr-button {
  color: #000000;
}
.cid-vmr7OcdVoD .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr7OcdVoD .mbr-date {
  color: #fafafa;
}
.cid-vmr7OcdVoD .mbr-link {
  color: #FFFFFF;
}
.cid-vmr7OcdVoD .mbr-card-title,
.cid-vmr7OcdVoD .mbr-card-title,
.cid-vmr7OcdVoD .card-button,
.cid-vmr7OcdVoD .mbr-date,
.cid-vmr7OcdVoD .mbr-link {
  text-align: left;
}
.cid-vmr7OcdVoD .mbr-section-title,
.cid-vmr7OcdVoD .mbr-section-btn {
  color: #eaeaea;
}
.cid-ufESMHLCf6 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-ufESMHLCf6 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESMHLCf6 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESMHLCf6 .mbr-section-title {
  color: #ffffff;
}
.cid-ufESMIe2Fo {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufESMIe2Fo .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufESMIe2Fo .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufESMIe2Fo .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufESMIe2Fo .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufESMIe2Fo .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufESMIe2Fo .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufESMIe2Fo .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufESMIe2Fo .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufESMIe2Fo .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufESMIe2Fo .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufESMIe2Fo .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufESMIe2Fo .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufESMIe2Fo .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufESMIe2Fo .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufESVGq38V {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufESVGq38V nav.navbar {
  position: fixed;
}
.cid-ufESVGq38V .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufESVGq38V .wrapper {
    padding: 0;
  }
}
.cid-ufESVGq38V .btn {
  border-radius: 30px;
}
.cid-ufESVGq38V .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufESVGq38V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufESVGq38V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufESVGq38V .dropdown-item:hover,
.cid-ufESVGq38V .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufESVGq38V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufESVGq38V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufESVGq38V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufESVGq38V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufESVGq38V .nav-link {
  position: relative;
}
.cid-ufESVGq38V .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufESVGq38V .dropdown-menu,
.cid-ufESVGq38V .navbar.opened {
  background: #232323 !important;
}
.cid-ufESVGq38V .nav-item:focus,
.cid-ufESVGq38V .nav-link:focus {
  outline: none;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufESVGq38V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufESVGq38V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufESVGq38V .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufESVGq38V .navbar.opened {
  transition: all 0.3s;
}
.cid-ufESVGq38V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufESVGq38V .navbar .navbar-logo img {
  width: auto;
}
.cid-ufESVGq38V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufESVGq38V .navbar.collapsed {
  justify-content: center;
}
.cid-ufESVGq38V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufESVGq38V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufESVGq38V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufESVGq38V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufESVGq38V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufESVGq38V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufESVGq38V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufESVGq38V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufESVGq38V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufESVGq38V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufESVGq38V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufESVGq38V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufESVGq38V .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufESVGq38V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufESVGq38V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufESVGq38V .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufESVGq38V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufESVGq38V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufESVGq38V .dropdown-item.active,
.cid-ufESVGq38V .dropdown-item:active {
  background-color: transparent;
}
.cid-ufESVGq38V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufESVGq38V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufESVGq38V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufESVGq38V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufESVGq38V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufESVGq38V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufESVGq38V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufESVGq38V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufESVGq38V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufESVGq38V .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufESVGq38V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufESVGq38V .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufESVGq38V .navbar {
    height: 70px;
  }
  .cid-ufESVGq38V .navbar.opened {
    height: auto;
  }
  .cid-ufESVGq38V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufESVGKFwG {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ufESVGKFwG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESVGKFwG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESVGKFwG .row {
  justify-content: flex-start;
}
.cid-ufESVGKFwG .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ufESVGKFwG .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufESVGKFwG .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-ufESVGKFwG .image-wrapper {
  width: 100%;
}
.cid-ufESVGKFwG .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-ufESVGKFwG .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-ufESVGKFwG .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufESVGKFwG .mbr-text {
    margin-top: 45px;
  }
}
.cid-ufESVGKFwG .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-ufESVGKFwG .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-ufESVGKFwG .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-ufESVGKFwG .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-ufESVGKFwG .mbr-text,
.cid-ufESVGKFwG .mbr-section-btn {
  color: #d58001;
}
.cid-uOSyyHVQTz {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSyyHVQTz .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSyyHVQTz .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSyyHVQTz .mbr-section-title {
  color: #ffffff;
}
.cid-ufESVH1cOK {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESVH1cOK .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufESVH1cOK .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufESVH1cOK .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufESVH1cOK .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufESVH1cOK .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufESVH1cOK .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufESVH1cOK .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufESVH1cOK .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #275f73;
}
@media (max-width: 992px) {
  .cid-ufESVH1cOK .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufESVH1cOK .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufESVH1cOK .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufESVH1cOK .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufESVH1cOK .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufESVH1cOK .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufESVH1cOK .card-wrap {
  position: relative;
}
.cid-ufESVH1cOK .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufESVH1cOK .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufESVH1cOK .card-wrapper .item-card {
  padding: 0;
}
.cid-ufESVH1cOK .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufESVH1cOK .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufESVH1cOK .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufESVH1cOK .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufESVH1cOK .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufESVH1cOK .mbr-section-title {
  color: #275f73;
}
.cid-ufESVH1cOK .mbr-link {
  color: #20232a;
}
.cid-ufESVH1cOK .mbr-card-title {
  color: #fafafa;
}
.cid-ufESVH1cOK .mbr-number {
  color: #fafafa;
}
.cid-ufESVH1cOK .mbr-desc {
  color: #fafafa;
}
.cid-ufESVIegMM {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-ufESVIegMM .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESVIegMM .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESVIegMM .mbr-section-title {
  color: #ffffff;
}
.cid-volax1UEQi {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-volax1UEQi .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-volax1UEQi .mbr-text {
  color: #000000;
}
.cid-volax1UEQi .mbr-section-title {
  color: #275f73;
}
.cid-uP94WtfGEu {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uP94WtfGEu .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-uP94WtfGEu .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-uP94WtfGEu .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-uP94WtfGEu .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uP94WtfGEu .btn:hover {
  box-shadow: none;
}
.cid-uP94WtfGEu .mbr-section-title,
.cid-uP94WtfGEu .mbr-section-btn {
  text-align: center;
}
.cid-uOSyBfI3wW {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSyBfI3wW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSyBfI3wW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSyBfI3wW .mbr-section-title {
  color: #ffffff;
}
.cid-ufESVIz4xE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESVIz4xE .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufESVIz4xE .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufESVIz4xE .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufESVIz4xE .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufESVIz4xE .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufESVIz4xE .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufESVIz4xE .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufESVIz4xE .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufESVIz4xE .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufESVIz4xE .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufESVIz4xE .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufESVIz4xE .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufESVIz4xE .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufESVIz4xE .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufESVIz4xE .card-wrap {
  position: relative;
}
.cid-ufESVIz4xE .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufESVIz4xE .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufESVIz4xE .card-wrapper .item-card {
  padding: 0;
}
.cid-ufESVIz4xE .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufESVIz4xE .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufESVIz4xE .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufESVIz4xE .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufESVIz4xE .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufESVIz4xE .mbr-section-title {
  color: #275f73;
}
.cid-ufESVIz4xE .mbr-link {
  color: #20232a;
}
.cid-ufESVIz4xE .mbr-card-title {
  color: #fafafa;
}
.cid-ufESVIz4xE .mbr-number {
  color: #fafafa;
}
.cid-ufESVIz4xE .mbr-desc {
  color: #fafafa;
}
.cid-ufESVIUtxT {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESVIUtxT .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufESVIUtxT .mbr-text {
  color: #000000;
}
.cid-ufESVIUtxT .mbr-section-title {
  color: #275f73;
}
.cid-ufESVJdz5v {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufESVJdz5v .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESVJdz5v .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESVJdz5v .video-wrapper iframe {
  width: 100%;
}
.cid-ufESVJdz5v .mbr-section-title,
.cid-ufESVJdz5v .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufESVJdz5v .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufESVJdz5v .mbr-description {
  color: #275f73;
}
.cid-ufESVJdz5v .mbr-text {
  color: #000000;
}
.cid-ufESVJdz5v .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufESVJdz5v .mbr-section-title {
  color: #bbbbbb;
}
.cid-vkp2g9n9ku {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vkp2g9n9ku .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vkp2g9n9ku .mbr-text {
  color: #000000;
}
.cid-vkp2g9n9ku .mbr-section-title {
  color: #275f73;
}
.cid-vkp2dlWrWn {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vkp2dlWrWn .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkp2dlWrWn .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkp2dlWrWn .video-wrapper iframe {
  width: 100%;
}
.cid-vkp2dlWrWn .mbr-section-title,
.cid-vkp2dlWrWn .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vkp2dlWrWn .text-wrapper {
    padding: 2rem;
  }
}
.cid-vkp2dlWrWn .mbr-description {
  color: #275f73;
}
.cid-vkp2dlWrWn .mbr-text {
  color: #000000;
}
.cid-vkp2dlWrWn .mbr-section-subtitle {
  color: #275f73;
}
.cid-vkp2dlWrWn .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufESVJyjSf {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ufESVJyjSf .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESVJyjSf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESVJyjSf .mbr-section-title {
  color: #ffffff;
}
.cid-ufESVJUn0V {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESVJUn0V .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufESVJUn0V .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufESVJUn0V .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufESVJUn0V .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufESVJUn0V .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufESVJUn0V .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufESVJUn0V .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufESVJUn0V .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufESVJUn0V .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufESVJUn0V .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufESVJUn0V .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufESVJUn0V .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufESVJUn0V .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufESVJUn0V .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufESVJUn0V .card-wrap {
  position: relative;
}
.cid-ufESVJUn0V .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufESVJUn0V .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufESVJUn0V .card-wrapper .item-card {
  padding: 0;
}
.cid-ufESVJUn0V .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufESVJUn0V .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufESVJUn0V .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufESVJUn0V .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufESVJUn0V .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufESVJUn0V .mbr-section-title {
  color: #275f73;
}
.cid-ufESVJUn0V .mbr-link {
  color: #20232a;
}
.cid-ufESVJUn0V .mbr-card-title {
  color: #fafafa;
}
.cid-ufESVJUn0V .mbr-number {
  color: #fafafa;
}
.cid-ufESVJUn0V .mbr-desc {
  color: #fafafa;
}
.cid-ufESVKiVBx {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESVKiVBx .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufESVKiVBx .mbr-text {
  color: #000000;
}
.cid-ufESVKiVBx .mbr-section-title {
  color: #275f73;
}
.cid-ufESVKDwRm {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufESVKDwRm .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESVKDwRm .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESVKDwRm .video-wrapper iframe {
  width: 100%;
}
.cid-ufESVKDwRm .mbr-section-title,
.cid-ufESVKDwRm .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufESVKDwRm .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufESVKDwRm .mbr-text {
  color: #000000;
}
.cid-ufESVKDwRm .mbr-description {
  color: #275f73;
}
.cid-ufESVKDwRm .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufESVKDwRm .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmrkPt6rou {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vmrkPt6rou .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vmrkPt6rou .mbr-text {
  color: #000000;
}
.cid-vmrkPt6rou .mbr-section-title {
  color: #275f73;
}
.cid-vmrkRCmEf4 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vmrkRCmEf4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmrkRCmEf4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmrkRCmEf4 .video-wrapper iframe {
  width: 100%;
}
.cid-vmrkRCmEf4 .mbr-section-title,
.cid-vmrkRCmEf4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vmrkRCmEf4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vmrkRCmEf4 .mbr-text {
  color: #000000;
}
.cid-vmrkRCmEf4 .mbr-description {
  color: #275f73;
}
.cid-vmrkRCmEf4 .mbr-section-subtitle {
  color: #275f73;
}
.cid-vmrkRCmEf4 .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufESVLm2sW {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufESVLm2sW .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufESVLm2sW .mbr-text {
  color: #000000;
}
.cid-ufESVLm2sW .mbr-section-title {
  color: #275f73;
}
.cid-ufESVLIL3k {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufESVLIL3k .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESVLIL3k .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESVLIL3k .video-wrapper iframe {
  width: 100%;
}
.cid-ufESVLIL3k .mbr-section-title,
.cid-ufESVLIL3k .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufESVLIL3k .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufESVLIL3k .mbr-text {
  color: #000000;
}
.cid-ufESVLIL3k .mbr-description {
  color: #275f73;
}
.cid-ufESVLIL3k .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufESVLIL3k .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmJMbLOmeR {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJMbLOmeR .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJMbLOmeR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJMbLOmeR .mbr-section-title {
  color: #ffffff;
}
.cid-vmr8tngMBb {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr8tngMBb .row {
  justify-content: center;
}
.cid-vmr8tngMBb .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr8tngMBb .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr8tngMBb .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr8tngMBb .card {
    margin-bottom: 30px;
  }
}
.cid-vmr8tngMBb .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr8tngMBb .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr8tngMBb .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr8tngMBb .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr8tngMBb .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr8tngMBb .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr8tngMBb .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr8tngMBb .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr8tngMBb .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr8tngMBb .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr8tngMBb .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr8tngMBb .mbr-button {
  color: #000000;
}
.cid-vmr8tngMBb .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr8tngMBb .mbr-date {
  color: #fafafa;
}
.cid-vmr8tngMBb .mbr-link {
  color: #FFFFFF;
}
.cid-vmr8tngMBb .mbr-card-title,
.cid-vmr8tngMBb .mbr-card-title,
.cid-vmr8tngMBb .card-button,
.cid-vmr8tngMBb .mbr-date,
.cid-vmr8tngMBb .mbr-link {
  text-align: left;
}
.cid-vmr8tngMBb .mbr-section-title,
.cid-vmr8tngMBb .mbr-section-btn {
  color: #eaeaea;
}
.cid-ufESVN5MNa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-ufESVN5MNa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufESVN5MNa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufESVN5MNa .mbr-section-title {
  color: #ffffff;
}
.cid-ufESVNxsVQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufESVNxsVQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufESVNxsVQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufESVNxsVQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufESVNxsVQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufESVNxsVQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufESVNxsVQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufESVNxsVQ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufESVNxsVQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufESVNxsVQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufESVNxsVQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufESVNxsVQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufESVNxsVQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufESVNxsVQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufESVNxsVQ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufET6hZozp {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufET6hZozp nav.navbar {
  position: fixed;
}
.cid-ufET6hZozp .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufET6hZozp .wrapper {
    padding: 0;
  }
}
.cid-ufET6hZozp .btn {
  border-radius: 30px;
}
.cid-ufET6hZozp .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufET6hZozp .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufET6hZozp .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufET6hZozp .dropdown-item:hover,
.cid-ufET6hZozp .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufET6hZozp .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufET6hZozp .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufET6hZozp .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufET6hZozp .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufET6hZozp .nav-link {
  position: relative;
}
.cid-ufET6hZozp .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufET6hZozp .dropdown-menu,
.cid-ufET6hZozp .navbar.opened {
  background: #232323 !important;
}
.cid-ufET6hZozp .nav-item:focus,
.cid-ufET6hZozp .nav-link:focus {
  outline: none;
}
.cid-ufET6hZozp .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufET6hZozp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufET6hZozp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufET6hZozp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufET6hZozp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufET6hZozp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufET6hZozp .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufET6hZozp .navbar.opened {
  transition: all 0.3s;
}
.cid-ufET6hZozp .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufET6hZozp .navbar .navbar-logo img {
  width: auto;
}
.cid-ufET6hZozp .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufET6hZozp .navbar.collapsed {
  justify-content: center;
}
.cid-ufET6hZozp .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufET6hZozp .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufET6hZozp .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufET6hZozp .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufET6hZozp .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufET6hZozp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufET6hZozp .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufET6hZozp .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufET6hZozp .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufET6hZozp .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufET6hZozp .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufET6hZozp .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufET6hZozp .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufET6hZozp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufET6hZozp .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufET6hZozp .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufET6hZozp .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufET6hZozp .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufET6hZozp .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufET6hZozp .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufET6hZozp .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufET6hZozp .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufET6hZozp .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufET6hZozp .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufET6hZozp .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufET6hZozp .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufET6hZozp .dropdown-item.active,
.cid-ufET6hZozp .dropdown-item:active {
  background-color: transparent;
}
.cid-ufET6hZozp .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufET6hZozp .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufET6hZozp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufET6hZozp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufET6hZozp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufET6hZozp .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufET6hZozp ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufET6hZozp .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufET6hZozp button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufET6hZozp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufET6hZozp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufET6hZozp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufET6hZozp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufET6hZozp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufET6hZozp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufET6hZozp nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufET6hZozp nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufET6hZozp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufET6hZozp .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufET6hZozp a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufET6hZozp .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufET6hZozp .navbar {
    height: 70px;
  }
  .cid-ufET6hZozp .navbar.opened {
    height: auto;
  }
  .cid-ufET6hZozp .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufET6iks8t {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ufET6iks8t .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET6iks8t .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET6iks8t .row {
  justify-content: flex-start;
}
.cid-ufET6iks8t .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ufET6iks8t .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufET6iks8t .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-ufET6iks8t .image-wrapper {
  width: 100%;
}
.cid-ufET6iks8t .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-ufET6iks8t .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-ufET6iks8t .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufET6iks8t .mbr-text {
    margin-top: 45px;
  }
}
.cid-ufET6iks8t .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-ufET6iks8t .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-ufET6iks8t .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-ufET6iks8t .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-ufET6iks8t .mbr-text,
.cid-ufET6iks8t .mbr-section-btn {
  color: #d58001;
}
.cid-ufET6jxZwR {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-ufET6jxZwR .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET6jxZwR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET6jxZwR .mbr-section-title {
  color: #ffffff;
}
.cid-ufET6jREDC {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-ufET6jREDC .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET6jREDC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET6jREDC .mbr-section-title {
  color: #ffffff;
}
.cid-uOLHJySWwv {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOLHJySWwv .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOLHJySWwv .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOLHJySWwv .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOLHJySWwv .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOLHJySWwv .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOLHJySWwv .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOLHJySWwv .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOLHJySWwv .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-uOLHJySWwv .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOLHJySWwv .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOLHJySWwv .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOLHJySWwv .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOLHJySWwv .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOLHJySWwv .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOLHJySWwv .card-wrap {
  position: relative;
}
.cid-uOLHJySWwv .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOLHJySWwv .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOLHJySWwv .card-wrapper .item-card {
  padding: 0;
}
.cid-uOLHJySWwv .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOLHJySWwv .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOLHJySWwv .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOLHJySWwv .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOLHJySWwv .mbr-section-subtitle {
  color: #275f73;
}
.cid-uOLHJySWwv .mbr-section-title {
  color: #275f73;
}
.cid-uOLHJySWwv .mbr-link {
  color: #20232a;
}
.cid-uOLHJySWwv .mbr-card-title {
  color: #fafafa;
}
.cid-uOLHJySWwv .mbr-number {
  color: #fafafa;
}
.cid-uOLHJySWwv .mbr-desc {
  color: #fafafa;
}
.cid-volkKPV5GB {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-volkKPV5GB .content {
  display: flex;
  align-items: center;
}
.cid-volkKPV5GB .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-volkKPV5GB .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-volkKPV5GB .mbr-text {
  margin-bottom: 38px;
  color: #000000;
  text-align: justify;
}
.cid-volkKPV5GB .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-volkKPV5GB .btn:hover {
  box-shadow: none;
}
.cid-volkKPV5GB .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-volkKPV5GB .image-wrapper {
    margin-top: 25px;
  }
}
.cid-volkKPV5GB .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-volkKPV5GB .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-volkKPV5GB .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-volkKPV5GB .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-volkKPV5GB .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-volkKPV5GB .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-volkKPV5GB .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-volkKPV5GB .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-volkKPV5GB .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-volkKPV5GB .mbr-iconfont {
  color: #ffffff;
}
.cid-volkKPV5GB .mbr-image-text {
  color: #ffffff;
}
.cid-volkKPV5GB .mbr-section-title,
.cid-volkKPV5GB .mbr-section-btn {
  color: #275f73;
}
.cid-uOSz8aAF8J {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSz8aAF8J .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSz8aAF8J .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSz8aAF8J .mbr-section-title {
  color: #ffffff;
}
.cid-ufET6kbx0i {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET6kbx0i .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufET6kbx0i .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufET6kbx0i .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufET6kbx0i .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufET6kbx0i .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufET6kbx0i .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufET6kbx0i .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufET6kbx0i .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufET6kbx0i .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufET6kbx0i .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufET6kbx0i .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufET6kbx0i .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufET6kbx0i .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufET6kbx0i .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufET6kbx0i .card-wrap {
  position: relative;
}
.cid-ufET6kbx0i .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufET6kbx0i .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufET6kbx0i .card-wrapper .item-card {
  padding: 0;
}
.cid-ufET6kbx0i .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufET6kbx0i .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufET6kbx0i .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufET6kbx0i .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufET6kbx0i .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufET6kbx0i .mbr-section-title {
  color: #275f73;
}
.cid-ufET6kbx0i .mbr-link {
  color: #20232a;
}
.cid-ufET6kbx0i .mbr-card-title {
  color: #fafafa;
}
.cid-ufET6kbx0i .mbr-number {
  color: #fafafa;
}
.cid-ufET6kbx0i .mbr-desc {
  color: #fafafa;
}
.cid-ufET6kw2MN {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET6kw2MN .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufET6kw2MN .mbr-text {
  color: #000000;
}
.cid-ufET6kw2MN .mbr-section-title {
  color: #275f73;
}
.cid-ufET6kPH27 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufET6kPH27 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET6kPH27 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET6kPH27 .video-wrapper iframe {
  width: 100%;
}
.cid-ufET6kPH27 .mbr-section-title,
.cid-ufET6kPH27 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufET6kPH27 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufET6kPH27 .mbr-description {
  color: #275f73;
}
.cid-ufET6kPH27 .mbr-text {
  color: #000000;
}
.cid-ufET6kPH27 .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufET6kPH27 .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufET6lcX20 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ufET6lcX20 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET6lcX20 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET6lcX20 .mbr-section-title {
  color: #ffffff;
}
.cid-ufET6lyC5Z {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET6lyC5Z .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufET6lyC5Z .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufET6lyC5Z .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufET6lyC5Z .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufET6lyC5Z .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufET6lyC5Z .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufET6lyC5Z .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufET6lyC5Z .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufET6lyC5Z .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufET6lyC5Z .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufET6lyC5Z .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufET6lyC5Z .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufET6lyC5Z .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufET6lyC5Z .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufET6lyC5Z .card-wrap {
  position: relative;
}
.cid-ufET6lyC5Z .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufET6lyC5Z .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufET6lyC5Z .card-wrapper .item-card {
  padding: 0;
}
.cid-ufET6lyC5Z .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufET6lyC5Z .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufET6lyC5Z .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufET6lyC5Z .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufET6lyC5Z .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufET6lyC5Z .mbr-section-title {
  color: #275f73;
}
.cid-ufET6lyC5Z .mbr-link {
  color: #20232a;
}
.cid-ufET6lyC5Z .mbr-card-title {
  color: #fafafa;
}
.cid-ufET6lyC5Z .mbr-number {
  color: #fafafa;
}
.cid-ufET6lyC5Z .mbr-desc {
  color: #fafafa;
}
.cid-ufET6lWYc0 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET6lWYc0 .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufET6lWYc0 .mbr-text {
  color: #000000;
}
.cid-ufET6lWYc0 .mbr-section-title {
  color: #275f73;
}
.cid-ufET6mhwVs {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufET6mhwVs .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET6mhwVs .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET6mhwVs .video-wrapper iframe {
  width: 100%;
}
.cid-ufET6mhwVs .mbr-section-title,
.cid-ufET6mhwVs .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufET6mhwVs .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufET6mhwVs .mbr-text {
  color: #000000;
}
.cid-ufET6mhwVs .mbr-description {
  color: #275f73;
}
.cid-ufET6mhwVs .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufET6mhwVs .mbr-section-title {
  color: #bbbbbb;
}
.cid-uOLMPeVpDo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOLMPeVpDo .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-uOLMPeVpDo .mbr-text {
  color: #000000;
}
.cid-uOLMPeVpDo .mbr-section-title {
  color: #275f73;
}
.cid-uOLMR9HwPo {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uOLMR9HwPo .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOLMR9HwPo .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOLMR9HwPo .video-wrapper iframe {
  width: 100%;
}
.cid-uOLMR9HwPo .mbr-section-title,
.cid-uOLMR9HwPo .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uOLMR9HwPo .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOLMR9HwPo .mbr-text {
  color: #000000;
}
.cid-uOLMR9HwPo .mbr-description {
  color: #275f73;
}
.cid-uOLMR9HwPo .mbr-section-subtitle {
  color: #275f73;
}
.cid-uOLMR9HwPo .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmJPab606s {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJPab606s .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJPab606s .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJPab606s .mbr-section-title {
  color: #ffffff;
}
.cid-vmr8DRUC3d {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr8DRUC3d .row {
  justify-content: center;
}
.cid-vmr8DRUC3d .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr8DRUC3d .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr8DRUC3d .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr8DRUC3d .card {
    margin-bottom: 30px;
  }
}
.cid-vmr8DRUC3d .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr8DRUC3d .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr8DRUC3d .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr8DRUC3d .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr8DRUC3d .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr8DRUC3d .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr8DRUC3d .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr8DRUC3d .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr8DRUC3d .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr8DRUC3d .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr8DRUC3d .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr8DRUC3d .mbr-button {
  color: #000000;
}
.cid-vmr8DRUC3d .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr8DRUC3d .mbr-date {
  color: #fafafa;
}
.cid-vmr8DRUC3d .mbr-link {
  color: #FFFFFF;
}
.cid-vmr8DRUC3d .mbr-card-title,
.cid-vmr8DRUC3d .mbr-card-title,
.cid-vmr8DRUC3d .card-button,
.cid-vmr8DRUC3d .mbr-date,
.cid-vmr8DRUC3d .mbr-link {
  text-align: left;
}
.cid-vmr8DRUC3d .mbr-section-title,
.cid-vmr8DRUC3d .mbr-section-btn {
  color: #eaeaea;
}
.cid-ufET6oJrfa {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-ufET6oJrfa .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET6oJrfa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET6oJrfa .mbr-section-title {
  color: #ffffff;
}
.cid-ufET6paFBJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufET6paFBJ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufET6paFBJ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufET6paFBJ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufET6paFBJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufET6paFBJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufET6paFBJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufET6paFBJ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufET6paFBJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufET6paFBJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufET6paFBJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufET6paFBJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufET6paFBJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufET6paFBJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufET6paFBJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufET8RRGOe {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufET8RRGOe nav.navbar {
  position: fixed;
}
.cid-ufET8RRGOe .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufET8RRGOe .wrapper {
    padding: 0;
  }
}
.cid-ufET8RRGOe .btn {
  border-radius: 30px;
}
.cid-ufET8RRGOe .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufET8RRGOe .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufET8RRGOe .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufET8RRGOe .dropdown-item:hover,
.cid-ufET8RRGOe .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufET8RRGOe .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufET8RRGOe .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufET8RRGOe .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufET8RRGOe .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufET8RRGOe .nav-link {
  position: relative;
}
.cid-ufET8RRGOe .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufET8RRGOe .dropdown-menu,
.cid-ufET8RRGOe .navbar.opened {
  background: #232323 !important;
}
.cid-ufET8RRGOe .nav-item:focus,
.cid-ufET8RRGOe .nav-link:focus {
  outline: none;
}
.cid-ufET8RRGOe .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufET8RRGOe .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufET8RRGOe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufET8RRGOe .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufET8RRGOe .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufET8RRGOe .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufET8RRGOe .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufET8RRGOe .navbar.opened {
  transition: all 0.3s;
}
.cid-ufET8RRGOe .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufET8RRGOe .navbar .navbar-logo img {
  width: auto;
}
.cid-ufET8RRGOe .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufET8RRGOe .navbar.collapsed {
  justify-content: center;
}
.cid-ufET8RRGOe .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufET8RRGOe .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufET8RRGOe .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufET8RRGOe .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufET8RRGOe .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufET8RRGOe .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufET8RRGOe .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufET8RRGOe .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufET8RRGOe .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufET8RRGOe .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufET8RRGOe .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufET8RRGOe .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufET8RRGOe .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufET8RRGOe .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufET8RRGOe .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufET8RRGOe .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufET8RRGOe .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufET8RRGOe .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufET8RRGOe .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufET8RRGOe .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufET8RRGOe .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufET8RRGOe .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufET8RRGOe .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufET8RRGOe .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufET8RRGOe .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufET8RRGOe .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufET8RRGOe .dropdown-item.active,
.cid-ufET8RRGOe .dropdown-item:active {
  background-color: transparent;
}
.cid-ufET8RRGOe .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufET8RRGOe .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufET8RRGOe .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufET8RRGOe .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufET8RRGOe .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufET8RRGOe .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufET8RRGOe ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufET8RRGOe .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufET8RRGOe button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufET8RRGOe button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufET8RRGOe button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufET8RRGOe button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufET8RRGOe button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufET8RRGOe button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufET8RRGOe nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufET8RRGOe nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufET8RRGOe nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufET8RRGOe nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufET8RRGOe .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufET8RRGOe a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufET8RRGOe .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufET8RRGOe .navbar {
    height: 70px;
  }
  .cid-ufET8RRGOe .navbar.opened {
    height: auto;
  }
  .cid-ufET8RRGOe .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufET8SbRhw {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ufET8SbRhw .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8SbRhw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8SbRhw .row {
  justify-content: flex-start;
}
.cid-ufET8SbRhw .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ufET8SbRhw .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufET8SbRhw .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-ufET8SbRhw .image-wrapper {
  width: 100%;
}
.cid-ufET8SbRhw .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-ufET8SbRhw .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-ufET8SbRhw .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufET8SbRhw .mbr-text {
    margin-top: 45px;
  }
}
.cid-ufET8SbRhw .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-ufET8SbRhw .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-ufET8SbRhw .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-ufET8SbRhw .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-ufET8SbRhw .mbr-text,
.cid-ufET8SbRhw .mbr-section-btn {
  color: #d58001;
}
.cid-ufET8TmPGW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-ufET8TmPGW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8TmPGW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8TmPGW .mbr-section-title {
  color: #ffffff;
}
.cid-ufET8TGT81 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-ufET8TGT81 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8TGT81 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8TGT81 .mbr-section-title {
  color: #ffffff;
}
.cid-uOLOJM8DCE {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOLOJM8DCE .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOLOJM8DCE .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOLOJM8DCE .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOLOJM8DCE .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOLOJM8DCE .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOLOJM8DCE .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOLOJM8DCE .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOLOJM8DCE .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #275f73;
}
@media (max-width: 992px) {
  .cid-uOLOJM8DCE .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOLOJM8DCE .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOLOJM8DCE .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOLOJM8DCE .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOLOJM8DCE .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOLOJM8DCE .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOLOJM8DCE .card-wrap {
  position: relative;
}
.cid-uOLOJM8DCE .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOLOJM8DCE .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOLOJM8DCE .card-wrapper .item-card {
  padding: 0;
}
.cid-uOLOJM8DCE .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOLOJM8DCE .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOLOJM8DCE .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOLOJM8DCE .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOLOJM8DCE .mbr-section-subtitle {
  color: #FF4712;
}
.cid-uOLOJM8DCE .mbr-section-title {
  color: #275f73;
}
.cid-uOLOJM8DCE .mbr-link {
  color: #20232a;
}
.cid-uOLOJM8DCE .mbr-card-title {
  color: #fafafa;
}
.cid-uOLOJM8DCE .mbr-number {
  color: #fafafa;
}
.cid-uOLOJM8DCE .mbr-desc {
  color: #fafafa;
}
.cid-vmrt69rmke {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vmrt69rmke .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vmrt69rmke .mbr-text {
  color: #000000;
}
.cid-vmrt69rmke .mbr-section-title {
  color: #275f73;
}
.cid-uOSEWDiF9q {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSEWDiF9q .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSEWDiF9q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSEWDiF9q .mbr-section-title {
  color: #ffffff;
}
.cid-ufET8U2Udl {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET8U2Udl .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufET8U2Udl .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufET8U2Udl .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufET8U2Udl .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufET8U2Udl .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufET8U2Udl .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufET8U2Udl .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufET8U2Udl .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufET8U2Udl .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufET8U2Udl .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufET8U2Udl .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufET8U2Udl .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufET8U2Udl .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufET8U2Udl .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufET8U2Udl .card-wrap {
  position: relative;
}
.cid-ufET8U2Udl .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufET8U2Udl .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufET8U2Udl .card-wrapper .item-card {
  padding: 0;
}
.cid-ufET8U2Udl .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufET8U2Udl .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufET8U2Udl .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufET8U2Udl .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufET8U2Udl .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufET8U2Udl .mbr-section-title {
  color: #275f73;
}
.cid-ufET8U2Udl .mbr-link {
  color: #20232a;
}
.cid-ufET8U2Udl .mbr-card-title {
  color: #fafafa;
}
.cid-ufET8U2Udl .mbr-number {
  color: #fafafa;
}
.cid-ufET8U2Udl .mbr-desc {
  color: #fafafa;
}
.cid-ufET8UoCSh {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET8UoCSh .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufET8UoCSh .mbr-text {
  color: #000000;
}
.cid-ufET8UoCSh .mbr-section-title {
  color: #275f73;
}
.cid-ufET8UGzMd {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufET8UGzMd .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8UGzMd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8UGzMd .video-wrapper iframe {
  width: 100%;
}
.cid-ufET8UGzMd .mbr-section-title,
.cid-ufET8UGzMd .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufET8UGzMd .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufET8UGzMd .mbr-description {
  color: #275f73;
}
.cid-ufET8UGzMd .mbr-text {
  color: #000000;
}
.cid-ufET8UGzMd .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufET8UGzMd .mbr-section-title {
  color: #bbbbbb;
}
.cid-vkzwr3VMcn {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vkzwr3VMcn .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-vkzwr3VMcn .mbr-text {
  color: #000000;
}
.cid-vkzwr3VMcn .mbr-section-title {
  color: #275f73;
}
.cid-vkzwuEqeBF {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vkzwuEqeBF .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkzwuEqeBF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkzwuEqeBF .video-wrapper iframe {
  width: 100%;
}
.cid-vkzwuEqeBF .mbr-section-title,
.cid-vkzwuEqeBF .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vkzwuEqeBF .text-wrapper {
    padding: 2rem;
  }
}
.cid-vkzwuEqeBF .mbr-description {
  color: #275f73;
}
.cid-vkzwuEqeBF .mbr-text {
  color: #000000;
}
.cid-vkzwuEqeBF .mbr-section-subtitle {
  color: #275f73;
}
.cid-vkzwuEqeBF .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufET8V2OQT {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ufET8V2OQT .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8V2OQT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8V2OQT .mbr-section-title {
  color: #ffffff;
}
.cid-ufET8Voqkx {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET8Voqkx .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufET8Voqkx .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufET8Voqkx .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufET8Voqkx .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufET8Voqkx .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufET8Voqkx .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufET8Voqkx .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufET8Voqkx .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufET8Voqkx .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufET8Voqkx .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufET8Voqkx .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufET8Voqkx .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufET8Voqkx .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufET8Voqkx .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufET8Voqkx .card-wrap {
  position: relative;
}
.cid-ufET8Voqkx .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufET8Voqkx .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufET8Voqkx .card-wrapper .item-card {
  padding: 0;
}
.cid-ufET8Voqkx .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufET8Voqkx .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufET8Voqkx .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufET8Voqkx .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufET8Voqkx .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufET8Voqkx .mbr-section-title {
  color: #275f73;
}
.cid-ufET8Voqkx .mbr-link {
  color: #20232a;
}
.cid-ufET8Voqkx .mbr-card-title {
  color: #fafafa;
}
.cid-ufET8Voqkx .mbr-number {
  color: #fafafa;
}
.cid-ufET8Voqkx .mbr-desc {
  color: #fafafa;
}
.cid-ufET8VL8eo {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET8VL8eo .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufET8VL8eo .mbr-text {
  color: #000000;
}
.cid-ufET8VL8eo .mbr-section-title {
  color: #275f73;
}
.cid-ufET8W7nXq {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufET8W7nXq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8W7nXq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8W7nXq .video-wrapper iframe {
  width: 100%;
}
.cid-ufET8W7nXq .mbr-section-title,
.cid-ufET8W7nXq .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufET8W7nXq .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufET8W7nXq .mbr-text {
  color: #000000;
}
.cid-ufET8W7nXq .mbr-description {
  color: #275f73;
}
.cid-ufET8W7nXq .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufET8W7nXq .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufET8WQt9s {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufET8WQt9s .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufET8WQt9s .mbr-text {
  color: #000000;
}
.cid-ufET8WQt9s .mbr-section-title {
  color: #275f73;
}
.cid-ufET8XbMKc {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufET8XbMKc .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8XbMKc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8XbMKc .video-wrapper iframe {
  width: 100%;
}
.cid-ufET8XbMKc .mbr-section-title,
.cid-ufET8XbMKc .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufET8XbMKc .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufET8XbMKc .mbr-text {
  color: #000000;
}
.cid-ufET8XbMKc .mbr-description {
  color: #275f73;
}
.cid-ufET8XbMKc .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufET8XbMKc .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmJPFp7kN4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJPFp7kN4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJPFp7kN4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJPFp7kN4 .mbr-section-title {
  color: #ffffff;
}
.cid-vmr8MiRjxX {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr8MiRjxX .row {
  justify-content: center;
}
.cid-vmr8MiRjxX .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr8MiRjxX .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr8MiRjxX .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr8MiRjxX .card {
    margin-bottom: 30px;
  }
}
.cid-vmr8MiRjxX .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr8MiRjxX .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr8MiRjxX .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr8MiRjxX .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr8MiRjxX .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr8MiRjxX .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr8MiRjxX .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr8MiRjxX .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr8MiRjxX .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr8MiRjxX .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr8MiRjxX .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr8MiRjxX .mbr-button {
  color: #000000;
}
.cid-vmr8MiRjxX .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr8MiRjxX .mbr-date {
  color: #fafafa;
}
.cid-vmr8MiRjxX .mbr-link {
  color: #FFFFFF;
}
.cid-vmr8MiRjxX .mbr-card-title,
.cid-vmr8MiRjxX .mbr-card-title,
.cid-vmr8MiRjxX .card-button,
.cid-vmr8MiRjxX .mbr-date,
.cid-vmr8MiRjxX .mbr-link {
  text-align: left;
}
.cid-vmr8MiRjxX .mbr-section-title,
.cid-vmr8MiRjxX .mbr-section-btn {
  color: #eaeaea;
}
.cid-ufET8XAthG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-ufET8XAthG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufET8XAthG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufET8XAthG .mbr-section-title {
  color: #ffffff;
}
.cid-ufET8Z0f1N {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufET8Z0f1N .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufET8Z0f1N .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufET8Z0f1N .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufET8Z0f1N .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufET8Z0f1N .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufET8Z0f1N .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufET8Z0f1N .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufET8Z0f1N .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufET8Z0f1N .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufET8Z0f1N .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufET8Z0f1N .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufET8Z0f1N .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufET8Z0f1N .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufET8Z0f1N .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufETc6NYl0 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufETc6NYl0 nav.navbar {
  position: fixed;
}
.cid-ufETc6NYl0 .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufETc6NYl0 .wrapper {
    padding: 0;
  }
}
.cid-ufETc6NYl0 .btn {
  border-radius: 30px;
}
.cid-ufETc6NYl0 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufETc6NYl0 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufETc6NYl0 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufETc6NYl0 .dropdown-item:hover,
.cid-ufETc6NYl0 .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufETc6NYl0 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufETc6NYl0 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufETc6NYl0 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufETc6NYl0 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufETc6NYl0 .nav-link {
  position: relative;
}
.cid-ufETc6NYl0 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufETc6NYl0 .dropdown-menu,
.cid-ufETc6NYl0 .navbar.opened {
  background: #232323 !important;
}
.cid-ufETc6NYl0 .nav-item:focus,
.cid-ufETc6NYl0 .nav-link:focus {
  outline: none;
}
.cid-ufETc6NYl0 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufETc6NYl0 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufETc6NYl0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufETc6NYl0 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufETc6NYl0 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufETc6NYl0 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufETc6NYl0 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufETc6NYl0 .navbar.opened {
  transition: all 0.3s;
}
.cid-ufETc6NYl0 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufETc6NYl0 .navbar .navbar-logo img {
  width: auto;
}
.cid-ufETc6NYl0 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufETc6NYl0 .navbar.collapsed {
  justify-content: center;
}
.cid-ufETc6NYl0 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufETc6NYl0 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufETc6NYl0 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufETc6NYl0 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufETc6NYl0 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufETc6NYl0 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufETc6NYl0 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufETc6NYl0 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufETc6NYl0 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufETc6NYl0 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufETc6NYl0 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufETc6NYl0 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufETc6NYl0 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufETc6NYl0 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufETc6NYl0 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufETc6NYl0 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufETc6NYl0 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufETc6NYl0 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufETc6NYl0 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufETc6NYl0 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufETc6NYl0 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufETc6NYl0 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufETc6NYl0 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufETc6NYl0 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufETc6NYl0 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufETc6NYl0 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufETc6NYl0 .dropdown-item.active,
.cid-ufETc6NYl0 .dropdown-item:active {
  background-color: transparent;
}
.cid-ufETc6NYl0 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufETc6NYl0 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufETc6NYl0 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufETc6NYl0 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufETc6NYl0 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufETc6NYl0 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufETc6NYl0 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufETc6NYl0 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufETc6NYl0 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufETc6NYl0 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufETc6NYl0 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufETc6NYl0 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufETc6NYl0 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufETc6NYl0 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufETc6NYl0 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufETc6NYl0 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufETc6NYl0 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufETc6NYl0 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufETc6NYl0 .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufETc6NYl0 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufETc6NYl0 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufETc6NYl0 .navbar {
    height: 70px;
  }
  .cid-ufETc6NYl0 .navbar.opened {
    height: auto;
  }
  .cid-ufETc6NYl0 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufETc77BGU {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ufETc77BGU .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETc77BGU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETc77BGU .row {
  justify-content: flex-start;
}
.cid-ufETc77BGU .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ufETc77BGU .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufETc77BGU .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-ufETc77BGU .image-wrapper {
  width: 100%;
}
.cid-ufETc77BGU .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-ufETc77BGU .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-ufETc77BGU .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufETc77BGU .mbr-text {
    margin-top: 45px;
  }
}
.cid-ufETc77BGU .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-ufETc77BGU .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-ufETc77BGU .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-ufETc77BGU .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-ufETc77BGU .mbr-text,
.cid-ufETc77BGU .mbr-section-btn {
  color: #d58001;
}
.cid-ugfLPPpDkx {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ugfLPPpDkx .mbr-fallback-image.disabled {
  display: none;
}
.cid-ugfLPPpDkx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ugfLPPpDkx .mbr-section-title {
  color: #ffffff;
}
.cid-ufETc7otQw {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETc7otQw .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufETc7otQw .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufETc7otQw .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufETc7otQw .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufETc7otQw .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufETc7otQw .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufETc7otQw .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufETc7otQw .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #275f73;
}
@media (max-width: 992px) {
  .cid-ufETc7otQw .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufETc7otQw .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufETc7otQw .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufETc7otQw .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufETc7otQw .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufETc7otQw .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufETc7otQw .card-wrap {
  position: relative;
}
.cid-ufETc7otQw .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufETc7otQw .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufETc7otQw .card-wrapper .item-card {
  padding: 0;
}
.cid-ufETc7otQw .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufETc7otQw .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufETc7otQw .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufETc7otQw .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufETc7otQw .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufETc7otQw .mbr-section-title {
  color: #275f73;
}
.cid-ufETc7otQw .mbr-link {
  color: #20232a;
}
.cid-ufETc7otQw .mbr-card-title {
  color: #fafafa;
}
.cid-ufETc7otQw .mbr-number {
  color: #fafafa;
}
.cid-ufETc7otQw .mbr-desc {
  color: #fafafa;
}
.cid-ufETc7Iug9 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETc7Iug9 .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-ufETc7Iug9 .mbr-text {
  color: #275f73;
}
.cid-ufETc7Iug9 .mbr-section-title {
  color: #275f73;
}
.cid-ufETc8kwwW {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-ufETc8kwwW .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETc8kwwW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETc8kwwW .mbr-section-title {
  color: #ffffff;
}
.cid-ufETc8EXUg {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-ufETc8EXUg .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETc8EXUg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETc8EXUg .mbr-section-title {
  color: #ffffff;
}
.cid-ufETc8YLm3 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETc8YLm3 .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufETc8YLm3 .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufETc8YLm3 .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufETc8YLm3 .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufETc8YLm3 .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufETc8YLm3 .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufETc8YLm3 .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufETc8YLm3 .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufETc8YLm3 .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufETc8YLm3 .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufETc8YLm3 .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufETc8YLm3 .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufETc8YLm3 .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufETc8YLm3 .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufETc8YLm3 .card-wrap {
  position: relative;
}
.cid-ufETc8YLm3 .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufETc8YLm3 .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufETc8YLm3 .card-wrapper .item-card {
  padding: 0;
}
.cid-ufETc8YLm3 .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufETc8YLm3 .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufETc8YLm3 .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufETc8YLm3 .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufETc8YLm3 .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufETc8YLm3 .mbr-section-title {
  color: #275f73;
}
.cid-ufETc8YLm3 .mbr-link {
  color: #20232a;
}
.cid-ufETc8YLm3 .mbr-card-title {
  color: #fafafa;
}
.cid-ufETc8YLm3 .mbr-number {
  color: #fafafa;
}
.cid-ufETc8YLm3 .mbr-desc {
  color: #fafafa;
}
.cid-ufETc9mE2o {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETc9mE2o .mbr-section-subtitle {
  color: #ff6c42;
  text-align: right;
}
.cid-ufETc9mE2o .mbr-text {
  color: #000000;
}
.cid-ufETc9mE2o .mbr-section-title {
  color: #275f73;
}
.cid-ug4wVwySZV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ug4wVwySZV .mbr-fallback-image.disabled {
  display: none;
}
.cid-ug4wVwySZV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ug4wVwySZV .video-wrapper iframe {
  width: 100%;
}
.cid-ug4wVwySZV .mbr-section-title,
.cid-ug4wVwySZV .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ug4wVwySZV .text-wrapper {
    padding: 2rem;
  }
}
.cid-ug4wVwySZV .mbr-text {
  color: #000000;
}
.cid-ug4wVwySZV .mbr-description {
  color: #275f73;
}
.cid-ug4wVwySZV .mbr-section-subtitle {
  color: #275f73;
}
.cid-ug4wVwySZV .mbr-section-title {
  color: #bbbbbb;
}
.cid-vkzOwtVt6P {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vkzOwtVt6P .mbr-section-subtitle {
  color: #ff6c42;
  text-align: right;
}
.cid-vkzOwtVt6P .mbr-text {
  color: #000000;
}
.cid-vkzOwtVt6P .mbr-section-title {
  color: #275f73;
}
.cid-vkzOxRzYFt {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vkzOxRzYFt .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkzOxRzYFt .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkzOxRzYFt .video-wrapper iframe {
  width: 100%;
}
.cid-vkzOxRzYFt .mbr-section-title,
.cid-vkzOxRzYFt .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vkzOxRzYFt .text-wrapper {
    padding: 2rem;
  }
}
.cid-vkzOxRzYFt .mbr-text {
  color: #000000;
}
.cid-vkzOxRzYFt .mbr-description {
  color: #275f73;
}
.cid-vkzOxRzYFt .mbr-section-subtitle {
  color: #275f73;
}
.cid-vkzOxRzYFt .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufETca1tBO {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ufETca1tBO .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETca1tBO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETca1tBO .mbr-section-title {
  color: #ffffff;
}
.cid-ufETcanH28 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETcanH28 .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufETcanH28 .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufETcanH28 .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufETcanH28 .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufETcanH28 .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufETcanH28 .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufETcanH28 .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufETcanH28 .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufETcanH28 .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufETcanH28 .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufETcanH28 .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufETcanH28 .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufETcanH28 .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufETcanH28 .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufETcanH28 .card-wrap {
  position: relative;
}
.cid-ufETcanH28 .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufETcanH28 .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufETcanH28 .card-wrapper .item-card {
  padding: 0;
}
.cid-ufETcanH28 .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufETcanH28 .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufETcanH28 .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufETcanH28 .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufETcanH28 .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufETcanH28 .mbr-section-title {
  color: #275f73;
}
.cid-ufETcanH28 .mbr-link {
  color: #20232a;
}
.cid-ufETcanH28 .mbr-card-title {
  color: #fafafa;
}
.cid-ufETcanH28 .mbr-number {
  color: #fafafa;
}
.cid-ufETcanH28 .mbr-desc {
  color: #fafafa;
}
.cid-ufETcaLPC4 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETcaLPC4 .mbr-section-subtitle {
  color: #ff6c42;
  text-align: right;
}
.cid-ufETcaLPC4 .mbr-text {
  color: #000000;
}
.cid-ufETcaLPC4 .mbr-section-title {
  color: #275f73;
}
.cid-ufETcb6Xb7 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufETcb6Xb7 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETcb6Xb7 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETcb6Xb7 .video-wrapper iframe {
  width: 100%;
}
.cid-ufETcb6Xb7 .mbr-section-title,
.cid-ufETcb6Xb7 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufETcb6Xb7 .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufETcb6Xb7 .mbr-text {
  color: #000000;
}
.cid-ufETcb6Xb7 .mbr-description {
  color: #275f73;
}
.cid-ufETcb6Xb7 .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufETcb6Xb7 .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufETcbRwRG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETcbRwRG .mbr-section-subtitle {
  color: #ff6c42;
  text-align: right;
}
.cid-ufETcbRwRG .mbr-text {
  color: #000000;
}
.cid-ufETcbRwRG .mbr-section-title {
  color: #275f73;
}
.cid-ufETccdHqK {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-ufETccdHqK .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETccdHqK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETccdHqK .video-wrapper iframe {
  width: 100%;
}
.cid-ufETccdHqK .mbr-section-title,
.cid-ufETccdHqK .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-ufETccdHqK .text-wrapper {
    padding: 2rem;
  }
}
.cid-ufETccdHqK .mbr-text {
  color: #000000;
}
.cid-ufETccdHqK .mbr-description {
  color: #275f73;
}
.cid-ufETccdHqK .mbr-section-subtitle {
  color: #275f73;
}
.cid-ufETccdHqK .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmJPZikm3C {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmJPZikm3C .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmJPZikm3C .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmJPZikm3C .mbr-section-title {
  color: #ffffff;
}
.cid-vmr95bOfb9 {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr95bOfb9 .row {
  justify-content: center;
}
.cid-vmr95bOfb9 .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr95bOfb9 .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr95bOfb9 .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr95bOfb9 .card {
    margin-bottom: 30px;
  }
}
.cid-vmr95bOfb9 .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr95bOfb9 .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr95bOfb9 .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr95bOfb9 .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr95bOfb9 .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr95bOfb9 .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr95bOfb9 .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr95bOfb9 .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr95bOfb9 .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr95bOfb9 .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr95bOfb9 .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr95bOfb9 .mbr-button {
  color: #000000;
}
.cid-vmr95bOfb9 .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr95bOfb9 .mbr-date {
  color: #fafafa;
}
.cid-vmr95bOfb9 .mbr-link {
  color: #FFFFFF;
}
.cid-vmr95bOfb9 .mbr-card-title,
.cid-vmr95bOfb9 .mbr-card-title,
.cid-vmr95bOfb9 .card-button,
.cid-vmr95bOfb9 .mbr-date,
.cid-vmr95bOfb9 .mbr-link {
  text-align: left;
}
.cid-vmr95bOfb9 .mbr-section-title,
.cid-vmr95bOfb9 .mbr-section-btn {
  color: #eaeaea;
}
.cid-ufETccCXbG {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-ufETccCXbG .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETccCXbG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETccCXbG .mbr-section-title {
  color: #ffffff;
}
.cid-ufETce4Cpn {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufETce4Cpn .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufETce4Cpn .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufETce4Cpn .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufETce4Cpn .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufETce4Cpn .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufETce4Cpn .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufETce4Cpn .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufETce4Cpn .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufETce4Cpn .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufETce4Cpn .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufETce4Cpn .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufETce4Cpn .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufETce4Cpn .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufETce4Cpn .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufETen4pS3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufETen4pS3 nav.navbar {
  position: fixed;
}
.cid-ufETen4pS3 .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufETen4pS3 .wrapper {
    padding: 0;
  }
}
.cid-ufETen4pS3 .btn {
  border-radius: 30px;
}
.cid-ufETen4pS3 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufETen4pS3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufETen4pS3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufETen4pS3 .dropdown-item:hover,
.cid-ufETen4pS3 .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufETen4pS3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufETen4pS3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufETen4pS3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufETen4pS3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufETen4pS3 .nav-link {
  position: relative;
}
.cid-ufETen4pS3 .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufETen4pS3 .dropdown-menu,
.cid-ufETen4pS3 .navbar.opened {
  background: #232323 !important;
}
.cid-ufETen4pS3 .nav-item:focus,
.cid-ufETen4pS3 .nav-link:focus {
  outline: none;
}
.cid-ufETen4pS3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufETen4pS3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufETen4pS3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufETen4pS3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufETen4pS3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufETen4pS3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufETen4pS3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufETen4pS3 .navbar.opened {
  transition: all 0.3s;
}
.cid-ufETen4pS3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufETen4pS3 .navbar .navbar-logo img {
  width: auto;
}
.cid-ufETen4pS3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufETen4pS3 .navbar.collapsed {
  justify-content: center;
}
.cid-ufETen4pS3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufETen4pS3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufETen4pS3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufETen4pS3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufETen4pS3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufETen4pS3 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufETen4pS3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufETen4pS3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufETen4pS3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufETen4pS3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufETen4pS3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufETen4pS3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufETen4pS3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufETen4pS3 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufETen4pS3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufETen4pS3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufETen4pS3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufETen4pS3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufETen4pS3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufETen4pS3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufETen4pS3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufETen4pS3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufETen4pS3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufETen4pS3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufETen4pS3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufETen4pS3 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufETen4pS3 .dropdown-item.active,
.cid-ufETen4pS3 .dropdown-item:active {
  background-color: transparent;
}
.cid-ufETen4pS3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufETen4pS3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufETen4pS3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufETen4pS3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufETen4pS3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufETen4pS3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufETen4pS3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufETen4pS3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufETen4pS3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufETen4pS3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufETen4pS3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufETen4pS3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufETen4pS3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufETen4pS3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufETen4pS3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufETen4pS3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufETen4pS3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufETen4pS3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufETen4pS3 .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufETen4pS3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufETen4pS3 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufETen4pS3 .navbar {
    height: 70px;
  }
  .cid-ufETen4pS3 .navbar.opened {
    height: auto;
  }
  .cid-ufETen4pS3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ufETenpEY9 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-ufETenpEY9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETenpEY9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETenpEY9 .row {
  justify-content: flex-start;
}
.cid-ufETenpEY9 .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-ufETenpEY9 .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufETenpEY9 .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-ufETenpEY9 .image-wrapper {
  width: 100%;
}
.cid-ufETenpEY9 .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-ufETenpEY9 .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-ufETenpEY9 .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-ufETenpEY9 .mbr-text {
    margin-top: 45px;
  }
}
.cid-ufETenpEY9 .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-ufETenpEY9 .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-ufETenpEY9 .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-ufETenpEY9 .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-ufETenpEY9 .mbr-text,
.cid-ufETenpEY9 .mbr-section-btn {
  color: #d58001;
}
.cid-ufETeooaTD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-ufETeooaTD .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETeooaTD .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETeooaTD .mbr-section-title {
  color: #ffffff;
}
.cid-ufETep27Yu {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-ufETep27Yu .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETep27Yu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETep27Yu .mbr-section-title {
  color: #ffffff;
}
.cid-uOMdidWQeW {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOMdidWQeW .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOMdidWQeW .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOMdidWQeW .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOMdidWQeW .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOMdidWQeW .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOMdidWQeW .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOMdidWQeW .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOMdidWQeW .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-uOMdidWQeW .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOMdidWQeW .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOMdidWQeW .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOMdidWQeW .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOMdidWQeW .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOMdidWQeW .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOMdidWQeW .card-wrap {
  position: relative;
}
.cid-uOMdidWQeW .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOMdidWQeW .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOMdidWQeW .card-wrapper .item-card {
  padding: 0;
}
.cid-uOMdidWQeW .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOMdidWQeW .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOMdidWQeW .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOMdidWQeW .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOMdidWQeW .mbr-section-subtitle {
  color: #FF4712;
}
.cid-uOMdidWQeW .mbr-section-title {
  color: #275f73;
}
.cid-uOMdidWQeW .mbr-link {
  color: #20232a;
}
.cid-uOMdidWQeW .mbr-card-title {
  color: #fafafa;
}
.cid-uOMdidWQeW .mbr-number {
  color: #fafafa;
}
.cid-uOMdidWQeW .mbr-desc {
  color: #fafafa;
}
.cid-uOMdu7AXU3 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOMdu7AXU3 .mbr-section-subtitle {
  color: #ffa41d;
}
.cid-uOMdu7AXU3 .mbr-text {
  color: #000000;
}
.cid-uOMdu7AXU3 .mbr-section-title {
  color: #275f73;
}
.cid-vmrblMJybV {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vmrblMJybV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmrblMJybV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmrblMJybV .video-wrapper iframe {
  width: 100%;
}
.cid-vmrblMJybV .mbr-section-title,
.cid-vmrblMJybV .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vmrblMJybV .text-wrapper {
    padding: 2rem;
  }
}
.cid-vmrblMJybV .mbr-text {
  color: #000000;
}
.cid-vmrblMJybV .mbr-description {
  color: #275f73;
}
.cid-vmrblMJybV .mbr-section-subtitle {
  color: #275f73;
}
.cid-vmrblMJybV .mbr-section-title {
  color: #bbbbbb;
}
.cid-ufETereVMp {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-ufETereVMp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETereVMp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETereVMp .mbr-section-title {
  color: #ffffff;
}
.cid-ufETerDttX {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-ufETerDttX .image-wrapper {
  margin-bottom: 170px;
}
.cid-ufETerDttX .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-ufETerDttX .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-ufETerDttX .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-ufETerDttX .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-ufETerDttX .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-ufETerDttX .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-ufETerDttX .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-ufETerDttX .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-ufETerDttX .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-ufETerDttX .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-ufETerDttX .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-ufETerDttX .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-ufETerDttX .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-ufETerDttX .card-wrap {
  position: relative;
}
.cid-ufETerDttX .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-ufETerDttX .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-ufETerDttX .card-wrapper .item-card {
  padding: 0;
}
.cid-ufETerDttX .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-ufETerDttX .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-ufETerDttX .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-ufETerDttX .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-ufETerDttX .mbr-section-subtitle {
  color: #FF4712;
}
.cid-ufETerDttX .mbr-section-title {
  color: #275f73;
}
.cid-ufETerDttX .mbr-link {
  color: #20232a;
}
.cid-ufETerDttX .mbr-card-title {
  color: #fafafa;
}
.cid-ufETerDttX .mbr-number {
  color: #fafafa;
}
.cid-ufETerDttX .mbr-desc {
  color: #fafafa;
}
.cid-vkzZvtSc5B {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vkzZvtSc5B .mbr-section-subtitle {
  color: #ff6c42;
  text-align: right;
}
.cid-vkzZvtSc5B .mbr-text {
  color: #000000;
}
.cid-vkzZvtSc5B .mbr-section-title {
  color: #275f73;
}
.cid-vkzZwjNhQl {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vkzZwjNhQl .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkzZwjNhQl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkzZwjNhQl .video-wrapper iframe {
  width: 100%;
}
.cid-vkzZwjNhQl .mbr-section-title,
.cid-vkzZwjNhQl .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vkzZwjNhQl .text-wrapper {
    padding: 2rem;
  }
}
.cid-vkzZwjNhQl .mbr-text {
  color: #000000;
}
.cid-vkzZwjNhQl .mbr-description {
  color: #275f73;
}
.cid-vkzZwjNhQl .mbr-section-subtitle {
  color: #275f73;
}
.cid-vkzZwjNhQl .mbr-section-title {
  color: #bbbbbb;
}
.cid-vkzXHPljrq {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vkzXHPljrq .image-wrapper {
  margin-bottom: 170px;
}
.cid-vkzXHPljrq .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vkzXHPljrq .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-vkzXHPljrq .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vkzXHPljrq .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-vkzXHPljrq .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-vkzXHPljrq .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-vkzXHPljrq .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-vkzXHPljrq .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-vkzXHPljrq .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-vkzXHPljrq .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-vkzXHPljrq .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-vkzXHPljrq .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-vkzXHPljrq .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-vkzXHPljrq .card-wrap {
  position: relative;
}
.cid-vkzXHPljrq .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-vkzXHPljrq .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-vkzXHPljrq .card-wrapper .item-card {
  padding: 0;
}
.cid-vkzXHPljrq .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-vkzXHPljrq .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-vkzXHPljrq .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-vkzXHPljrq .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-vkzXHPljrq .mbr-section-subtitle {
  color: #FF4712;
}
.cid-vkzXHPljrq .mbr-section-title {
  color: #275f73;
}
.cid-vkzXHPljrq .mbr-link {
  color: #20232a;
}
.cid-vkzXHPljrq .mbr-card-title {
  color: #fafafa;
}
.cid-vkzXHPljrq .mbr-number {
  color: #fafafa;
}
.cid-vkzXHPljrq .mbr-desc {
  color: #fafafa;
}
.cid-uOMfDOUFob {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uOMfDOUFob .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOMfDOUFob img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOMfDOUFob .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOMfDOUFob .mbr-description {
  color: #232323;
}
.cid-uOMfDOUFob .mbr-text {
  text-align: left;
  color: #1f242e;
}
.cid-uOMfDOUFob .mbr-section-title {
  color: #275f73;
}
.cid-vmruCRfEFH {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vmruCRfEFH .image-wrapper {
  margin-bottom: 170px;
}
.cid-vmruCRfEFH .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-vmruCRfEFH .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-vmruCRfEFH .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-vmruCRfEFH .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-vmruCRfEFH .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-vmruCRfEFH .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-vmruCRfEFH .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-vmruCRfEFH .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-vmruCRfEFH .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-vmruCRfEFH .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-vmruCRfEFH .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-vmruCRfEFH .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-vmruCRfEFH .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-vmruCRfEFH .card-wrap {
  position: relative;
}
.cid-vmruCRfEFH .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-vmruCRfEFH .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-vmruCRfEFH .card-wrapper .item-card {
  padding: 0;
}
.cid-vmruCRfEFH .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-vmruCRfEFH .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-vmruCRfEFH .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-vmruCRfEFH .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-vmruCRfEFH .mbr-section-subtitle {
  color: #FF4712;
}
.cid-vmruCRfEFH .mbr-section-title {
  color: #275f73;
}
.cid-vmruCRfEFH .mbr-link {
  color: #20232a;
}
.cid-vmruCRfEFH .mbr-card-title {
  color: #fafafa;
}
.cid-vmruCRfEFH .mbr-number {
  color: #fafafa;
}
.cid-vmruCRfEFH .mbr-desc {
  color: #fafafa;
}
.cid-vkA1k5GCKc {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vkA1k5GCKc .mbr-section-subtitle {
  color: #ff6c42;
  text-align: right;
}
.cid-vkA1k5GCKc .mbr-text {
  color: #000000;
}
.cid-vkA1k5GCKc .mbr-section-title {
  color: #275f73;
}
.cid-vkA1lvk5G4 {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vkA1lvk5G4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vkA1lvk5G4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vkA1lvk5G4 .video-wrapper iframe {
  width: 100%;
}
.cid-vkA1lvk5G4 .mbr-section-title,
.cid-vkA1lvk5G4 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vkA1lvk5G4 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vkA1lvk5G4 .mbr-text {
  color: #000000;
}
.cid-vkA1lvk5G4 .mbr-description {
  color: #275f73;
}
.cid-vkA1lvk5G4 .mbr-section-subtitle {
  color: #275f73;
}
.cid-vkA1lvk5G4 .mbr-section-title {
  color: #bbbbbb;
}
.cid-uPSqVsaCYV {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uPSqVsaCYV .mbr-fallback-image.disabled {
  display: none;
}
.cid-uPSqVsaCYV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uPSqVsaCYV .mbr-section-title {
  color: #ffffff;
}
.cid-uOMglBF291 {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOMglBF291 .content {
  display: flex;
  align-items: center;
}
.cid-uOMglBF291 .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-uOMglBF291 .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-uOMglBF291 .mbr-text {
  margin-bottom: 38px;
  color: #292d2c;
}
.cid-uOMglBF291 .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-uOMglBF291 .btn:hover {
  box-shadow: none;
}
.cid-uOMglBF291 .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-uOMglBF291 .image-wrapper {
    margin-top: 25px;
  }
}
.cid-uOMglBF291 .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-uOMglBF291 .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-uOMglBF291 .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-uOMglBF291 .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-uOMglBF291 .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-uOMglBF291 .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-uOMglBF291 .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-uOMglBF291 .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-uOMglBF291 .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-uOMglBF291 .mbr-iconfont {
  color: #ffffff;
}
.cid-uOMglBF291 .mbr-image-text {
  color: #ffffff;
}
.cid-uOMglBF291 .mbr-section-title,
.cid-uOMglBF291 .mbr-section-btn {
  color: #275f73;
}
.cid-vokpWRRdCi {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vokpWRRdCi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vokpWRRdCi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vokpWRRdCi .mbr-section-title {
  color: #ffffff;
}
.cid-uOMhsAzqfE {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uOMhsAzqfE .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOMhsAzqfE .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOMhsAzqfE .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOMhsAzqfE .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOMhsAzqfE .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOMhsAzqfE .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOMhsAzqfE .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOMhsAzqfE .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-uOMhsAzqfE .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOMhsAzqfE .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOMhsAzqfE .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOMhsAzqfE .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOMhsAzqfE .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOMhsAzqfE .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOMhsAzqfE .card-wrap {
  position: relative;
}
.cid-uOMhsAzqfE .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOMhsAzqfE .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOMhsAzqfE .card-wrapper .item-card {
  padding: 0;
}
.cid-uOMhsAzqfE .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOMhsAzqfE .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOMhsAzqfE .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOMhsAzqfE .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOMhsAzqfE .mbr-section-subtitle {
  color: #275f73;
}
.cid-uOMhsAzqfE .mbr-section-title {
  color: #292d2c;
  text-align: left;
}
.cid-uOMhsAzqfE .mbr-link {
  color: #20232a;
}
.cid-uOMhsAzqfE .mbr-card-title {
  color: #fafafa;
}
.cid-uOMhsAzqfE .mbr-number {
  color: #fafafa;
}
.cid-uOMhsAzqfE .mbr-desc {
  color: #fafafa;
}
.cid-uOSJOIdObZ {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOSJOIdObZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOSJOIdObZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOSJOIdObZ .mbr-section-title {
  color: #ffffff;
}
.cid-vmr9hbbdYS {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr9hbbdYS .row {
  justify-content: center;
}
.cid-vmr9hbbdYS .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr9hbbdYS .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr9hbbdYS .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr9hbbdYS .card {
    margin-bottom: 30px;
  }
}
.cid-vmr9hbbdYS .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr9hbbdYS .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr9hbbdYS .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr9hbbdYS .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr9hbbdYS .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr9hbbdYS .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr9hbbdYS .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr9hbbdYS .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr9hbbdYS .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr9hbbdYS .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr9hbbdYS .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr9hbbdYS .mbr-button {
  color: #000000;
}
.cid-vmr9hbbdYS .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr9hbbdYS .mbr-date {
  color: #fafafa;
}
.cid-vmr9hbbdYS .mbr-link {
  color: #FFFFFF;
}
.cid-vmr9hbbdYS .mbr-card-title,
.cid-vmr9hbbdYS .mbr-card-title,
.cid-vmr9hbbdYS .card-button,
.cid-vmr9hbbdYS .mbr-date,
.cid-vmr9hbbdYS .mbr-link {
  text-align: left;
}
.cid-vmr9hbbdYS .mbr-section-title,
.cid-vmr9hbbdYS .mbr-section-btn {
  color: #eaeaea;
}
.cid-ufETevCKyN {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-ufETevCKyN .mbr-fallback-image.disabled {
  display: none;
}
.cid-ufETevCKyN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ufETevCKyN .mbr-section-title {
  color: #ffffff;
}
.cid-ufETew6iP6 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufETew6iP6 .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufETew6iP6 .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufETew6iP6 .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufETew6iP6 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufETew6iP6 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufETew6iP6 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufETew6iP6 .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufETew6iP6 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufETew6iP6 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufETew6iP6 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufETew6iP6 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufETew6iP6 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufETew6iP6 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufETew6iP6 .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-uOEIDpodYF {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-uOEIDpodYF nav.navbar {
  position: fixed;
}
.cid-uOEIDpodYF .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-uOEIDpodYF .wrapper {
    padding: 0;
  }
}
.cid-uOEIDpodYF .btn {
  border-radius: 30px;
}
.cid-uOEIDpodYF .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOEIDpodYF .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-uOEIDpodYF .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-uOEIDpodYF .dropdown-item:hover,
.cid-uOEIDpodYF .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-uOEIDpodYF .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-uOEIDpodYF .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-uOEIDpodYF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-uOEIDpodYF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-uOEIDpodYF .nav-link {
  position: relative;
}
.cid-uOEIDpodYF .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-uOEIDpodYF .dropdown-menu,
.cid-uOEIDpodYF .navbar.opened {
  background: #232323 !important;
}
.cid-uOEIDpodYF .nav-item:focus,
.cid-uOEIDpodYF .nav-link:focus {
  outline: none;
}
.cid-uOEIDpodYF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-uOEIDpodYF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-uOEIDpodYF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-uOEIDpodYF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-uOEIDpodYF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-uOEIDpodYF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-uOEIDpodYF .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-uOEIDpodYF .navbar.opened {
  transition: all 0.3s;
}
.cid-uOEIDpodYF .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-uOEIDpodYF .navbar .navbar-logo img {
  width: auto;
}
.cid-uOEIDpodYF .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-uOEIDpodYF .navbar.collapsed {
  justify-content: center;
}
.cid-uOEIDpodYF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-uOEIDpodYF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-uOEIDpodYF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-uOEIDpodYF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-uOEIDpodYF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-uOEIDpodYF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-uOEIDpodYF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-uOEIDpodYF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-uOEIDpodYF .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-uOEIDpodYF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-uOEIDpodYF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-uOEIDpodYF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-uOEIDpodYF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-uOEIDpodYF .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-uOEIDpodYF .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-uOEIDpodYF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-uOEIDpodYF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-uOEIDpodYF .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-uOEIDpodYF .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-uOEIDpodYF .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-uOEIDpodYF .navbar.navbar-short {
  min-height: 60px;
}
.cid-uOEIDpodYF .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-uOEIDpodYF .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-uOEIDpodYF .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-uOEIDpodYF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-uOEIDpodYF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-uOEIDpodYF .dropdown-item.active,
.cid-uOEIDpodYF .dropdown-item:active {
  background-color: transparent;
}
.cid-uOEIDpodYF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-uOEIDpodYF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-uOEIDpodYF .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-uOEIDpodYF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-uOEIDpodYF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-uOEIDpodYF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-uOEIDpodYF ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-uOEIDpodYF .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-uOEIDpodYF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-uOEIDpodYF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-uOEIDpodYF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-uOEIDpodYF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOEIDpodYF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-uOEIDpodYF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-uOEIDpodYF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOEIDpodYF nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-uOEIDpodYF nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-uOEIDpodYF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-uOEIDpodYF .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-uOEIDpodYF a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-uOEIDpodYF .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-uOEIDpodYF .navbar {
    height: 70px;
  }
  .cid-uOEIDpodYF .navbar.opened {
    height: auto;
  }
  .cid-uOEIDpodYF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-uOEIDpLOkP {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-uOEIDpLOkP .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEIDpLOkP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEIDpLOkP .row {
  justify-content: flex-start;
}
.cid-uOEIDpLOkP .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-uOEIDpLOkP .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uOEIDpLOkP .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-uOEIDpLOkP .image-wrapper {
  width: 100%;
}
.cid-uOEIDpLOkP .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-uOEIDpLOkP .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-uOEIDpLOkP .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-uOEIDpLOkP .mbr-text {
    margin-top: 45px;
  }
}
.cid-uOEIDpLOkP .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-uOEIDpLOkP .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-uOEIDpLOkP .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-uOEIDpLOkP .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-uOEIDpLOkP .mbr-text,
.cid-uOEIDpLOkP .mbr-section-btn {
  color: #d58001;
}
.cid-uOEIDq6Ydj {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #150c0a;
}
.cid-uOEIDq6Ydj .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEIDq6Ydj .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEIDq6Ydj .mbr-section-title {
  color: #ffffff;
}
.cid-uOEIDqq6JT {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #275f73;
}
.cid-uOEIDqq6JT .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEIDqq6JT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEIDqq6JT .mbr-section-title {
  color: #ffffff;
}
.cid-uOEIDqLIqE {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-uOEIDqLIqE .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOEIDqLIqE .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOEIDqLIqE .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOEIDqLIqE .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOEIDqLIqE .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOEIDqLIqE .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOEIDqLIqE .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOEIDqLIqE .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-uOEIDqLIqE .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOEIDqLIqE .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOEIDqLIqE .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOEIDqLIqE .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOEIDqLIqE .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOEIDqLIqE .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOEIDqLIqE .card-wrap {
  position: relative;
}
.cid-uOEIDqLIqE .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOEIDqLIqE .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOEIDqLIqE .card-wrapper .item-card {
  padding: 0;
}
.cid-uOEIDqLIqE .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOEIDqLIqE .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOEIDqLIqE .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOEIDqLIqE .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOEIDqLIqE .mbr-section-subtitle {
  color: #FF4712;
}
.cid-uOEIDqLIqE .mbr-section-title {
  color: #275f73;
}
.cid-uOEIDqLIqE .mbr-link {
  color: #20232a;
}
.cid-uOEIDqLIqE .mbr-card-title {
  color: #fafafa;
}
.cid-uOEIDqLIqE .mbr-number {
  color: #fafafa;
}
.cid-uOEIDqLIqE .mbr-desc {
  color: #fafafa;
}
.cid-uOEIDr85b2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-uOEIDr85b2 .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-uOEIDr85b2 img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-uOEIDr85b2 .text-wrapper {
    padding: 2rem;
  }
}
.cid-uOEIDr85b2 .mbr-description {
  color: #232323;
}
.cid-uOEIDr85b2 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uOEIDr85b2 .mbr-section-title {
  color: #275f73;
}
.cid-uOEIDtc1kB {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-uOEIDtc1kB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEIDtc1kB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEIDtc1kB .mbr-section-title {
  color: #ffffff;
}
.cid-uOEIDtABvD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOEIDtABvD .image-wrapper {
  margin-bottom: 170px;
}
.cid-uOEIDtABvD .image-wrapper img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .cid-uOEIDtABvD .image-wrapper img {
    height: 180px;
  }
}
@media (max-width: 992px) {
  .cid-uOEIDtABvD .image-wrapper {
    margin-bottom: 30px;
  }
}
.cid-uOEIDtABvD .text .text-wrapper .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
}
@media (max-width: 992px) {
  .cid-uOEIDtABvD .text .text-wrapper .mbr-section-subtitle {
    margin-bottom: 7px;
  }
}
.cid-uOEIDtABvD .text .text-wrapper .mbr-section-title {
  margin-bottom: 45px;
}
.cid-uOEIDtABvD .mbr-text {
  margin-left: 30px;
  margin-bottom: 30px;
  color: #84858a;
}
@media (max-width: 992px) {
  .cid-uOEIDtABvD .mbr-text {
    margin: 0 0 30px 0;
  }
}
.cid-uOEIDtABvD .item-link {
  margin-left: 30px;
  display: block;
}
@media (max-width: 992px) {
  .cid-uOEIDtABvD .item-link {
    margin: 0 0 40px 0;
  }
}
.cid-uOEIDtABvD .item-link .mbr-link {
  margin: 0;
  display: inline-block;
}
.cid-uOEIDtABvD .item-link .mbr-link::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  margin-top: 5px;
  transition: all .4s ease;
}
.cid-uOEIDtABvD .item-link:hover .mbr-link::after {
  width: 0;
}
.cid-uOEIDtABvD .card-wrap {
  position: relative;
}
.cid-uOEIDtABvD .card-wrapper {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 72px 65px;
  width: 138%;
  background-color: #973636;
}
@media (max-width: 992px) {
  .cid-uOEIDtABvD .card-wrapper {
    position: static;
    width: 100%;
    padding: 38px;
  }
}
.cid-uOEIDtABvD .card-wrapper .item-card {
  padding: 0;
}
.cid-uOEIDtABvD .card-wrapper .item-card .mbr-card-title {
  margin: 0;
}
.cid-uOEIDtABvD .card-wrapper .item-card .mbr-number {
  margin: 34px 0 5px 0;
}
.cid-uOEIDtABvD .card-wrapper .item-card .mbr-desc {
  margin: 0;
  opacity: .7;
}
.cid-uOEIDtABvD .card-wrapper .item-card:first-child {
  padding-right: 10px;
}
.cid-uOEIDtABvD .mbr-section-subtitle {
  color: #FF4712;
}
.cid-uOEIDtABvD .mbr-section-title {
  color: #275f73;
  text-align: justify;
}
.cid-uOEIDtABvD .mbr-link {
  color: #20232a;
}
.cid-uOEIDtABvD .mbr-card-title {
  color: #fafafa;
}
.cid-uOEIDtABvD .mbr-number {
  color: #fafafa;
}
.cid-uOEIDtABvD .mbr-desc {
  color: #fafafa;
}
.cid-uOEIDtZnZP {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-uOEIDtZnZP .mbr-section-subtitle {
  color: #275f73;
}
.cid-uOEIDtZnZP .mbr-text {
  color: #000000;
}
.cid-uOEIDtZnZP .mbr-section-title {
  color: #275f73;
}
.cid-vmK0d8mSy8 {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vmK0d8mSy8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmK0d8mSy8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmK0d8mSy8 .video-wrapper iframe {
  width: 100%;
}
.cid-vmK0d8mSy8 .mbr-section-title,
.cid-vmK0d8mSy8 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-vmK0d8mSy8 .text-wrapper {
    padding: 2rem;
  }
}
.cid-vmK0d8mSy8 .mbr-description {
  color: #275f73;
}
.cid-vmK0d8mSy8 .mbr-text {
  color: #000000;
}
.cid-vmK0d8mSy8 .mbr-section-subtitle {
  color: #275f73;
}
.cid-vmK0d8mSy8 .mbr-section-title {
  color: #bbbbbb;
}
.cid-vmDV775pu4 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-vmDV775pu4 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vmDV775pu4 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vmDV775pu4 .mbr-section-title {
  color: #ffffff;
}
.cid-vmr79S9baX {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #232323;
}
.cid-vmr79S9baX .row {
  justify-content: center;
}
.cid-vmr79S9baX .mbr-section-subtitle {
  margin-bottom: 22px;
  letter-spacing: .13em;
  color: #eaeaea;
  text-align: center;
}
.cid-vmr79S9baX .mbr-section-title {
  margin-bottom: 45px;
  color: #20232a;
  text-align: center;
}
.cid-vmr79S9baX .card {
  height: 460px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vmr79S9baX .card {
    margin-bottom: 30px;
  }
}
.cid-vmr79S9baX .card img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  object-fit: cover;
  transform: scale(1, 1);
  transition: all .4s ease;
}
.cid-vmr79S9baX .card-link {
  position: relative;
  height: 100%;
  z-index: 1;
  transition: all .4s ease;
  pointer-events: none;
}
.cid-vmr79S9baX .card-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px 40px;
  justify-content: space-between;
}
@media (max-width: 425px) {
  .cid-vmr79S9baX .card-wrapper {
    padding: 29px;
  }
}
.cid-vmr79S9baX .card-wrapper .card-button {
  width: 100%;
}
.cid-vmr79S9baX .card-wrapper .card-button .mbr-button {
  width: 98px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 4px;
  margin: 0;
  border-radius: 15px;
  letter-spacing: .72px;
  background: #ffa41d;
  pointer-events: visible;
  transition: all .4s ease;
}
.cid-vmr79S9baX .card-wrapper .card-text-main {
  transform: translate(0, 25%);
  transition: all .4s ease;
}
.cid-vmr79S9baX .card-wrapper .card-text-main .mbr-card-title {
  margin: 0;
  pointer-events: visible;
}
.cid-vmr79S9baX .card-wrapper .card-text-main .card-text-date {
  margin-top: 15px;
}
.cid-vmr79S9baX .card-wrapper .card-text-main .card-text-date .mbr-date {
  margin: 0;
  opacity: .7;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr79S9baX .card-wrapper .card-text-main .card-text-date .mbr-date span {
  margin-right: 13px;
  color: #111151;
  pointer-events: visible;
}
.cid-vmr79S9baX .card-wrapper .card-text-main .card-text-link {
  margin-top: 15px;
  opacity: 0;
  transition: all .4s ease;
}
.cid-vmr79S9baX .card-wrapper .card-text-main .card-text-link .mbr-link {
  margin: 0;
  pointer-events: visible;
  display: inline-flex;
  align-items: center;
}
.cid-vmr79S9baX .card-wrapper .card-text-main .card-text-link .mbr-link span {
  margin-left: 6px;
  color: #ffc772;
  pointer-events: visible;
}
.cid-vmr79S9baX .card:hover img {
  transform: scale(1.1, 1.1);
}
.cid-vmr79S9baX .card:hover .card-text-main {
  transform: translate(0, 0);
}
.cid-vmr79S9baX .card:hover .card-text-link {
  opacity: 1;
}
.cid-vmr79S9baX .card:hover .mbr-button {
  background: #cf2f00;
}
.cid-vmr79S9baX .mbr-button {
  color: #000000;
}
.cid-vmr79S9baX .mbr-card-title {
  color: #FFFFFF;
}
.cid-vmr79S9baX .mbr-date {
  color: #fafafa;
}
.cid-vmr79S9baX .mbr-link {
  color: #FFFFFF;
}
.cid-vmr79S9baX .mbr-card-title,
.cid-vmr79S9baX .mbr-card-title,
.cid-vmr79S9baX .card-button,
.cid-vmr79S9baX .mbr-date,
.cid-vmr79S9baX .mbr-link {
  text-align: left;
}
.cid-vmr79S9baX .mbr-section-title,
.cid-vmr79S9baX .mbr-section-btn {
  color: #eaeaea;
}
.cid-uOEIDwL1N8 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-uOEIDwL1N8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOEIDwL1N8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uOEIDwL1N8 .mbr-section-title {
  color: #ffffff;
}
.cid-uOEIDxfv5D {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-uOEIDxfv5D .row-links {
  width: 100%;
  justify-content: center;
}
.cid-uOEIDxfv5D .social-row {
  width: 100%;
  justify-content: center;
}
.cid-uOEIDxfv5D .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-uOEIDxfv5D .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-uOEIDxfv5D .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-uOEIDxfv5D .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-uOEIDxfv5D .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-uOEIDxfv5D .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-uOEIDxfv5D .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-uOEIDxfv5D .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-uOEIDxfv5D .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-uOEIDxfv5D .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-uOEIDxfv5D .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-uOEIDxfv5D .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-ufESVGq38V {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-ufESVGq38V nav.navbar {
  position: fixed;
}
.cid-ufESVGq38V .wrapper {
  justify-content: space-between;
  padding: 0 6rem;
}
@media (max-width: 991px) {
  .cid-ufESVGq38V .wrapper {
    padding: 0;
  }
}
.cid-ufESVGq38V .btn {
  border-radius: 30px;
}
.cid-ufESVGq38V .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufESVGq38V .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ufESVGq38V .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-ufESVGq38V .dropdown-item:hover,
.cid-ufESVGq38V .dropdown-item:focus {
  background: #111151 !important;
  color: white !important;
}
.cid-ufESVGq38V .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-ufESVGq38V .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-ufESVGq38V .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em .3em !important;
}
.cid-ufESVGq38V .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ufESVGq38V .nav-link {
  position: relative;
}
.cid-ufESVGq38V .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-ufESVGq38V .dropdown-menu,
.cid-ufESVGq38V .navbar.opened {
  background: #232323 !important;
}
.cid-ufESVGq38V .nav-item:focus,
.cid-ufESVGq38V .nav-link:focus {
  outline: none;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ufESVGq38V .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ufESVGq38V .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ufESVGq38V .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ufESVGq38V .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #232323;
}
.cid-ufESVGq38V .navbar.opened {
  transition: all 0.3s;
}
.cid-ufESVGq38V .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ufESVGq38V .navbar .navbar-logo img {
  width: auto;
}
.cid-ufESVGq38V .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ufESVGq38V .navbar.collapsed {
  justify-content: center;
}
.cid-ufESVGq38V .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ufESVGq38V .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ufESVGq38V .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 4.2rem);
  }
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-ufESVGq38V .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ufESVGq38V .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ufESVGq38V .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ufESVGq38V .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ufESVGq38V .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-ufESVGq38V .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ufESVGq38V .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ufESVGq38V .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ufESVGq38V .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ufESVGq38V .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ufESVGq38V .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-ufESVGq38V .navbar.navbar-short {
  min-height: 60px;
}
.cid-ufESVGq38V .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-ufESVGq38V .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-ufESVGq38V .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ufESVGq38V .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ufESVGq38V .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ufESVGq38V .dropdown-item.active,
.cid-ufESVGq38V .dropdown-item:active {
  background-color: transparent;
}
.cid-ufESVGq38V .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ufESVGq38V .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ufESVGq38V .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ufESVGq38V .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #232323;
}
.cid-ufESVGq38V .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ufESVGq38V .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ufESVGq38V ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ufESVGq38V .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-ufESVGq38V button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  order: 0;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-ufESVGq38V button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-ufESVGq38V nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-ufESVGq38V .navbar-dropdown {
  padding: 0 .5rem;
  position: fixed;
}
.cid-ufESVGq38V a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ufESVGq38V .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: .5rem;
  padding-right: .5rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ufESVGq38V .navbar {
    height: 70px;
  }
  .cid-ufESVGq38V .navbar.opened {
    height: auto;
  }
  .cid-ufESVGq38V .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-vokxf1fQyV {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #000000;
}
.cid-vokxf1fQyV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vokxf1fQyV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vokxf1fQyV .row {
  justify-content: flex-start;
}
.cid-vokxf1fQyV .mbr-section-title {
  color: #feff1d;
  margin-bottom: 56px;
}
@media (max-width: 991px) {
  .cid-vokxf1fQyV .mbr-section-title {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .cid-vokxf1fQyV .mbr-section-title {
    margin-bottom: 45px;
  }
}
.cid-vokxf1fQyV .image-wrapper {
  width: 100%;
}
.cid-vokxf1fQyV .image-wrapper img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
.cid-vokxf1fQyV .mbr-text {
  margin-top: 56px;
  color: #5c6064;
}
@media (max-width: 991px) {
  .cid-vokxf1fQyV .mbr-text {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  .cid-vokxf1fQyV .mbr-text {
    margin-top: 45px;
  }
}
.cid-vokxf1fQyV .mbr-section-btn {
  margin-top: 50px;
}
@media (max-width: 991px) {
  .cid-vokxf1fQyV .mbr-section-btn {
    margin-top: 46px;
  }
}
.cid-vokxf1fQyV .mbr-section-btn .btn-white {
  color: #45494E !important;
  border: 1px solid #45494E !important;
  background-color: transparent !important;
}
.cid-vokxf1fQyV .mbr-section-btn .btn-white:hover {
  color: #FFFFFF !important;
  border: 1px solid #45494E !important;
  background-color: #45494E !important;
}
.cid-vokxf1fQyV .mbr-text,
.cid-vokxf1fQyV .mbr-section-btn {
  color: #d58001;
}
.cid-voky9kvPM2 {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #275f73;
}
.cid-voky9kvPM2 .mbr-fallback-image.disabled {
  display: none;
}
.cid-voky9kvPM2 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-voky9kvPM2 .mbr-section-title {
  color: #ffffff;
}
.cid-vokxfSUNVF {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #bbbbbb;
}
.cid-vokxfSUNVF .oldcost {
  text-decoration: line-through;
  color: #353535;
}
.cid-vokxfSUNVF .currentcost {
  color: #232323;
}
.cid-vokxfSUNVF .card-wrapper {
  border-radius: 4px;
  background: #bbbbbb;
}
@media (min-width: 992px) {
  .cid-vokxfSUNVF .text-box {
    padding: 2rem;
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vokxfSUNVF .text-box {
    padding: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vokxfSUNVF .text-box {
    padding: 1rem;
  }
}
.cid-vokxfSUNVF .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vokxfSUNVF H5 {
  color: #275f73;
}
.cid-vokxfSUNVF .mbr-text,
.cid-vokxfSUNVF .cost,
.cid-vokxfSUNVF .mbr-section-btn {
  color: #000000;
}
.cid-vokx0cE23q {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-vokx0cE23q .mbr-section-subtitle {
  color: #275f73;
}
.cid-vokx0cE23q .mbr-text {
  color: #000000;
}
.cid-vokx0cE23q .mbr-section-title {
  color: #275f73;
}
.cid-volg03X9qw {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #bbbbbb;
}
.cid-volg03X9qw .content {
  display: flex;
  align-items: center;
}
.cid-volg03X9qw .mbr-section-subtitle {
  margin-bottom: 27px;
  letter-spacing: .13em;
  color: #FF4712;
}
.cid-volg03X9qw .mbr-section-title {
  margin-bottom: 13px;
  color: #080808;
}
.cid-volg03X9qw .mbr-text {
  margin-bottom: 38px;
  color: #000000;
  text-align: justify;
}
.cid-volg03X9qw .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-volg03X9qw .btn:hover {
  box-shadow: none;
}
.cid-volg03X9qw .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
@media (max-width: 992px) {
  .cid-volg03X9qw .image-wrapper {
    margin-top: 25px;
  }
}
.cid-volg03X9qw .image-wrapper img {
  width: 480px;
  height: 457px;
  margin: 0 auto;
  object-fit: cover;
}
@media (max-width: 1040px) {
  .cid-volg03X9qw .image-wrapper img {
    width: 310px;
    height: 290px;
  }
}
@media (max-width: 992px) {
  .cid-volg03X9qw .image-wrapper img {
    max-width: 480px;
    min-height: 230px;
  }
}
.cid-volg03X9qw .image-wrapper .image-absolute-1 {
  position: absolute;
  top: 56%;
  left: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-volg03X9qw .image-wrapper .image-absolute-1 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-volg03X9qw .image-wrapper .image-absolute-1 .mbr-image-text {
  margin: 0;
}
.cid-volg03X9qw .image-wrapper .image-absolute-2 {
  position: absolute;
  top: 10%;
  right: 1%;
  width: 112px;
  height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #84858a;
}
.cid-volg03X9qw .image-wrapper .image-absolute-2 .mbr-iconfont {
  font-size: 32px;
  margin-bottom: 10px;
}
.cid-volg03X9qw .image-wrapper .image-absolute-2 .mbr-image-text {
  margin: 0;
}
.cid-volg03X9qw .mbr-iconfont {
  color: #ffffff;
}
.cid-volg03X9qw .mbr-image-text {
  color: #ffffff;
}
.cid-volg03X9qw .mbr-section-title,
.cid-volg03X9qw .mbr-section-btn {
  color: #275f73;
}
.cid-vokBQStshG {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #bbbbbb;
}
.cid-vokBQStshG .mbr-section-subtitle {
  max-width: 800px;
  margin: 0 auto 21px auto;
  letter-spacing: .13em;
  color: #FF4712;
  text-align: center;
}
.cid-vokBQStshG .mbr-section-title {
  max-width: 800px;
  margin: 0 auto 26.5px auto;
  color: #FAFAFA;
}
.cid-vokBQStshG .mbr-section-btn {
  max-width: 800px;
  margin: 0 auto;
}
.cid-vokBQStshG .btn {
  height: 55px;
  min-width: 170px;
  box-shadow: none;
  margin-top: 0;
}
.cid-vokBQStshG .btn:hover {
  box-shadow: none;
}
.cid-vokBQStshG .mbr-section-title,
.cid-vokBQStshG .mbr-section-btn {
  text-align: center;
}
.cid-vokyk1kiMY {
  padding-top: 0rem;
  padding-bottom: 1rem;
  background-color: #8364e2;
}
.cid-vokyk1kiMY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vokyk1kiMY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vokyk1kiMY .mbr-section-title {
  color: #ffffff;
}
.cid-ufESVNxsVQ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #232323;
}
.cid-ufESVNxsVQ .row-links {
  width: 100%;
  justify-content: center;
}
.cid-ufESVNxsVQ .social-row {
  width: 100%;
  justify-content: center;
}
.cid-ufESVNxsVQ .media-container-row {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.cid-ufESVNxsVQ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-ufESVNxsVQ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-ufESVNxsVQ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-ufESVNxsVQ .media-container-row .social-list {
  width: auto;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cid-ufESVNxsVQ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-ufESVNxsVQ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-ufESVNxsVQ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  transition: .2s linear;
}
.cid-ufESVNxsVQ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-ufESVNxsVQ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-ufESVNxsVQ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-ufESVNxsVQ .media-container-row .row-copirayt p {
  width: 100%;
}
