body {
  font-family: Rubik;
}
.display-1 {
  font-family: 'PT Sans', sans-serif;
  font-size: 4.2rem;
  font-display: swap;
}
.display-1 > .mbr-iconfont {
  font-size: 6.72rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.4rem;
  font-display: swap;
}
.display-2 > .mbr-iconfont {
  font-size: 3.84rem;
}
.display-4 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.6rem;
  font-display: swap;
}
.display-4 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-5 {
  font-family: 'Noto Sans', sans-serif;
  font-size: 1.6rem;
  font-display: swap;
}
.display-5 > .mbr-iconfont {
  font-size: 2.56rem;
}
.display-7 {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.36rem;
    font-size: calc( 2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.12rem + (4.2 - 2.12) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.92rem;
    font-size: calc( 1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.49rem + (2.4 - 1.49) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #0b2438 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #b1a374 !important;
}
.bg-warning {
  background-color: #0f74aa !important;
}
.bg-danger {
  background-color: #c4bc3b !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0b2438 !important;
  border-color: #0b2438 !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-info,
.btn-info:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #8b7d4e !important;
  border-color: #8b7d4e !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #0f74aa !important;
  border-color: #0f74aa !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #094464 !important;
  border-color: #094464 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #094464 !important;
  border-color: #094464 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c4bc3b !important;
  border-color: #c4bc3b !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #898429 !important;
  border-color: #898429 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #898429 !important;
  border-color: #898429 !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #0b2438;
  border-color: #0b2438;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0b2438 !important;
  border-color: #0b2438 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #07344c;
  color: #07344c;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #0f74aa;
  border-color: #0f74aa;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #0f74aa !important;
  border-color: #0f74aa !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #767123;
  color: #767123;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #c4bc3b;
  border-color: #c4bc3b;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #c4bc3b !important;
  border-color: #c4bc3b !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #0b2438 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #b1a374 !important;
}
.text-warning {
  color: #0f74aa !important;
}
.text-danger {
  color: #c4bc3b !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #000000 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #7a6e45 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #07344c !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #767123 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #b1a374;
}
.alert-warning {
  background-color: #0f74aa;
}
.alert-danger {
  background-color: #c4bc3b;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0b2438;
  border-color: #0b2438;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #0b2438;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #4d9cdc;
}
.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: #dfd9c6;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #4ab5ef;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e2dd9d;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1.2rem;
  font-display: swap;
}
.form-control > .mbr-iconfont {
  font-size: 1.92rem;
}
blockquote {
  border-color: #0b2438;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #0b2438;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #0b2438;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .card-wrapper {
    flex: auto !important;
  }
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0b2438;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0b2438;
  border-bottom-color: #0b2438;
}
.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: #0b2438 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ffffff !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  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='%230b2438' %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.3;
}
.cid-unrs84kzz9 {
  background-image: url("../../../assets/images/image-8.webp");
}
.cid-unrs84kzz9 H1 {
  text-align: right;
}
.cid-unrs84kzz9 H3 {
  text-align: left;
}
.cid-unrsas3FLP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-unrsas3FLP .mbr-section-subtitle {
  color: #405051;
}
.cid-unrsas3FLP H2 {
  color: #405051;
}
.cid-v7urdiIpTK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7urdiIpTK .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7urdiIpTK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7urdiIpTK .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .content-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7urdiIpTK .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7urdiIpTK .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7urdiIpTK .content-wrap .title-wrapper .mbr-section-title {
  width: 60%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v7urdiIpTK .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7urdiIpTK .card {
  justify-content: flex-end;
}
.cid-v7urdiIpTK .main-btn {
  margin-top: 14px;
  margin-bottom: 56px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .main-btn {
    margin-bottom: 32px;
    text-align: left;
  }
}
.cid-v7urdiIpTK .main-btn .btn {
  margin-bottom: 0;
}
.cid-v7urdiIpTK .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-v7urdiIpTK .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7urdiIpTK .embla__slide .slide-content {
  width: 100%;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  height: 100%;
  min-height: 540px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .item-img {
    min-height: auto;
    height: 300px;
  }
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0b2438;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .role-wrapper {
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .role-wrapper {
    padding: 24px 24px 0 24px;
  }
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .role-wrapper .item-role {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-flex;
  background-color: #e0f782;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content {
  padding: 56px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content {
    padding: 24px;
  }
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .item-text {
  margin-bottom: 0;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper {
  margin-top: 56px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper {
    margin-top: 24px;
  }
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper .person-wrap .image-wrap img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: cover;
  border-radius: 100% !important;
  background-color: #f7f7f7;
  padding: 4px;
}
.cid-v7urdiIpTK .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper .person-wrap .item-name {
  margin-bottom: 0;
}
.cid-v7urdiIpTK .embla__button--next,
.cid-v7urdiIpTK .embla__button--prev {
  display: flex;
}
.cid-v7urdiIpTK .embla__button {
  bottom: 24px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__button {
    bottom: 0;
  }
}
.cid-v7urdiIpTK .embla__button:hover {
  transform: translateY(-2px);
}
.cid-v7urdiIpTK .embla__button:disabled {
  opacity: .5 !important;
  transform: none;
}
.cid-v7urdiIpTK .embla__button.embla__button--prev {
  right: 106px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__button.embla__button--prev {
    right: 74px;
  }
}
.cid-v7urdiIpTK .embla__button.embla__button--prev .mbr-iconfont {
  margin-left: -4px;
}
.cid-v7urdiIpTK .embla__button.embla__button--next {
  right: 56px;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla__button.embla__button--next {
    right: 24px;
  }
}
.cid-v7urdiIpTK .embla__button.embla__button--next .mbr-iconfont {
  margin-right: -4px;
}
.cid-v7urdiIpTK .embla {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .embla {
    padding-bottom: 4rem;
  }
}
.cid-v7urdiIpTK .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  height: 100%;
}
@media (max-width: 768px) {
  .cid-v7urdiIpTK .embla__viewport {
    padding: 0;
  }
}
.cid-v7urdiIpTK .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7urdiIpTK .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7urdiIpTK .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}
.cid-v7urdiIpTK .btn-wrapper {
  margin-top: -12px;
  margin-right: 3%;
}
.cid-v7urdiIpTK .mbr-label,
.cid-v7urdiIpTK .label-wrapper {
  color: #000000;
}
.cid-v7urdiIpTK .mbr-section-title {
  color: #000000;
}
.cid-v7urdiIpTK .mbr-text,
.cid-v7urdiIpTK .text-wrapper {
  color: #4f4f4f;
}
.cid-v7urdiIpTK .item-role,
.cid-v7urdiIpTK .role-wrapper {
  color: #000000;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v7urdiIpTK .item-role,
  .cid-v7urdiIpTK .role-wrapper {
    text-align: left;
  }
}
.cid-v7urdiIpTK .mbr-star {
  color: #000000;
}
.cid-v7urdiIpTK .item-text {
  color: #ffffff;
}
.cid-v7urdiIpTK .item-name {
  color: #000000;
}
.cid-v7uu7CTPmP {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v7uu7CTPmP .mbr-fallback-image.disabled {
  display: none;
}
.cid-v7uu7CTPmP .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v7uu7CTPmP .content-wrap {
  margin-bottom: 56px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .content-wrap {
    margin-bottom: 0;
  }
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .content-wrap {
    margin-bottom: 32px;
  }
}
.cid-v7uu7CTPmP .content-wrap .label-wrapper {
  margin-bottom: 16px;
}
.cid-v7uu7CTPmP .content-wrap .label-wrapper .mbr-label {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-block;
  background-color: #e0f782;
}
.cid-v7uu7CTPmP .content-wrap .title-wrapper .mbr-section-title {
  width: 60%;
  margin-bottom: 16px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v7uu7CTPmP .content-wrap .text-wrapper .mbr-text {
  display: inline-block;
  width: 65%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .content-wrap .text-wrapper .mbr-text {
    width: 100%;
  }
}
.cid-v7uu7CTPmP .card {
  justify-content: flex-end;
}
.cid-v7uu7CTPmP .main-btn {
  margin-top: 14px;
  margin-bottom: 56px;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .main-btn {
    margin-bottom: 32px;
    text-align: left;
  }
}
.cid-v7uu7CTPmP .main-btn .btn {
  margin-bottom: 0;
}
.cid-v7uu7CTPmP .embla__slide {
  display: flex;
  justify-content: center;
  position: relative;
  min-width: 100%;
  max-width: 100%;
}
@media (max-width: 768px) {
  .cid-v7uu7CTPmP .embla__slide {
    min-width: 100%;
    max-width: 100%;
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
}
.cid-v7uu7CTPmP .embla__slide .slide-content {
  width: 100%;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  height: 100%;
  background-color: #f7f7f7;
  padding: 8px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper {
    grid-template-columns: 1fr;
    height: auto;
  }
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .item-img {
  position: relative;
  height: 100%;
  min-height: 540px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .item-img {
    min-height: auto;
    height: 300px;
  }
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #0b2438;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .role-wrapper {
  padding: 32px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .role-wrapper {
    padding: 24px 24px 0 24px;
  }
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .role-wrapper .item-role {
  padding: 2px 12px;
  margin-bottom: 0;
  display: inline-flex;
  background-color: #e0f782;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content {
  padding: 56px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content {
    padding: 24px;
  }
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .rating-wrapper {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .rating-wrapper .rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .rating-wrapper .rating-wrap .mbr-star {
  margin-bottom: 0;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .item-text {
  margin-bottom: 0;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper {
  margin-top: 56px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper {
    margin-top: 24px;
  }
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper .person-wrap {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper .person-wrap .image-wrap img {
  width: 44px;
  height: 44px;
  min-width: 44px;
  object-fit: cover;
  border-radius: 100% !important;
  background-color: #f7f7f7;
  padding: 4px;
}
.cid-v7uu7CTPmP .embla__slide .slide-content .item-wrapper .card-box .item-content .person-wrapper .person-wrap .item-name {
  margin-bottom: 0;
}
.cid-v7uu7CTPmP .embla__button--next,
.cid-v7uu7CTPmP .embla__button--prev {
  display: flex;
}
.cid-v7uu7CTPmP .embla__button {
  bottom: 24px;
  width: 40px;
  height: 40px;
  font-size: 18px;
  background-color: #000000 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 100% !important;
  transition: all 0.3s;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__button {
    bottom: 0;
  }
}
.cid-v7uu7CTPmP .embla__button:hover {
  transform: translateY(-2px);
}
.cid-v7uu7CTPmP .embla__button:disabled {
  opacity: .5 !important;
  transform: none;
}
.cid-v7uu7CTPmP .embla__button.embla__button--prev {
  right: 106px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__button.embla__button--prev {
    right: 74px;
  }
}
.cid-v7uu7CTPmP .embla__button.embla__button--prev .mbr-iconfont {
  margin-left: -4px;
}
.cid-v7uu7CTPmP .embla__button.embla__button--next {
  right: 56px;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla__button.embla__button--next {
    right: 24px;
  }
}
.cid-v7uu7CTPmP .embla__button.embla__button--next .mbr-iconfont {
  margin-right: -4px;
}
.cid-v7uu7CTPmP .embla {
  position: relative;
  width: 100%;
  height: 100%;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .embla {
    padding-bottom: 4rem;
  }
}
.cid-v7uu7CTPmP .embla__viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  height: 100%;
}
@media (max-width: 768px) {
  .cid-v7uu7CTPmP .embla__viewport {
    padding: 0;
  }
}
.cid-v7uu7CTPmP .embla__viewport.is-draggable {
  cursor: grab;
}
.cid-v7uu7CTPmP .embla__viewport.is-dragging {
  cursor: grabbing;
}
.cid-v7uu7CTPmP .embla__container {
  display: flex;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-tap-highlight-color: transparent;
  height: 100%;
}
.cid-v7uu7CTPmP .btn-wrapper {
  margin-top: -12px;
  margin-right: 3%;
}
.cid-v7uu7CTPmP .mbr-label,
.cid-v7uu7CTPmP .label-wrapper {
  color: #000000;
}
.cid-v7uu7CTPmP .mbr-section-title {
  color: #000000;
}
.cid-v7uu7CTPmP .mbr-text,
.cid-v7uu7CTPmP .text-wrapper {
  color: #4f4f4f;
}
.cid-v7uu7CTPmP .item-role,
.cid-v7uu7CTPmP .role-wrapper {
  color: #000000;
  text-align: right;
}
@media (max-width: 992px) {
  .cid-v7uu7CTPmP .item-role,
  .cid-v7uu7CTPmP .role-wrapper {
    text-align: left;
  }
}
.cid-v7uu7CTPmP .mbr-star {
  color: #000000;
}
.cid-v7uu7CTPmP .item-text {
  color: #ffffff;
}
.cid-v7uu7CTPmP .item-name {
  color: #000000;
}
.cid-uKFWsT7816 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/image-3.webp");
}
.cid-v7uHHZw4gJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #265276;
}
.cid-v7uHHZw4gJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v7uHHZw4gJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7uHHZw4gJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v83gVWVbag .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v83gVWVbag .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v83gVWVbag a {
  font-style: normal;
}
.cid-v83gVWVbag .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v83gVWVbag .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v83gVWVbag .nav-item:focus,
.cid-v83gVWVbag .nav-link:focus {
  outline: none;
}
.cid-v83gVWVbag .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v83gVWVbag .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v83gVWVbag .menu-logo {
  margin-right: auto;
}
.cid-v83gVWVbag .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v83gVWVbag .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v83gVWVbag .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-v83gVWVbag .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v83gVWVbag .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v83gVWVbag button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v83gVWVbag button.navbar-toggler:focus {
  outline: none;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #265276;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .btn {
  display: -webkit-flex;
}
.cid-v83gVWVbag .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing,
.cid-v83gVWVbag .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-v83gVWVbag .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-v83gVWVbag .collapsed button.navbar-toggler {
  display: block;
}
.cid-v83gVWVbag .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v83gVWVbag .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-v83gVWVbag .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-v83gVWVbag.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag img {
    height: 3.8rem !important;
  }
  .cid-v83gVWVbag .btn {
    display: -webkit-flex;
  }
  .cid-v83gVWVbag button.navbar-toggler {
    display: block;
  }
  .cid-v83gVWVbag .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v83gVWVbag .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing,
  .cid-v83gVWVbag .navbar-collapse.show {
    display: block !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v83gVWVbag .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v83gVWVbag .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v83gVWVbag .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v83gVWVbag .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v83gVWVbag .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v83gVWVbag .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v83gVWVbag .nav-link:hover,
.cid-v83gVWVbag .dropdown-item:hover {
  color: #465052 !important;
}
.cid-std1kwQ2BZ {
  padding-top: 135px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-std1kwQ2BZ .form-control,
.cid-std1kwQ2BZ .form-control:focus {
  background: #efefef;
  border: 1px solid #0b2438;
}
.cid-std1kwQ2BZ .form-container {
  transition: all .2s;
  border: 1px solid #0b2438;
  padding: 1rem;
  background: linear-gradient(#c1c1c1, #0b2438);
  border: none;
}
.cid-std1kwQ2BZ textarea.form-control {
  min-height: 188px;
}
.cid-std1kwQ2BZ .input-group-btn {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 768px) {
  .cid-std1kwQ2BZ .content-container {
    padding-right: 5rem;
  }
}
.cid-std1kwQ2BZ H1 {
  color: #011121;
}
.cid-std1kwQ2BZ .mbr-text,
.cid-std1kwQ2BZ .mbr-section-btn {
  color: #061622;
}
.cid-std1kwQ2BZ LABEL {
  color: #ffffff;
}
.cid-std1kwQ2BZ H6 {
  color: #232323;
}
.cid-v7uHHZw4gJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #265276;
}
.cid-v7uHHZw4gJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v7uHHZw4gJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7uHHZw4gJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v83gVWVbag .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v83gVWVbag .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v83gVWVbag a {
  font-style: normal;
}
.cid-v83gVWVbag .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v83gVWVbag .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v83gVWVbag .nav-item:focus,
.cid-v83gVWVbag .nav-link:focus {
  outline: none;
}
.cid-v83gVWVbag .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v83gVWVbag .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v83gVWVbag .menu-logo {
  margin-right: auto;
}
.cid-v83gVWVbag .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v83gVWVbag .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v83gVWVbag .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-v83gVWVbag .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v83gVWVbag .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v83gVWVbag button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v83gVWVbag button.navbar-toggler:focus {
  outline: none;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #265276;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .btn {
  display: -webkit-flex;
}
.cid-v83gVWVbag .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing,
.cid-v83gVWVbag .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-v83gVWVbag .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-v83gVWVbag .collapsed button.navbar-toggler {
  display: block;
}
.cid-v83gVWVbag .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v83gVWVbag .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-v83gVWVbag .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-v83gVWVbag.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag img {
    height: 3.8rem !important;
  }
  .cid-v83gVWVbag .btn {
    display: -webkit-flex;
  }
  .cid-v83gVWVbag button.navbar-toggler {
    display: block;
  }
  .cid-v83gVWVbag .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v83gVWVbag .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing,
  .cid-v83gVWVbag .navbar-collapse.show {
    display: block !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v83gVWVbag .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v83gVWVbag .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v83gVWVbag .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v83gVWVbag .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v83gVWVbag .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v83gVWVbag .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v83gVWVbag .nav-link:hover,
.cid-v83gVWVbag .dropdown-item:hover {
  color: #465052 !important;
}
.cid-ucWelSQuWZ {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #ffffff;
}
.cid-ucWelSQuWZ .mbr-text,
.cid-ucWelSQuWZ blockquote {
  color: #767676;
}
.cid-ucW5xPnUFY {
  padding-top: 120px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-ucW5xPnUFY .mbr-section-subtitle {
  color: #767676;
}
.cid-ucW5xPnUFY .mbr-section-subtitle DIV {
  text-align: center;
}
.cid-tc09A2IMNW {
  background: #ffffff;
  background: linear-gradient(0deg, #000000, #ffffff);
}
.cid-tc09A2IMNW .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-tc09A2IMNW figcaption {
  position: relative;
}
.cid-tc09A2IMNW figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tc09A2IMNW .image-block {
    width: 100% !important;
  }
}
.cid-v7uHHZw4gJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #265276;
}
.cid-v7uHHZw4gJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v7uHHZw4gJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7uHHZw4gJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v83gVWVbag .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v83gVWVbag .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v83gVWVbag a {
  font-style: normal;
}
.cid-v83gVWVbag .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v83gVWVbag .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v83gVWVbag .nav-item:focus,
.cid-v83gVWVbag .nav-link:focus {
  outline: none;
}
.cid-v83gVWVbag .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v83gVWVbag .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v83gVWVbag .menu-logo {
  margin-right: auto;
}
.cid-v83gVWVbag .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v83gVWVbag .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v83gVWVbag .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-v83gVWVbag .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v83gVWVbag .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v83gVWVbag button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v83gVWVbag button.navbar-toggler:focus {
  outline: none;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #265276;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .btn {
  display: -webkit-flex;
}
.cid-v83gVWVbag .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing,
.cid-v83gVWVbag .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-v83gVWVbag .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-v83gVWVbag .collapsed button.navbar-toggler {
  display: block;
}
.cid-v83gVWVbag .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v83gVWVbag .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-v83gVWVbag .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-v83gVWVbag.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag img {
    height: 3.8rem !important;
  }
  .cid-v83gVWVbag .btn {
    display: -webkit-flex;
  }
  .cid-v83gVWVbag button.navbar-toggler {
    display: block;
  }
  .cid-v83gVWVbag .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v83gVWVbag .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing,
  .cid-v83gVWVbag .navbar-collapse.show {
    display: block !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v83gVWVbag .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v83gVWVbag .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v83gVWVbag .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v83gVWVbag .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v83gVWVbag .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v83gVWVbag .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v83gVWVbag .nav-link:hover,
.cid-v83gVWVbag .dropdown-item:hover {
  color: #465052 !important;
}
.cid-umOO3a7Uru {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #173b56;
}
.cid-unnQTmXWIj {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #758bac;
}
.cid-unnQTmXWIj P {
  color: #767676;
}
.cid-unnQTmXWIj H1 {
  color: #ffffff;
}
.cid-unnQTmXWIj H3 {
  color: #f9f295;
}
.cid-unnQTmXWIj .mbr-text,
.cid-unnQTmXWIj .mbr-section-btn {
  color: #ffffff;
}
.cid-unnQPoIROe {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #6b9e96;
}
.cid-unnQPoIROe h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-unnQPoIROe p {
  color: #767676;
  text-align: left;
}
.cid-unnQPoIROe .card-box {
  padding-top: 2rem;
}
.cid-unnQPoIROe .card-wrapper {
  height: 100%;
}
.cid-unnQPoIROe .card-title {
  color: #ffffff;
}
.cid-unnQPoIROe P {
  color: #ffffff;
}
.cid-unnQM56A1D {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #667f92;
}
.cid-unnQM56A1D h2 {
  text-align: center;
}
.cid-unnQM56A1D h3 {
  text-align: center;
  font-weight: 300;
}
.cid-unnQM56A1D p {
  color: #767676;
}
.cid-unnQM56A1D img {
  object-fit: cover;
}
.cid-unnQM56A1D .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-unnQM56A1D .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-unnQM56A1D .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-unnQM56A1D .mbr-section-subtitle {
  color: #767676;
}
.cid-unnQM56A1D .card-title {
  font-weight: 500;
}
.cid-unnQM56A1D .card-img {
  text-align: inherit;
}
.cid-unnQM56A1D .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-unnQM56A1D .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-unnQM56A1D .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unnQM56A1D .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-unnQM56A1D .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-unnQM56A1D .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-unnQM56A1D .mbr-section-text {
  color: #ffffff;
}
.cid-unnQM56A1D .mbr-section-title {
  color: #ffffff;
}
.cid-unnQM56A1D .mbr-crt-title {
  color: #ffffff;
}
.cid-unnQJqOB8C {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #79a6a0;
}
.cid-unnQJqOB8C h2 {
  text-align: center;
}
.cid-unnQJqOB8C h3 {
  text-align: center;
  font-weight: 300;
}
.cid-unnQJqOB8C p {
  color: #767676;
}
.cid-unnQJqOB8C img {
  object-fit: cover;
}
.cid-unnQJqOB8C .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-unnQJqOB8C .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-unnQJqOB8C .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-unnQJqOB8C .mbr-section-subtitle {
  color: #767676;
}
.cid-unnQJqOB8C .card-title {
  font-weight: 500;
}
.cid-unnQJqOB8C .card-img {
  text-align: inherit;
}
.cid-unnQJqOB8C .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-unnQJqOB8C .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-unnQJqOB8C .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unnQJqOB8C .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-unnQJqOB8C .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-unnQJqOB8C .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-unnQJqOB8C .mbr-section-text {
  color: #ffffff;
}
.cid-unnQJqOB8C .mbr-section-title {
  color: #ffffff;
}
.cid-unnQJqOB8C .mbr-crt-title {
  color: #ffffff;
}
.cid-unnQGeZDfx {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #00ae92;
}
.cid-unnQGeZDfx h2 {
  text-align: center;
}
.cid-unnQGeZDfx h3 {
  text-align: center;
  font-weight: 300;
}
.cid-unnQGeZDfx p {
  color: #767676;
}
.cid-unnQGeZDfx img {
  object-fit: cover;
}
.cid-unnQGeZDfx .block-content {
  display: -webkit-flex;
  flex-direction: column;
  -webkit-flex-direction: column;
  flex-basis: 100%;
  -webkit-flex-basis: 100%;
}
.cid-unnQGeZDfx .mbr-figure {
  align-self: flex-start;
  -webkit-align-self: flex-start;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}
.cid-unnQGeZDfx .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-unnQGeZDfx .mbr-section-subtitle {
  color: #767676;
}
.cid-unnQGeZDfx .card-title {
  font-weight: 500;
}
.cid-unnQGeZDfx .card-img {
  text-align: inherit;
}
.cid-unnQGeZDfx .card-img span {
  font-size: 48px;
  color: #707070;
}
@media (min-width: 992px) {
  .cid-unnQGeZDfx .mbr-figure {
    padding-right: 2rem;
    padding-left: 2rem;
    height: 100%;
  }
}
@media (max-width: 991px) {
  .cid-unnQGeZDfx .mbr-figure {
    padding-bottom: 2rem;
    padding-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-unnQGeZDfx .block-content {
    flex-direction: row;
    -webkit-flex-direction: row;
    text-align: center;
  }
  .cid-unnQGeZDfx .block-content .card {
    flex-basis: 100%;
    -webkit-flex-basis: 100%;
  }
  .cid-unnQGeZDfx .card:nth-child(1) {
    padding-bottom: 0!important;
  }
}
.cid-unnQGeZDfx .mbr-section-text {
  color: #ffffff;
}
.cid-unnQGeZDfx .mbr-section-title {
  color: #ffffff;
}
.cid-unnQGeZDfx .mbr-crt-title {
  color: #ffffff;
}
.cid-umOO3buvjA .modal-body .close {
  background: #1b1b1b;
}
.cid-umOO3buvjA .modal-body .close span {
  font-style: normal;
}
.cid-umOO3buvjA .carousel-inner > .active,
.cid-umOO3buvjA .carousel-inner > .next,
.cid-umOO3buvjA .carousel-inner > .prev {
  display: flex;
}
.cid-umOO3buvjA .carousel-control .icon-next,
.cid-umOO3buvjA .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-umOO3buvjA .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-umOO3buvjA .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-umOO3buvjA .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-umOO3buvjA .boxed-slider > div {
  position: relative;
}
.cid-umOO3buvjA .container img {
  width: 100%;
}
.cid-umOO3buvjA .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-umOO3buvjA .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-umOO3buvjA .mbr-table-cell {
  padding: 0;
}
.cid-umOO3buvjA .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-umOO3buvjA .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: -webkit-flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-align-items: center;
}
.cid-umOO3buvjA .mbr-overlay {
  z-index: 1;
}
.cid-umOO3buvjA .container-slide.container {
  min-width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-umOO3buvjA .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 1;
}
.cid-umOO3buvjA .carousel-item.active.right,
.cid-umOO3buvjA .carousel-item.next {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-umOO3buvjA .carousel-item.active.left,
.cid-umOO3buvjA .carousel-item.prev {
  left: 0;
  transition: opacity 0.7s ease-in-out;
  opacity: 0;
}
.cid-umOO3buvjA .carousel-item.active,
.cid-umOO3buvjA .carousel-item.next.left,
.cid-umOO3buvjA .carousel-item.prev.right {
  left: 0;
  opacity: 1;
}
.cid-umOO3buvjA .mbr-slider .carousel-control {
  top: 50%;
  width: 70px;
  height: 70px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
  z-index: 11;
}
.cid-umOO3buvjA .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-umOO3buvjA .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-umOO3buvjA .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .cid-umOO3buvjA .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-umOO3buvjA .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-umOO3buvjA .mbr-slider .carousel-indicators li {
  max-width: 20px;
  width: 20px;
  height: 20px;
  max-height: 20px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-umOO3buvjA .mbr-slider .carousel-indicators li.active,
.cid-umOO3buvjA .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-umOO3buvjA .mbr-slider .carousel-indicators li::after,
.cid-umOO3buvjA .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-umOO3buvjA .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-umOO3buvjA .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-umOO3buvjA .mbr-slider > .container img {
  width: 100%;
}
.cid-umOO3buvjA .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-umOO3buvjA .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-umOO3buvjA .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-umOO3buvjA .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-umOO3buvjA .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-umOO3buvjA .carousel-item .container.container-slide {
  position: initial;
  min-height: 0;
}
.cid-umOO3buvjA .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-umOO3buvjA .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-umOO3buvjA .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-umOO3buvjA .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-umOO3buvjA .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-umOO3buvjA .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-umOO3buvjA .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-v7uHHZw4gJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #265276;
}
.cid-v7uHHZw4gJ .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v7uHHZw4gJ .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v7uHHZw4gJ .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v7uHHZw4gJ .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v7uHHZw4gJ .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v7uHHZw4gJ .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v7uHHZw4gJ .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v7uHHZw4gJ .media-container-row .row-copirayt p {
  width: 100%;
}
.cid-v83gVWVbag .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v83gVWVbag .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v83gVWVbag a {
  font-style: normal;
}
.cid-v83gVWVbag .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v83gVWVbag .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v83gVWVbag .nav-item:focus,
.cid-v83gVWVbag .nav-link:focus {
  outline: none;
}
.cid-v83gVWVbag .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v83gVWVbag .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v83gVWVbag .menu-logo {
  margin-right: auto;
}
.cid-v83gVWVbag .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v83gVWVbag .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v83gVWVbag .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-v83gVWVbag .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v83gVWVbag .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v83gVWVbag button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v83gVWVbag button.navbar-toggler:focus {
  outline: none;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #265276;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .btn {
  display: -webkit-flex;
}
.cid-v83gVWVbag .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing,
.cid-v83gVWVbag .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-v83gVWVbag .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-v83gVWVbag .collapsed button.navbar-toggler {
  display: block;
}
.cid-v83gVWVbag .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v83gVWVbag .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-v83gVWVbag .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-v83gVWVbag.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag img {
    height: 3.8rem !important;
  }
  .cid-v83gVWVbag .btn {
    display: -webkit-flex;
  }
  .cid-v83gVWVbag button.navbar-toggler {
    display: block;
  }
  .cid-v83gVWVbag .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v83gVWVbag .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing,
  .cid-v83gVWVbag .navbar-collapse.show {
    display: block !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v83gVWVbag .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v83gVWVbag .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v83gVWVbag .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v83gVWVbag .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v83gVWVbag .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v83gVWVbag .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v83gVWVbag .nav-link:hover,
.cid-v83gVWVbag .dropdown-item:hover {
  color: #465052 !important;
}
.cid-v83gVWVbag .navbar {
  background: #ffffff;
  transition: none;
  min-height: 77px;
  padding: .5rem 0;
}
.cid-v83gVWVbag .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-v83gVWVbag a {
  font-style: normal;
}
.cid-v83gVWVbag .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  text-decoration: none;
}
.cid-v83gVWVbag .nav-item a {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-v83gVWVbag .nav-item:focus,
.cid-v83gVWVbag .nav-link:focus {
  outline: none;
}
.cid-v83gVWVbag .btn {
  padding: 0.4rem 1.5rem;
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-v83gVWVbag .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-v83gVWVbag .menu-logo {
  margin-right: auto;
}
.cid-v83gVWVbag .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .menu-logo .navbar-brand .navbar-logo a {
  display: inline-flex;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-v83gVWVbag .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-v83gVWVbag .dropdown .dropdown-menu {
  background: #ffffff;
  visibility: hidden;
  display: block;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v83gVWVbag .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-v83gVWVbag .dropdown.open > .dropdown-menu {
  visibility: visible;
}
.cid-v83gVWVbag .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-v83gVWVbag .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-v83gVWVbag .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-v83gVWVbag button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-v83gVWVbag button.navbar-toggler:focus {
  outline: none;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #265276;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-v83gVWVbag button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-v83gVWVbag nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-v83gVWVbag .collapsed.navbar-expand {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .btn {
  display: -webkit-flex;
}
.cid-v83gVWVbag .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing,
.cid-v83gVWVbag .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-v83gVWVbag .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-v83gVWVbag .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .cid-v83gVWVbag .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3.8rem);
  }
}
.cid-v83gVWVbag .collapsed button.navbar-toggler {
  display: block;
}
.cid-v83gVWVbag .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-v83gVWVbag .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  overflow: hidden;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity, padding, height;
}
.cid-v83gVWVbag .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-v83gVWVbag .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 1023px) {
  .cid-v83gVWVbag.navbar-expand {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag img {
    height: 3.8rem !important;
  }
  .cid-v83gVWVbag .btn {
    display: -webkit-flex;
  }
  .cid-v83gVWVbag button.navbar-toggler {
    display: block;
  }
  .cid-v83gVWVbag .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-v83gVWVbag .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-v83gVWVbag .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing,
  .cid-v83gVWVbag .navbar-collapse.show {
    display: block !important;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-v83gVWVbag .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-v83gVWVbag .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-v83gVWVbag .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    overflow: hidden;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-v83gVWVbag .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-v83gVWVbag .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-v83gVWVbag .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-v83gVWVbag .menu-logo {
    flex-shrink: 0;
    -webkit-flex-shrink: 0;
  }
}
.cid-v83gVWVbag .navbar-collapse {
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-v83gVWVbag .nav-link:hover,
.cid-v83gVWVbag .dropdown-item:hover {
  color: #465052 !important;
}
.cid-v8333EAwJ7 {
  background: #ffffff;
}
.cid-v8333EAwJ7 .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v8333EAwJ7 .mbr-figure {
  margin: 0 auto;
}
.cid-v8333EAwJ7 figcaption {
  position: relative;
}
.cid-v8333EAwJ7 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v8333EAwJ7 .image-block {
    width: 100% !important;
  }
}
.cid-v831yQxEsv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-v831yQxEsv .mbr-section-subtitle {
  color: #061622;
}
.cid-v831yQxEsv H2 {
  color: #405051;
}
.cid-v831yQF5sD {
  background: #ffffff;
}
.cid-v831yQF5sD .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v831yQF5sD .mbr-figure {
  margin: 0 auto;
}
.cid-v831yQF5sD figcaption {
  position: relative;
}
.cid-v831yQF5sD figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v831yQF5sD .image-block {
    width: 100% !important;
  }
}
.cid-v831yQOD40 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-v831yQOD40 .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-v831yQOD40 .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v831yQOD40 .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.cid-v831yQOD40 .card-box {
  margin: auto;
}
.cid-v831yQOD40 .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 5rem;
  padding-right: 1.5rem;
  color: #173b56;
}
@media (max-width: 767px) {
  .cid-v831yQOD40 .iconfont-wrapper .mbr-iconfont {
    padding-right: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v831yQOD40 .mbr-section-title {
  border-top: 1px solid #a6a6a6;
  padding-top: 1rem;
}
.cid-v831yQOD40 .card-text {
  color: #0b2438;
}
.cid-v831yR7sWp {
  padding-top: 1rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-v831yR7sWp .card-wrapper {
  display: flex;
}
@media (max-width: 991px) {
  .cid-v831yR7sWp .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-v831yR7sWp .card-wrapper {
    flex-direction: column;
    margin: auto;
    text-align: center;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.cid-v831yR7sWp .card-box {
  margin: auto;
}
.cid-v831yR7sWp .iconfont-wrapper .mbr-iconfont {
  display: block;
  font-size: 5rem;
  padding-right: 1.5rem;
  color: #173b56;
}
@media (max-width: 767px) {
  .cid-v831yR7sWp .iconfont-wrapper .mbr-iconfont {
    padding-right: 0rem;
    margin-bottom: 1rem;
  }
}
.cid-v831yR7sWp .mbr-section-title {
  border-top: 1px solid #a6a6a6;
  padding-top: 1rem;
}
.cid-v831yR7sWp .card-text {
  color: #0b2438;
}
.cid-v835Vno3kb {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v835Vno3kb .mbr-fallback-image.disabled {
  display: none;
}
.cid-v835Vno3kb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v835Vno3kb .content-wrap {
  margin: 0 -50px;
}
.cid-v835Vno3kb .content-wrap .card {
  padding: 0 50px;
}
.cid-v835Vno3kb .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-v835Vno3kb .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-v835Vno3kb .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-v835Vno3kb .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-v835Vno3kb .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v835Vno3kb .content-wrap .title-wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v835Vno3kb .content-wrap .title-wrapper {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.cid-v835Vno3kb .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v835Vno3kb .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v835Vno3kb .content-wrap .text-wrapper {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 100px;
}
@media (max-width: 1440px) {
  .cid-v835Vno3kb .content-wrap .text-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cid-v835Vno3kb .content-wrap .text-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v835Vno3kb .content-wrap .text-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v835Vno3kb .content-wrap .text-wrapper .list-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v835Vno3kb .content-wrap .text-wrapper .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v835Vno3kb .content-wrap .text-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.cid-v835Vno3kb .content-wrap .text-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v835Vno3kb .content-wrap .text-wrapper .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  background-color: #1f1f1f;
  color: #f1f1f1;
}
.cid-v835Vno3kb .content-wrap .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v835Vno3kb .content-wrap .text-wrapper .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-v835Vno3kb .mbr-label {
  color: #1f1f1f;
}
.cid-v835Vno3kb .mbr-section-title {
  color: #1f1f1f;
}
.cid-v835Vno3kb .mbr-text {
  color: #5a5a5a;
}
.cid-v835Vno3kb .list {
  color: #5a5a5a;
}
.cid-v835Vno3kb .list,
.cid-v835Vno3kb .item-wrap {
  color: #061622;
}
.cid-v835Vno3kb .mbr-text,
.cid-v835Vno3kb .mbr-section-btn {
  color: #061622;
}
.cid-v831yRpJCS {
  background: #ffffff;
}
.cid-v831yRpJCS .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v831yRpJCS .mbr-figure {
  margin: 0 auto;
}
.cid-v831yRpJCS figcaption {
  position: relative;
}
.cid-v831yRpJCS figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v831yRpJCS .image-block {
    width: 100% !important;
  }
}
.cid-v8370GtdcS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v8370GtdcS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8370GtdcS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8370GtdcS .content-wrap {
  margin: 0 -50px;
}
.cid-v8370GtdcS .content-wrap .card {
  padding: 0 50px;
}
.cid-v8370GtdcS .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-v8370GtdcS .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-v8370GtdcS .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-v8370GtdcS .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-v8370GtdcS .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v8370GtdcS .content-wrap .title-wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v8370GtdcS .content-wrap .title-wrapper {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.cid-v8370GtdcS .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v8370GtdcS .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v8370GtdcS .content-wrap .text-wrapper {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 100px;
}
@media (max-width: 1440px) {
  .cid-v8370GtdcS .content-wrap .text-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cid-v8370GtdcS .content-wrap .text-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v8370GtdcS .content-wrap .text-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v8370GtdcS .content-wrap .text-wrapper .list-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v8370GtdcS .content-wrap .text-wrapper .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v8370GtdcS .content-wrap .text-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.cid-v8370GtdcS .content-wrap .text-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v8370GtdcS .content-wrap .text-wrapper .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  background-color: #1f1f1f;
  color: #f1f1f1;
}
.cid-v8370GtdcS .content-wrap .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v8370GtdcS .content-wrap .text-wrapper .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-v8370GtdcS .mbr-label {
  color: #1f1f1f;
}
.cid-v8370GtdcS .mbr-section-title {
  color: #1f1f1f;
}
.cid-v8370GtdcS .mbr-text {
  color: #5a5a5a;
}
.cid-v8370GtdcS .list {
  color: #5a5a5a;
}
.cid-v8370GtdcS .list,
.cid-v8370GtdcS .item-wrap {
  color: #061622;
}
.cid-v8370GtdcS .mbr-text,
.cid-v8370GtdcS .mbr-section-btn {
  color: #061622;
}
.cid-v831yRTIye {
  background: #ffffff;
}
.cid-v831yRTIye .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v831yRTIye .mbr-figure {
  margin: 0 auto;
}
.cid-v831yRTIye figcaption {
  position: relative;
}
.cid-v831yRTIye figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v831yRTIye .image-block {
    width: 100% !important;
  }
}
.cid-v837pc77wS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v837pc77wS .mbr-fallback-image.disabled {
  display: none;
}
.cid-v837pc77wS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v837pc77wS .content-wrap {
  margin: 0 -50px;
}
.cid-v837pc77wS .content-wrap .card {
  padding: 0 50px;
}
.cid-v837pc77wS .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-v837pc77wS .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-v837pc77wS .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-v837pc77wS .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-v837pc77wS .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v837pc77wS .content-wrap .title-wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v837pc77wS .content-wrap .title-wrapper {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.cid-v837pc77wS .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v837pc77wS .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v837pc77wS .content-wrap .text-wrapper {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 100px;
}
@media (max-width: 1440px) {
  .cid-v837pc77wS .content-wrap .text-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cid-v837pc77wS .content-wrap .text-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v837pc77wS .content-wrap .text-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v837pc77wS .content-wrap .text-wrapper .list-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v837pc77wS .content-wrap .text-wrapper .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v837pc77wS .content-wrap .text-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.cid-v837pc77wS .content-wrap .text-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v837pc77wS .content-wrap .text-wrapper .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  background-color: #1f1f1f;
  color: #f1f1f1;
}
.cid-v837pc77wS .content-wrap .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v837pc77wS .content-wrap .text-wrapper .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-v837pc77wS .mbr-label {
  color: #1f1f1f;
}
.cid-v837pc77wS .mbr-section-title {
  color: #1f1f1f;
}
.cid-v837pc77wS .mbr-text {
  color: #5a5a5a;
}
.cid-v837pc77wS .list {
  color: #5a5a5a;
}
.cid-v837pc77wS .list,
.cid-v837pc77wS .item-wrap {
  color: #061622;
}
.cid-v837pc77wS .mbr-text,
.cid-v837pc77wS .mbr-section-btn {
  color: #061622;
}
.cid-v831ySLZLK {
  background: #ffffff;
}
.cid-v831ySLZLK .image-block {
  margin: auto;
  width: 100% !important;
}
.cid-v831ySLZLK .mbr-figure {
  margin: 0 auto;
}
.cid-v831ySLZLK figcaption {
  position: relative;
}
.cid-v831ySLZLK figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-v831ySLZLK .image-block {
    width: 100% !important;
  }
}
.cid-v8384E4fp1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-v8384E4fp1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-v8384E4fp1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v8384E4fp1 .content-wrap {
  margin: 0 -50px;
}
.cid-v8384E4fp1 .content-wrap .card {
  padding: 0 50px;
}
.cid-v8384E4fp1 .content-wrap .label-wrapper {
  margin-bottom: 20px;
}
.cid-v8384E4fp1 .content-wrap .label-wrapper .label-wrap {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.cid-v8384E4fp1 .content-wrap .label-wrapper .label-wrap .iconfont-wrapper {
  display: flex;
}
.cid-v8384E4fp1 .content-wrap .label-wrapper .label-wrap .iconfont-wrapper .mbr-iconfont {
  display: inline-flex;
  font-size: 20px;
}
.cid-v8384E4fp1 .content-wrap .label-wrapper .label-wrap .mbr-label {
  margin-bottom: 0;
}
.cid-v8384E4fp1 .content-wrap .title-wrapper {
  padding-bottom: 50px;
  border-bottom: 1px solid #c6c6c6;
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-v8384E4fp1 .content-wrap .title-wrapper {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.cid-v8384E4fp1 .content-wrap .title-wrapper .mbr-section-title {
  display: inline-block;
  width: 70%;
  margin-bottom: 0;
}
@media (max-width: 992px) {
  .cid-v8384E4fp1 .content-wrap .title-wrapper .mbr-section-title {
    width: 100%;
  }
}
.cid-v8384E4fp1 .content-wrap .text-wrapper {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 100px;
}
@media (max-width: 1440px) {
  .cid-v8384E4fp1 .content-wrap .text-wrapper {
    gap: 50px;
  }
}
@media (max-width: 1200px) {
  .cid-v8384E4fp1 .content-wrap .text-wrapper {
    gap: 30px;
  }
}
@media (max-width: 992px) {
  .cid-v8384E4fp1 .content-wrap .text-wrapper {
    display: block;
  }
}
@media (max-width: 992px) {
  .cid-v8384E4fp1 .content-wrap .text-wrapper .list-wrapper {
    margin-bottom: 30px;
  }
}
.cid-v8384E4fp1 .content-wrap .text-wrapper .list-wrapper .list {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.cid-v8384E4fp1 .content-wrap .text-wrapper .list-wrapper .list .item-wrap {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
}
.cid-v8384E4fp1 .content-wrap .text-wrapper .list-wrapper .list .item-wrap:last-child {
  margin-bottom: 0;
}
.cid-v8384E4fp1 .content-wrap .text-wrapper .list-wrapper .list .item-wrap::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  font-size: 14px;
  background-color: #1f1f1f;
  color: #f1f1f1;
}
.cid-v8384E4fp1 .content-wrap .text-wrapper .text-wrap .mbr-text {
  margin-bottom: 0;
}
.cid-v8384E4fp1 .content-wrap .text-wrapper .text-wrap .mbr-section-btn {
  margin-top: 20px;
}
.cid-v8384E4fp1 .mbr-label {
  color: #1f1f1f;
}
.cid-v8384E4fp1 .mbr-section-title {
  color: #1f1f1f;
}
.cid-v8384E4fp1 .mbr-text {
  color: #5a5a5a;
}
.cid-v8384E4fp1 .list {
  color: #5a5a5a;
}
.cid-v8384E4fp1 .list,
.cid-v8384E4fp1 .item-wrap {
  color: #061622;
}
.cid-v8384E4fp1 .mbr-text,
.cid-v8384E4fp1 .mbr-section-btn {
  color: #061622;
}
.cid-v831yT8sg7 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #265276;
}
.cid-v831yT8sg7 .row-links {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v831yT8sg7 .social-row {
  width: 100%;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-v831yT8sg7 .media-container-row {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-v831yT8sg7 .media-container-row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 0;
}
.cid-v831yT8sg7 .media-container-row .foot-menu li {
  padding: 0 1rem 1rem 1rem;
}
.cid-v831yT8sg7 .media-container-row .foot-menu li p {
  margin: 0;
}
.cid-v831yT8sg7 .media-container-row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-v831yT8sg7 .media-container-row .social-list .mbr-iconfont-social {
  font-size: 1.5rem;
  color: #ffffff;
}
.cid-v831yT8sg7 .media-container-row .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-v831yT8sg7 .media-container-row .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-v831yT8sg7 .media-container-row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-v831yT8sg7 .media-container-row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-v831yT8sg7 .media-container-row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-v831yT8sg7 .media-container-row .row-copirayt p {
  width: 100%;
}
