body {
  font-family: Jost;
}
.display-1 {
  font-family: 'bgothm';
  font-size: 4rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'bgothm';
  font-size: 2.7rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.375rem;
}
.display-4 {
  font-family: 'AGENCYR';
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'bgothm';
  font-size: 1.7rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.125rem;
}
.display-7 {
  font-family: 'AGENCYR';
  font-size: 1.3rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.625rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 3.2rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.05rem + (4 - 2.05) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.16rem;
    font-size: calc( 1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.595rem + (2.7 - 1.595) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.36rem;
    font-size: calc( 1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.245rem + (1.7 - 1.245) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #0193b1 !important;
}
.bg-success {
  background-color: #0193b1 !important;
}
.bg-info {
  background-color: #0193b1 !important;
}
.bg-warning {
  background-color: #000000 !important;
}
.bg-danger {
  background-color: #ff6666 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #0193b1 !important;
  border-color: #0193b1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #014b5b !important;
  border-color: #014b5b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #014b5b !important;
  border-color: #014b5b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info,
.btn-info:active {
  background-color: #0193b1 !important;
  border-color: #0193b1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #014b5b !important;
  border-color: #014b5b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #014b5b !important;
  border-color: #014b5b !important;
}
.btn-success,
.btn-success:active {
  background-color: #0193b1 !important;
  border-color: #0193b1 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #014b5b !important;
  border-color: #014b5b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #014b5b !important;
  border-color: #014b5b !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #000000 !important;
  border-color: #000000 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0193b1;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #014b5b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #0193b1 !important;
  border-color: #0193b1 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0193b1;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #014b5b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #0193b1 !important;
  border-color: #0193b1 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #0193b1;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #014b5b !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #0193b1 !important;
  border-color: #0193b1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #000000;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #0193b1 !important;
}
.text-secondary {
  color: #000000 !important;
}
.text-success {
  color: #0193b1 !important;
}
.text-info {
  color: #0193b1 !important;
}
.text-warning {
  color: #000000 !important;
}
.text-danger {
  color: #ff6666 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #003f4c !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #003f4c !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #003f4c !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #000000 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff0000 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #0193b1;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #0193b1;
}
.alert-warning {
  background-color: #000000;
}
.alert-danger {
  background-color: #ff6666;
}
.mbr-gallery-filter li.active .btn {
  background-color: #0193b1;
  border-color: #0193b1;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #0193b1;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #34dbfe;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #34dbfe;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #34dbfe;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b3b3b3;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'AGENCYR';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #0193b1 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'AGENCYR';
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #0193b1;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #0193b1;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #0193b1;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #0193b1;
  border-bottom-color: #0193b1;
}
.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: #0193b1 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #000000 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%230193b1' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tF06wwDtiU {
  background-color: #0193b1;
  display: flex;
  flex-direction: column;
}
.cid-tF06wwDtiU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF06wwDtiU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF06wwDtiU .container-fluid {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cid-tF06wwDtiU .row {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.cid-tF06wwDtiU .col-text {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 32px !important;
  background-image: url("../../../assets/images/p2-physiotherapie-training-1.jpg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .cid-tF06wwDtiU .col-text {
    background-position: 33% center;
  }
}
@media (max-width: 1399px) {
  .cid-tF06wwDtiU .col-text {
    padding: 20px !important;
  }
}
@media (max-width: 991px) {
  .cid-tF06wwDtiU .col-text {
    border-radius: 12px;
  }
}
@media (max-width: 767px) {
  .cid-tF06wwDtiU .col-text {
    padding: 12px !important;
  }
}
.cid-tF06wwDtiU .col-text:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  opacity: 0;
}
.cid-tF06wwDtiU .mbr-section-title {
  position: relative;
  color: #ffffff;
}
.cid-tF06wwDtiU .subtitle-wrap {
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 32px;
}
.cid-tF06wwDtiU .iconfont-wrapper {
  border: 2px solid #1a1e21;
  border-radius: 50%;
  background: #1a1e21;
  transition: .3s all;
}
.cid-tF06wwDtiU .iconfont-wrapper .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 20px;
  aspect-ratio: 1;
  font-size: 2rem;
  color: #0193b1;
  margin-bottom: 0;
}
@media (max-width: 1399px) {
  .cid-tF06wwDtiU .iconfont-wrapper .mbr-iconfont {
    min-width: 66px;
    padding: 10px;
  }
}
@media (max-width: 767px) {
  .cid-tF06wwDtiU .iconfont-wrapper .mbr-iconfont {
    min-width: 56px;
    padding: 5px;
  }
}
@media (min-width: 992px) {
  .cid-tF06wwDtiU .iconfont-wrapper:hover {
    border-color: #0193b1;
    background: transparent;
  }
}
.cid-tF06wwDtiU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tF06wwDtiU .mbr-text {
  position: relative;
  color: #e3ebf3;
}
.cid-tF06wwDtiU .mbr-section-btn {
  position: relative;
}
@media (max-width: 962px) {
  .cid-tF06wwDtiU .mobile-image {
    text-align: center;
  }
  .cid-tF06wwDtiU .mobile-image img {
    max-width: 80%;
    display: block;
    visibility: visible;
    margin: 0 auto;
    margin-top: 12%;
    margin-bottom: 50%;
  }
}
@media (min-width: 961px) {
  .cid-tF06wwDtiU .mobile-image img {
    display: none;
    visibility: hidden;
  }
}
@media (max-width: 767px) {
  .cid-tF06wwDtiU .title-text {
    font-size: 1.75rem;
    line-height: 90%;
  }
}
.cid-tF03wy5Vxm .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tF03wy5Vxm .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tF03wy5Vxm .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tF03wy5Vxm .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tF03wy5Vxm .navbar-logo {
  margin: 0 !important;
}
.cid-tF03wy5Vxm .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tF03wy5Vxm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tF03wy5Vxm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tF03wy5Vxm .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tF03wy5Vxm .navbar-nav {
  min-width: 45%;
}
.cid-tF03wy5Vxm .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tF03wy5Vxm .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tF03wy5Vxm .dropdown-item {
  color: #ffffff !important;
}
.cid-tF03wy5Vxm .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tF03wy5Vxm .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tF03wy5Vxm .nav-link:hover {
  color: #ffffff !important;
}
.cid-tF03wy5Vxm .nav-link:hover:before {
  opacity: 1;
}
.cid-tF03wy5Vxm .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tF03wy5Vxm .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tF03wy5Vxm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tF03wy5Vxm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tF03wy5Vxm .container {
  display: flex;
  margin: auto;
}
.cid-tF03wy5Vxm .navbar.opened {
  background: #0193b1 !important;
}
.cid-tF03wy5Vxm .nav-item:focus,
.cid-tF03wy5Vxm .nav-link:focus {
  outline: none;
}
.cid-tF03wy5Vxm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tF03wy5Vxm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tF03wy5Vxm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tF03wy5Vxm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tF03wy5Vxm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tF03wy5Vxm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tF03wy5Vxm .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tF03wy5Vxm .navbar.opened {
  transition: all 0.3s;
}
.cid-tF03wy5Vxm .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tF03wy5Vxm .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tF03wy5Vxm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tF03wy5Vxm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tF03wy5Vxm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tF03wy5Vxm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tF03wy5Vxm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tF03wy5Vxm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tF03wy5Vxm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tF03wy5Vxm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tF03wy5Vxm .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tF03wy5Vxm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tF03wy5Vxm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tF03wy5Vxm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tF03wy5Vxm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tF03wy5Vxm .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tF03wy5Vxm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tF03wy5Vxm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tF03wy5Vxm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tF03wy5Vxm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tF03wy5Vxm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tF03wy5Vxm .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tF03wy5Vxm .navbar .navbar-logo {
    display: none;
  }
}
.cid-tF03wy5Vxm .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tF03wy5Vxm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tF03wy5Vxm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tF03wy5Vxm .dropdown-item.active,
.cid-tF03wy5Vxm .dropdown-item:active {
  background-color: transparent;
}
.cid-tF03wy5Vxm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tF03wy5Vxm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tF03wy5Vxm .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tF03wy5Vxm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tF03wy5Vxm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tF03wy5Vxm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tF03wy5Vxm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tF03wy5Vxm .navbar-buttons {
  text-align: center;
}
.cid-tF03wy5Vxm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tF03wy5Vxm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tF03wy5Vxm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tF03wy5Vxm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF03wy5Vxm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tF03wy5Vxm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tF03wy5Vxm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF03wy5Vxm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tF03wy5Vxm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tF03wy5Vxm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tF03wy5Vxm .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tF03wy5Vxm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tF03wy5Vxm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tF03wy5Vxm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tF03wy5Vxm .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tF03wy5Vxm .navbar {
    height: 77px;
  }
  .cid-tF03wy5Vxm .navbar.opened {
    height: auto;
  }
  .cid-tF03wy5Vxm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tF03wy5Vxm .btn-danger {
  border-radius: 0px;
}
.cid-tF03wy5Vxm .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tF03wy5Vxm .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tF0cMjWoLY {
  overflow: visible !important;
  padding-top: 0rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tF0cMjWoLY .text-wrapper {
  background: #000000;
  padding: 3rem 1rem 5rem;
}
@media (min-width: 992px) {
  .cid-tF0cMjWoLY .text-wrapper {
    margin-bottom: -97px;
    padding: 80px;
    min-width: 625px;
    max-width: 625px;
    transform: translate(50%, -5rem);
    box-shadow: 6px 6px 6px 0px rgba(0, 0, 0, 0.2);
  }
}
@media (min-width: 1400px) {
  .cid-tF0cMjWoLY .text-wrapper {
    transform: translate(100%, -5rem);
  }
}
.cid-tF0cMjWoLY .mbr-section-subtitle {
  margin-bottom: 80px;
  color: #ffffff;
}
.cid-tF0cMjWoLY .mbr-text {
  font-weight: 300;
}
@media (min-width: 992px) {
  .cid-tF0cMjWoLY .display-5 {
    font-size: 29px;
  }
}
.cid-tF0cMjWoLY .card-wrapper {
  display: flex;
  margin-top: 80px;
}
.cid-tF0cMjWoLY .mbr-iconfont {
  font-size: 3rem;
  color: #0193b1;
  padding-right: 1.5rem;
}
.cid-tF0cMjWoLY .top {
  margin-top: 0;
}
@media (min-width: 768px) {
  .cid-tF0cMjWoLY .top1 {
    margin-top: 0;
  }
}
.cid-tF0cMjWoLY .card-title {
  color: #ffffff;
}
.cid-tF0xcilGSV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  overflow: hidden;
  background-color: #ffffff;
}
.cid-tF0xcilGSV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF0xcilGSV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tF0xcilGSV .container {
    padding: 0 16px;
  }
}
.cid-tF0xcilGSV .title-wrapper {
  position: relative;
  padding-right: 70px;
}
@media (max-width: 992px) {
  .cid-tF0xcilGSV .title-wrapper {
    padding-right: 0;
  }
}
.cid-tF0xcilGSV .title-wrapper .mbr-section-title {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tF0xcilGSV .title-wrapper .mbr-section-title {
    margin-bottom: 20px;
  }
}
.cid-tF0xcilGSV .title-wrapper .mbr-text {
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .cid-tF0xcilGSV .title-wrapper .mbr-text {
    margin-bottom: 20px;
  }
}
.cid-tF0xcilGSV .title-wrapper .line {
  position: absolute;
  left: 70px;
  width: 1px;
  height: 100vh;
  border-left: 2px solid #0193b1;
}
@media (max-width: 992px) {
  .cid-tF0xcilGSV .title-wrapper .line {
    display: none;
  }
}
.cid-tF0xcilGSV .card {
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  .cid-tF0xcilGSV .card {
    margin-bottom: 40px;
  }
}
.cid-tF0xcilGSV .card .icon-wrapper {
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .cid-tF0xcilGSV .card .icon-wrapper {
    margin-bottom: 16px;
  }
}
.cid-tF0xcilGSV .card .icon-wrapper .icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  border-radius: 100%;
}
.cid-tF0xcilGSV .card .icon-wrapper .icon-wrap:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0193b1;
  opacity: .2;
  border-radius: 100%;
}
.cid-tF0xcilGSV .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #0193b1;
  color: #ffffff;
  border-radius: 100%;
  z-index: 1;
}
.cid-tF0xcilGSV .card .content-wrapper .mbr-section-title {
  margin-bottom: 16px;
}
.cid-tF0xcilGSV .card .content-wrapper .mbr-text {
  margin-bottom: 0;
}
.cid-tF0xcilGSV .mbr-section-title {
  color: #08323C;
}
.cid-tF0xcilGSV .mbr-text {
  color: #08323C;
}
.cid-tF0xcilGSV .cid-tF0xcilGSV .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #0193b1;
  color: #ffffff;
  border-radius: 100%;
  z-index: 1;
  transition: all 0.3s ease;
}
.cid-tF0xcilGSV .cid-tF0xcilGSV .card .icon-wrapper .icon-wrap:hover .mbr-iconfont {
  transform: scale(1.2);
}
.cid-tF0oCAFB4U {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tF0oCAFB4U .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF0oCAFB4U .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF0oCAFB4U .col-title {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: sticky;
  top: 0;
  height: 100vh;
}
.cid-tF0oCAFB4U .title-container {
  display: flex;
  width: max-content;
  max-width: 23rem;
  padding: 12px 2rem;
  border-style: solid;
  border-width: 4px;
  border-color: #ffffff;
  border-radius: 0vw;
}
.cid-tF0oCAFB4U .mbr-section-title {
  color: #000000;
  margin-bottom: 0;
}
.cid-tF0oCAFB4U .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
  overflow: visible;
  width: 100%;
  max-width: 23rem;
  margin: 2rem 0 0;
  padding: 0;
}
.cid-tF0oCAFB4U .item-col {
  display: grid;
  grid-auto-columns: 1fr;
  grid-column-gap: 1rem;
  grid-row-gap: 8rem;
  grid-template-areas: ".";
  -ms-grid-columns: 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr 1rem 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  padding: 0;
  position: relative;
}
.cid-tF0oCAFB4U .item-container {
  display: flex;
  flex-direction: column;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-tF0oCAFB4U .item-container {
    grid-column-start: 1 !important;
    grid-column-end: -1 !important;
    max-width: 21.25rem;
    margin-right: auto;
    margin-left: auto;
  }
}
.cid-tF0oCAFB4U .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 0;
}
.cid-tF0oCAFB4U .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tF0oCAFB4U .text-wrapper {
  padding: 0.75rem 0.75rem 0.75rem 1rem;
  background-color: #ffffff;
}
.cid-tF0oCAFB4U .card-title {
  color: #1B1F0A;
  margin-bottom: 0;
}
.cid-tF0oCAFB4U .card-text {
  color: #1B1F0A;
  opacity: 0.8;
  margin-top: 4px;
  margin-bottom: 0;
}
.cid-tF0oCAFB4U .item-1 {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 1;
  grid-row-end: 2;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-1 {
    grid-column-end: 5;
  }
}
.cid-tF0oCAFB4U .item-2 {
  grid-column-start: 7;
  grid-column-end: 10;
  grid-row-start: 2;
  grid-row-end: 3;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-2 {
    grid-column-end: 11;
  }
}
.cid-tF0oCAFB4U .item-3 {
  grid-column-start: 10;
  grid-column-end: 13;
  grid-row-start: 3;
  grid-row-end: 4;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-3 {
    grid-column-start: 9;
  }
}
.cid-tF0oCAFB4U .item-4 {
  grid-column-start: 1;
  grid-column-end: 4;
  grid-row-start: 4;
  grid-row-end: 5;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-4 {
    grid-column-end: 5;
  }
}
.cid-tF0oCAFB4U .item-5 {
  grid-column-start: 5;
  grid-column-end: 8;
  grid-row-start: 5;
  grid-row-end: 6;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-5 {
    grid-column-end: 9;
  }
}
.cid-tF0oCAFB4U .item-6 {
  grid-column-start: 10;
  grid-column-end: 13;
  grid-row-start: 6;
  grid-row-end: 7;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-6 {
    grid-column-start: 9;
  }
}
.cid-tF0oCAFB4U .item-7 {
  grid-column-start: 3;
  grid-column-end: 6;
  grid-row-start: 7;
  grid-row-end: 8;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-7 {
    grid-column-end: 7;
  }
}
.cid-tF0oCAFB4U .item-8 {
  grid-column-start: 9;
  grid-column-end: 12;
  grid-row-start: 8;
  grid-row-end: 9;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-8 {
    grid-column-end: 13;
  }
}
.cid-tF0oCAFB4U .item-9 {
  grid-column-start: 6;
  grid-column-end: 9;
  grid-row-start: 9;
  grid-row-end: 10;
}
@media (max-width: 991px) {
  .cid-tF0oCAFB4U .item-9 {
    grid-column-end: 10;
  }
}
.cid-tF0oDsZTOK {
  padding-top: 10rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tF0oDsZTOK .row {
  align-items: center;
  width: 100%;
}
.cid-tF0oDsZTOK .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tF0oDsZTOK .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
  text-align: left;
}
.cid-tF0oDsZTOK .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tF0oDsZTOK .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #0193b1;
}
@media (max-width: 991px) {
  .cid-tF0oDsZTOK .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tF0oDsZTOK .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tF0oDsZTOK .content-container {
    padding: 2rem !important;
  }
}
.cid-tF0oDsZTOK .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tF0oDsZTOK .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tF0oDsZTOK .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tF0oDsZTOK .img-container {
    padding-right: 0;
  }
}
.cid-tF0oDsZTOK .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tF0oDsZTOK .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tF0oDsZTOK .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tF0oDsZTOK .text-container {
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tF0oDsZTOK .text-container {
    padding-left: 0;
  }
}
.cid-tF0oDsZTOK .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tF0oDsZTOK .label-text {
  width: 100%;
  color: #ffffff;
  padding: 0.375rem 0;
}
.cid-tF0oDsZTOK .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tF0oDsZTOK .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tF0oDsZTOK .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tF0qdHFSaB {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tF0qdHFSaB .row {
  align-items: center;
  width: 100%;
}
.cid-tF0qdHFSaB .mbr-section-head {
  margin-bottom: 2rem;
  padding: 0 !important;
}
.cid-tF0qdHFSaB .mbr-section-title {
  color: #000000;
  width: 100%;
  margin-bottom: 0;
}
.cid-tF0qdHFSaB .mbr-section-subtitle {
  color: #f3f4ef;
  opacity: 0.8;
}
.cid-tF0qdHFSaB .content-container {
  display: flex;
  padding: 60px !important;
  background-color: #0193b1;
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-tF0qdHFSaB .content-container {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .cid-tF0qdHFSaB .content-container {
    padding: 2.5rem !important;
  }
}
@media (max-width: 565px) {
  .cid-tF0qdHFSaB .content-container {
    padding: 2rem !important;
  }
}
.cid-tF0qdHFSaB .col-img {
  width: 50%;
  max-width: 50%;
}
@media (max-width: 991px) {
  .cid-tF0qdHFSaB .col-img {
    width: 100%;
    max-width: 100%;
  }
}
.cid-tF0qdHFSaB .img-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding-right: 30px;
  padding-right: 0;
  padding-left: 30px;
}
@media (max-width: 991px) {
  .cid-tF0qdHFSaB .img-container {
    padding-right: 0;
  }
}
@media (max-width: 991px) {
  .cid-tF0qdHFSaB .img-container {
    padding-left: 0;
  }
}
.cid-tF0qdHFSaB .img-container img {
  max-width: 100%;
  width: auto;
  height: auto;
}
.cid-tF0qdHFSaB .col-text {
  display: flex;
  align-items: center;
  width: 50%;
}
@media (max-width: 991px) {
  .cid-tF0qdHFSaB .col-text {
    width: 100%;
    margin-top: 2rem;
  }
}
.cid-tF0qdHFSaB .text-container {
  padding-left: 30px;
  padding-right: 30px;
  padding-left: 0;
}
@media (max-width: 991px) {
  .cid-tF0qdHFSaB .text-container {
    padding-left: 0;
  }
}
@media (max-width: 991px) {
  .cid-tF0qdHFSaB .text-container {
    padding-right: 0;
  }
}
.cid-tF0qdHFSaB .text-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.cid-tF0qdHFSaB .label-text {
  width: 100%;
  color: #ffffff;
  padding: 0.375rem 0;
}
.cid-tF0qdHFSaB .label-text span {
  padding: 0.375rem 0.625rem;
  border-style: solid;
  border-width: 1px;
  border-color: currentColor;
  border-radius: 100vw;
  color: currentColor;
}
.cid-tF0qdHFSaB .card-title {
  width: 100%;
  color: #1B1F0A;
  margin-bottom: 4px;
}
.cid-tF0qdHFSaB .mbr-text {
  letter-spacing: inherit;
  color: #ffffff;
  width: 100%;
  margin-bottom: 32px;
}
.cid-tEZXy8C4Tj {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-tEZXy8C4Tj .mbr-section-title,
  .cid-tEZXy8C4Tj .mbr-section-subtitle,
  .cid-tEZXy8C4Tj .mbr-section-btn,
  .cid-tEZXy8C4Tj .mbr-text {
    text-align: center;
  }
}
.cid-tEZXy8C4Tj .mbr-section-title {
  color: #0193b1;
}
.cid-tEZXy8C4Tj .mbr-text,
.cid-tEZXy8C4Tj .mbr-section-btn {
  color: #000000;
}
.cid-tEZXy8C4Tj .subtitle {
  width: 100%;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .cid-tEZXy8C4Tj .subtitle {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 992px) {
  .cid-tEZXy8C4Tj .subtitle {
    text-align: center;
  }
}
.cid-tEZXy8C4Tj .mbr-section-subtitle {
  color: #082c4e;
}
.cid-tEZXy8C4Tj span {
  padding-right: 1rem;
}
.cid-tEZXy8C4Tj .dot {
  padding-left: 1.5rem;
  position: relative;
}
.cid-tEZXy8C4Tj .dot:before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  left: 0;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background: #0193b1;
}
@media (max-width: 767px) {
  .cid-tEZXy8C4Tj .dot {
    padding-left: 0rem;
  }
  .cid-tEZXy8C4Tj .dot:before {
    content: none;
  }
}
.cid-tEZXy8C4Tj .mbr-section-subtitle,
.cid-tEZXy8C4Tj .subtitle {
  color: #000000;
}
.cid-tF0uA6h7P0 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tF0uA6h7P0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tF0uA6h7P0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tF0uA6h7P0 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tF0uA6h7P0 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tF0uA6h7P0 .row {
    text-align: center;
  }
  .cid-tF0uA6h7P0 .row > div {
    margin: auto;
  }
  .cid-tF0uA6h7P0 .social-row {
    justify-content: center;
  }
}
.cid-tF0uA6h7P0 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tF0uA6h7P0 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tF0uA6h7P0 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tF0uA6h7P0 .list {
    margin-bottom: 0rem;
  }
}
.cid-tF0uA6h7P0 .mbr-text {
  color: #ffffff;
}
.cid-tF0uA6h7P0 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tF0uA6h7P0 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tF0uA6h7P0 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOBVHNFFev .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tOBVHNFFev .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tOBVHNFFev .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tOBVHNFFev .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tOBVHNFFev .navbar-logo {
  margin: 0 !important;
}
.cid-tOBVHNFFev .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOBVHNFFev .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOBVHNFFev .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOBVHNFFev .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tOBVHNFFev .navbar-nav {
  min-width: 45%;
}
.cid-tOBVHNFFev .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tOBVHNFFev .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tOBVHNFFev .dropdown-item {
  color: #ffffff !important;
}
.cid-tOBVHNFFev .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tOBVHNFFev .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tOBVHNFFev .nav-link:hover {
  color: #ffffff !important;
}
.cid-tOBVHNFFev .nav-link:hover:before {
  opacity: 1;
}
.cid-tOBVHNFFev .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tOBVHNFFev .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tOBVHNFFev .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOBVHNFFev .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOBVHNFFev .container {
  display: flex;
  margin: auto;
}
.cid-tOBVHNFFev .navbar.opened {
  background: #0193b1 !important;
}
.cid-tOBVHNFFev .nav-item:focus,
.cid-tOBVHNFFev .nav-link:focus {
  outline: none;
}
.cid-tOBVHNFFev .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOBVHNFFev .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOBVHNFFev .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOBVHNFFev .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOBVHNFFev .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOBVHNFFev .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOBVHNFFev .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tOBVHNFFev .navbar.opened {
  transition: all 0.3s;
}
.cid-tOBVHNFFev .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tOBVHNFFev .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOBVHNFFev .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOBVHNFFev .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOBVHNFFev .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOBVHNFFev .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOBVHNFFev .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOBVHNFFev .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOBVHNFFev .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOBVHNFFev .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOBVHNFFev .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOBVHNFFev .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOBVHNFFev .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOBVHNFFev .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOBVHNFFev .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOBVHNFFev .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOBVHNFFev .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOBVHNFFev .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOBVHNFFev .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOBVHNFFev .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOBVHNFFev .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOBVHNFFev .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tOBVHNFFev .navbar .navbar-logo {
    display: none;
  }
}
.cid-tOBVHNFFev .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tOBVHNFFev .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOBVHNFFev .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOBVHNFFev .dropdown-item.active,
.cid-tOBVHNFFev .dropdown-item:active {
  background-color: transparent;
}
.cid-tOBVHNFFev .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOBVHNFFev .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOBVHNFFev .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOBVHNFFev .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tOBVHNFFev .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOBVHNFFev .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOBVHNFFev ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOBVHNFFev .navbar-buttons {
  text-align: center;
}
.cid-tOBVHNFFev button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOBVHNFFev button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOBVHNFFev button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOBVHNFFev button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOBVHNFFev button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOBVHNFFev button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOBVHNFFev nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOBVHNFFev nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOBVHNFFev nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOBVHNFFev nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOBVHNFFev .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tOBVHNFFev a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOBVHNFFev .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOBVHNFFev .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tOBVHNFFev .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOBVHNFFev .navbar {
    height: 77px;
  }
  .cid-tOBVHNFFev .navbar.opened {
    height: auto;
  }
  .cid-tOBVHNFFev .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOBVHNFFev .btn-danger {
  border-radius: 0px;
}
.cid-tOBVHNFFev .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tOBVHNFFev .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tOBX1i13ce {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0193b1;
  box-shadow: inset 0 -75px 0 0 white;
}
.cid-tOBX1i13ce .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBX1i13ce .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBX1i13ce .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOBX1i13ce .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tOBX1i13ce .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tOBX1i13ce .head-text {
    font-size: 1.7rem;
  }
}
.cid-tOBX1i13ce .mbr-text,
.cid-tOBX1i13ce .mbr-section-btn {
  color: #ffffff;
}
.cid-tOC1fPJcgp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOCcWAF2kQ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f4f6;
}
.cid-tOCcWAF2kQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCcWAF2kQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tOCcWAF2kQ .container {
    padding: 0 10px;
  }
}
.cid-tOCcWAF2kQ .row {
  margin: 0;
}
.cid-tOCcWAF2kQ .card {
  padding: 0;
}
.cid-tOCcWAF2kQ .image-wrapper img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tOCcWAF2kQ .image-wrapper img {
    height: 450px;
  }
}
.cid-tOCcWAF2kQ .title-wrapper {
  height: 100%;
  margin-bottom: 10%;
  background-color: #0193b1;
  display: flex;
  align-items: center;
  padding: 24px 24px;
  margin-right: -110px;
}
@media (max-width: 992px) {
  .cid-tOCcWAF2kQ .title-wrapper {
    padding: 50px 20px;
    margin-right: 0px;
  }
}
.cid-tOCcWAF2kQ .title-wrapper .title-wrap {
  width: 100%;
}
.cid-tOCcWAF2kQ .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tOCcWAF2kQ .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tOCcWAF2kQ .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 50px;
  line-height: 1.78;
}
@media (max-width: 992px) {
  .cid-tOCcWAF2kQ .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tOCcWAF2kQ .mbr-section-title {
  color: #c2b299;
}
.cid-tOCcWAF2kQ .mbr-text {
  color: #ffffff;
}
.cid-tOCcWAF2kQ .mbr-section-title,
.cid-tOCcWAF2kQ .mbr-section-btn {
  color: #ffffff;
}
.cid-tOCgb9x9tE {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tOCgb9x9tE .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCgb9x9tE .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCgb9x9tE p {
  line-height: 2;
}
.cid-tOCgb9x9tE a:hover {
  text-decoration: underline;
}
.cid-tOCjqzUtFI {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f4f6;
}
.cid-tOCjqzUtFI .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCjqzUtFI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOCjqzUtFI .card:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-tOCjqzUtFI .title-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-tOCjqzUtFI .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tOCjqzUtFI .title-wrapper .mbr-text {
  margin: 0;
}
.cid-tOCjqzUtFI .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-left: 90px;
}
@media (max-width: 992px) {
  .cid-tOCjqzUtFI .image-wrapper {
    padding: 0;
  }
}
.cid-tOCjqzUtFI .image-wrapper img {
  width: 90%;
  height: 490px;
  object-fit: cover;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .cid-tOCjqzUtFI .image-wrapper img {
    height: 300px;
  }
}
.cid-tOCjqzUtFI .image-wrapper .card-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
  min-height: 280px;
  padding: 50px 30px;
  background-color: #0193b1;
}
@media (max-width: 768px) {
  .cid-tOCjqzUtFI .image-wrapper .card-wrapper {
    padding: 30px 15px;
    width: 180px;
  }
}
.cid-tOCjqzUtFI .image-wrapper .card-wrapper .mbr-number {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cid-tOCjqzUtFI .image-wrapper .card-wrapper .mbr-number {
    margin-bottom: 6px;
  }
}
.cid-tOCjqzUtFI .image-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tOCjqzUtFI .mbr-section-title {
  color: #1a1e21;
}
.cid-tOCjqzUtFI .mbr-text {
  color: #005c62;
}
.cid-tOCjqzUtFI .mbr-number {
  color: #ffffff;
}
.cid-tOCjqzUtFI .mbr-desc {
  color: #ffffff;
}
.cid-tOCjqzUtFI .boxhead {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .cid-tOCjqzUtFI .boxhead {
    font-size: 1.6rem;
  }
}
.cid-tOBVHR3tJF {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOBVHR3tJF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOBVHR3tJF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOBVHR3tJF .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOBVHR3tJF .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOBVHR3tJF .row {
    text-align: center;
  }
  .cid-tOBVHR3tJF .row > div {
    margin: auto;
  }
  .cid-tOBVHR3tJF .social-row {
    justify-content: center;
  }
}
.cid-tOBVHR3tJF .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOBVHR3tJF .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tOBVHR3tJF .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOBVHR3tJF .list {
    margin-bottom: 0rem;
  }
}
.cid-tOBVHR3tJF .mbr-text {
  color: #ffffff;
}
.cid-tOBVHR3tJF .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOBVHR3tJF .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOBVHR3tJF div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOCAC1asQC .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tOCAC1asQC .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tOCAC1asQC .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tOCAC1asQC .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tOCAC1asQC .navbar-logo {
  margin: 0 !important;
}
.cid-tOCAC1asQC .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOCAC1asQC .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOCAC1asQC .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOCAC1asQC .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tOCAC1asQC .navbar-nav {
  min-width: 45%;
}
.cid-tOCAC1asQC .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tOCAC1asQC .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tOCAC1asQC .dropdown-item {
  color: #ffffff !important;
}
.cid-tOCAC1asQC .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tOCAC1asQC .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tOCAC1asQC .nav-link:hover {
  color: #ffffff !important;
}
.cid-tOCAC1asQC .nav-link:hover:before {
  opacity: 1;
}
.cid-tOCAC1asQC .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tOCAC1asQC .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tOCAC1asQC .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOCAC1asQC .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOCAC1asQC .container {
  display: flex;
  margin: auto;
}
.cid-tOCAC1asQC .navbar.opened {
  background: #0193b1 !important;
}
.cid-tOCAC1asQC .nav-item:focus,
.cid-tOCAC1asQC .nav-link:focus {
  outline: none;
}
.cid-tOCAC1asQC .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCAC1asQC .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOCAC1asQC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOCAC1asQC .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCAC1asQC .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOCAC1asQC .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOCAC1asQC .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tOCAC1asQC .navbar.opened {
  transition: all 0.3s;
}
.cid-tOCAC1asQC .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tOCAC1asQC .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOCAC1asQC .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOCAC1asQC .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOCAC1asQC .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOCAC1asQC .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOCAC1asQC .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOCAC1asQC .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOCAC1asQC .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOCAC1asQC .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOCAC1asQC .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOCAC1asQC .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOCAC1asQC .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOCAC1asQC .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOCAC1asQC .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOCAC1asQC .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOCAC1asQC .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOCAC1asQC .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOCAC1asQC .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOCAC1asQC .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOCAC1asQC .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOCAC1asQC .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tOCAC1asQC .navbar .navbar-logo {
    display: none;
  }
}
.cid-tOCAC1asQC .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tOCAC1asQC .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOCAC1asQC .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOCAC1asQC .dropdown-item.active,
.cid-tOCAC1asQC .dropdown-item:active {
  background-color: transparent;
}
.cid-tOCAC1asQC .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOCAC1asQC .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOCAC1asQC .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOCAC1asQC .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tOCAC1asQC .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOCAC1asQC .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOCAC1asQC ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOCAC1asQC .navbar-buttons {
  text-align: center;
}
.cid-tOCAC1asQC button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOCAC1asQC button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOCAC1asQC button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOCAC1asQC button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCAC1asQC button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCAC1asQC button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOCAC1asQC nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCAC1asQC nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOCAC1asQC nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOCAC1asQC nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCAC1asQC .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tOCAC1asQC a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOCAC1asQC .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOCAC1asQC .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tOCAC1asQC .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOCAC1asQC .navbar {
    height: 77px;
  }
  .cid-tOCAC1asQC .navbar.opened {
    height: auto;
  }
  .cid-tOCAC1asQC .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOCAC1asQC .btn-danger {
  border-radius: 0px;
}
.cid-tOCAC1asQC .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tOCAC1asQC .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tOCAC23HBN {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0193b1;
  box-shadow: inset 0 -75px 0 0 white;
}
.cid-tOCAC23HBN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCAC23HBN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCAC23HBN .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOCAC23HBN .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tOCAC23HBN .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tOCAC23HBN .head-text {
    font-size: 1.7rem;
  }
}
.cid-tOCAC23HBN .mbr-text,
.cid-tOCAC23HBN .mbr-section-btn {
  color: #ffffff;
}
.cid-tOCAC2DXeR {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOCERcIdB0 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOCERcIdB0 .underline .line {
  width: 2rem;
  height: 1px;
  background: #878787;
  display: inline-block;
}
.cid-tOCERcIdB0 .mbr-text {
  margin: 0;
}
@media (max-width: 767px) {
  .cid-tOCERcIdB0 .title {
    width: 100% !important;
  }
}
.cid-tOCERQxFaN {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tOCERQxFaN .btn {
  border-radius: 0px;
}
.cid-tOCAC40fnU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOCAC40fnU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCAC40fnU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCAC40fnU .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOCAC40fnU .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOCAC40fnU .row {
    text-align: center;
  }
  .cid-tOCAC40fnU .row > div {
    margin: auto;
  }
  .cid-tOCAC40fnU .social-row {
    justify-content: center;
  }
}
.cid-tOCAC40fnU .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOCAC40fnU .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tOCAC40fnU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOCAC40fnU .list {
    margin-bottom: 0rem;
  }
}
.cid-tOCAC40fnU .mbr-text {
  color: #ffffff;
}
.cid-tOCAC40fnU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOCAC40fnU .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOCAC40fnU div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOCFhVDMmO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tOCFhVDMmO .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tOCFhVDMmO .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tOCFhVDMmO .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tOCFhVDMmO .navbar-logo {
  margin: 0 !important;
}
.cid-tOCFhVDMmO .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOCFhVDMmO .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOCFhVDMmO .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOCFhVDMmO .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tOCFhVDMmO .navbar-nav {
  min-width: 45%;
}
.cid-tOCFhVDMmO .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tOCFhVDMmO .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tOCFhVDMmO .dropdown-item {
  color: #ffffff !important;
}
.cid-tOCFhVDMmO .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tOCFhVDMmO .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tOCFhVDMmO .nav-link:hover {
  color: #ffffff !important;
}
.cid-tOCFhVDMmO .nav-link:hover:before {
  opacity: 1;
}
.cid-tOCFhVDMmO .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tOCFhVDMmO .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tOCFhVDMmO .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOCFhVDMmO .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOCFhVDMmO .container {
  display: flex;
  margin: auto;
}
.cid-tOCFhVDMmO .navbar.opened {
  background: #0193b1 !important;
}
.cid-tOCFhVDMmO .nav-item:focus,
.cid-tOCFhVDMmO .nav-link:focus {
  outline: none;
}
.cid-tOCFhVDMmO .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCFhVDMmO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOCFhVDMmO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOCFhVDMmO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCFhVDMmO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOCFhVDMmO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOCFhVDMmO .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tOCFhVDMmO .navbar.opened {
  transition: all 0.3s;
}
.cid-tOCFhVDMmO .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tOCFhVDMmO .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOCFhVDMmO .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOCFhVDMmO .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOCFhVDMmO .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOCFhVDMmO .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOCFhVDMmO .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOCFhVDMmO .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOCFhVDMmO .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOCFhVDMmO .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOCFhVDMmO .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOCFhVDMmO .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOCFhVDMmO .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOCFhVDMmO .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOCFhVDMmO .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOCFhVDMmO .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOCFhVDMmO .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOCFhVDMmO .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOCFhVDMmO .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOCFhVDMmO .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOCFhVDMmO .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOCFhVDMmO .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tOCFhVDMmO .navbar .navbar-logo {
    display: none;
  }
}
.cid-tOCFhVDMmO .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tOCFhVDMmO .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOCFhVDMmO .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOCFhVDMmO .dropdown-item.active,
.cid-tOCFhVDMmO .dropdown-item:active {
  background-color: transparent;
}
.cid-tOCFhVDMmO .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOCFhVDMmO .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOCFhVDMmO .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOCFhVDMmO .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tOCFhVDMmO .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOCFhVDMmO .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOCFhVDMmO ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOCFhVDMmO .navbar-buttons {
  text-align: center;
}
.cid-tOCFhVDMmO button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOCFhVDMmO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOCFhVDMmO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOCFhVDMmO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCFhVDMmO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCFhVDMmO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOCFhVDMmO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCFhVDMmO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOCFhVDMmO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOCFhVDMmO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCFhVDMmO .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tOCFhVDMmO a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOCFhVDMmO .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOCFhVDMmO .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tOCFhVDMmO .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOCFhVDMmO .navbar {
    height: 77px;
  }
  .cid-tOCFhVDMmO .navbar.opened {
    height: auto;
  }
  .cid-tOCFhVDMmO .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOCFhVDMmO .btn-danger {
  border-radius: 0px;
}
.cid-tOCFhVDMmO .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tOCFhVDMmO .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tOCFhW7fJ5 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0193b1;
  box-shadow: inset 0 -75px 0 0 white;
}
.cid-tOCFhW7fJ5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCFhW7fJ5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCFhW7fJ5 .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOCFhW7fJ5 .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tOCFhW7fJ5 .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tOCFhW7fJ5 .head-text {
    font-size: 1.7rem;
  }
}
.cid-tOCFhW7fJ5 .mbr-text,
.cid-tOCFhW7fJ5 .mbr-section-btn {
  color: #ffffff;
}
.cid-tOCFhWu5NH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOCFhWL8e8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f4f6;
}
.cid-tOCFhWL8e8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCFhWL8e8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tOCFhWL8e8 .container {
    padding: 0 10px;
  }
}
.cid-tOCFhWL8e8 .row {
  margin: 0;
}
.cid-tOCFhWL8e8 .card {
  padding: 0;
}
.cid-tOCFhWL8e8 .image-wrapper img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tOCFhWL8e8 .image-wrapper img {
    height: 450px;
  }
}
.cid-tOCFhWL8e8 .title-wrapper {
  height: 100%;
  margin-bottom: 10%;
  background-color: #0193b1;
  display: flex;
  align-items: center;
  padding: 24px 24px;
  margin-right: -110px;
}
@media (max-width: 992px) {
  .cid-tOCFhWL8e8 .title-wrapper {
    padding: 50px 20px;
    margin-right: 0px;
  }
}
.cid-tOCFhWL8e8 .title-wrapper .title-wrap {
  width: 100%;
}
.cid-tOCFhWL8e8 .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tOCFhWL8e8 .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tOCFhWL8e8 .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 50px;
  line-height: 1.78;
}
@media (max-width: 992px) {
  .cid-tOCFhWL8e8 .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tOCFhWL8e8 .mbr-section-title {
  color: #c2b299;
}
.cid-tOCFhWL8e8 .mbr-text {
  color: #ffffff;
}
.cid-tOCFhWL8e8 .mbr-section-title,
.cid-tOCFhWL8e8 .mbr-section-btn {
  color: #ffffff;
}
.cid-tOCFhXnYKw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOCFhXnYKw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCFhXnYKw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOCFhXnYKw .card:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .cid-tOCFhXnYKw .title-wrapper {
    margin: 0 0 50px 0;
  }
}
.cid-tOCFhXnYKw .title-wrapper .mbr-section-title {
  margin-bottom: 20px;
}
.cid-tOCFhXnYKw .title-wrapper .mbr-text {
  margin: 0;
}
.cid-tOCFhXnYKw .image-wrapper {
  display: flex;
  justify-content: flex-end;
  position: relative;
  padding-left: 90px;
}
@media (max-width: 992px) {
  .cid-tOCFhXnYKw .image-wrapper {
    padding: 0;
  }
}
.cid-tOCFhXnYKw .image-wrapper img {
  width: 90%;
  height: 490px;
  object-fit: cover;
  margin-bottom: 9rem;
}
@media (max-width: 768px) {
  .cid-tOCFhXnYKw .image-wrapper img {
    height: 300px;
  }
}
.cid-tOCFhXnYKw .image-wrapper .card-wrapper {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 350px;
  min-height: 280px;
  padding: 50px 30px;
  background-color: #0193b1;
}
@media (max-width: 768px) {
  .cid-tOCFhXnYKw .image-wrapper .card-wrapper {
    padding: 30px 15px;
    width: 180px;
  }
}
.cid-tOCFhXnYKw .image-wrapper .card-wrapper .mbr-number {
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .cid-tOCFhXnYKw .image-wrapper .card-wrapper .mbr-number {
    margin-bottom: 6px;
  }
}
.cid-tOCFhXnYKw .image-wrapper .card-wrapper .mbr-desc {
  margin-bottom: 0;
}
.cid-tOCFhXnYKw .mbr-section-title {
  color: #1a1e21;
}
.cid-tOCFhXnYKw .mbr-text {
  color: #005c62;
}
.cid-tOCFhXnYKw .mbr-number {
  color: #ffffff;
}
.cid-tOCFhXnYKw .mbr-desc {
  color: #ffffff;
}
.cid-tOCFhXnYKw .boxhead {
  font-size: 2rem;
}
@media (max-width: 768px) {
  .cid-tOCFhXnYKw .boxhead {
    font-size: 1.6rem;
  }
}
.cid-tOCODBYqKT {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tOCODBYqKT .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCODBYqKT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCODBYqKT .row {
  margin-left: 0;
  margin-right: 0;
}
.cid-tOCODBYqKT .item {
  padding-left: 0;
  padding-right: 0;
}
.cid-tOCODBYqKT .item-wrapper {
  height: 100%;
  position: relative;
}
.cid-tOCODBYqKT .item-wrapper img {
  height: 100%;
  object-fit: cover;
}
.cid-tOCODBYqKT .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tOCODBYqKT .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tOCODBYqKT .carousel-control,
.cid-tOCODBYqKT .close {
  background: #1b1b1b;
}
.cid-tOCODBYqKT .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tOCODBYqKT .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tOCODBYqKT .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tOCODBYqKT .carousel-control-next span {
  margin-left: 5px;
}
.cid-tOCODBYqKT .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tOCODBYqKT .close::before {
  content: '\e91a';
}
.cid-tOCODBYqKT .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tOCODBYqKT .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tOCODBYqKT .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOCODBYqKT .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tOCODBYqKT .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tOCODBYqKT .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tOCODBYqKT .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tOCODBYqKT .carousel-indicators li.active,
.cid-tOCODBYqKT .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tOCODBYqKT .carousel-indicators li::after,
.cid-tOCODBYqKT .carousel-indicators li::before {
  content: none;
}
.cid-tOCODBYqKT .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tOCODBYqKT .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tOCODBYqKT .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tOCODBYqKT .carousel-indicators {
    display: none;
  }
}
.cid-tOCODBYqKT .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tOCODBYqKT .carousel-inner > .active {
  display: block;
}
.cid-tOCODBYqKT .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tOCODBYqKT .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tOCODBYqKT .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tOCODBYqKT .carousel-control,
  .cid-tOCODBYqKT .carousel-indicators,
  .cid-tOCODBYqKT .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tOCODBYqKT .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tOCODBYqKT .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tOCODBYqKT .carousel-indicators .active,
.cid-tOCODBYqKT .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tOCODBYqKT .carousel-indicators .active {
  background: #fff;
}
.cid-tOCODBYqKT .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tOCODBYqKT .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tOCODBYqKT .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tOCODBYqKT .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tOCODBYqKT .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tOCODBYqKT .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tOCODBYqKT .carousel {
  width: 100%;
}
.cid-tOCODBYqKT .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tOCODBYqKT .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tOCODBYqKT .modal.fade .modal-dialog,
.cid-tOCODBYqKT .modal.in .modal-dialog {
  transform: none;
}
.cid-tOCODBYqKT .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tOCODBYqKT H6 {
  text-align: center;
}
.cid-tOCFhXHK74 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOCFhXHK74 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCFhXHK74 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCFhXHK74 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOCFhXHK74 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOCFhXHK74 .row {
    text-align: center;
  }
  .cid-tOCFhXHK74 .row > div {
    margin: auto;
  }
  .cid-tOCFhXHK74 .social-row {
    justify-content: center;
  }
}
.cid-tOCFhXHK74 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOCFhXHK74 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tOCFhXHK74 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOCFhXHK74 .list {
    margin-bottom: 0rem;
  }
}
.cid-tOCFhXHK74 .mbr-text {
  color: #ffffff;
}
.cid-tOCFhXHK74 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOCFhXHK74 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOCFhXHK74 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOCPHPTlZA .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tOCPHPTlZA .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tOCPHPTlZA .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tOCPHPTlZA .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tOCPHPTlZA .navbar-logo {
  margin: 0 !important;
}
.cid-tOCPHPTlZA .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOCPHPTlZA .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOCPHPTlZA .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOCPHPTlZA .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tOCPHPTlZA .navbar-nav {
  min-width: 45%;
}
.cid-tOCPHPTlZA .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tOCPHPTlZA .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tOCPHPTlZA .dropdown-item {
  color: #ffffff !important;
}
.cid-tOCPHPTlZA .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tOCPHPTlZA .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tOCPHPTlZA .nav-link:hover {
  color: #ffffff !important;
}
.cid-tOCPHPTlZA .nav-link:hover:before {
  opacity: 1;
}
.cid-tOCPHPTlZA .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tOCPHPTlZA .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tOCPHPTlZA .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOCPHPTlZA .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOCPHPTlZA .container {
  display: flex;
  margin: auto;
}
.cid-tOCPHPTlZA .navbar.opened {
  background: #0193b1 !important;
}
.cid-tOCPHPTlZA .nav-item:focus,
.cid-tOCPHPTlZA .nav-link:focus {
  outline: none;
}
.cid-tOCPHPTlZA .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCPHPTlZA .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOCPHPTlZA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOCPHPTlZA .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCPHPTlZA .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOCPHPTlZA .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOCPHPTlZA .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tOCPHPTlZA .navbar.opened {
  transition: all 0.3s;
}
.cid-tOCPHPTlZA .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tOCPHPTlZA .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOCPHPTlZA .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOCPHPTlZA .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOCPHPTlZA .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOCPHPTlZA .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOCPHPTlZA .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOCPHPTlZA .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOCPHPTlZA .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOCPHPTlZA .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOCPHPTlZA .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOCPHPTlZA .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOCPHPTlZA .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOCPHPTlZA .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOCPHPTlZA .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOCPHPTlZA .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOCPHPTlZA .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOCPHPTlZA .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOCPHPTlZA .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOCPHPTlZA .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOCPHPTlZA .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOCPHPTlZA .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tOCPHPTlZA .navbar .navbar-logo {
    display: none;
  }
}
.cid-tOCPHPTlZA .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tOCPHPTlZA .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOCPHPTlZA .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOCPHPTlZA .dropdown-item.active,
.cid-tOCPHPTlZA .dropdown-item:active {
  background-color: transparent;
}
.cid-tOCPHPTlZA .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOCPHPTlZA .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOCPHPTlZA .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOCPHPTlZA .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tOCPHPTlZA .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOCPHPTlZA .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOCPHPTlZA ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOCPHPTlZA .navbar-buttons {
  text-align: center;
}
.cid-tOCPHPTlZA button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOCPHPTlZA button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOCPHPTlZA button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOCPHPTlZA button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCPHPTlZA button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCPHPTlZA button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOCPHPTlZA nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCPHPTlZA nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOCPHPTlZA nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOCPHPTlZA nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCPHPTlZA .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tOCPHPTlZA a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOCPHPTlZA .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOCPHPTlZA .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tOCPHPTlZA .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOCPHPTlZA .navbar {
    height: 77px;
  }
  .cid-tOCPHPTlZA .navbar.opened {
    height: auto;
  }
  .cid-tOCPHPTlZA .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOCPHPTlZA .btn-danger {
  border-radius: 0px;
}
.cid-tOCPHPTlZA .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tOCPHPTlZA .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tOCPHQwjss {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0193b1;
  box-shadow: inset 0 -75px 0 0 white;
}
.cid-tOCPHQwjss .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCPHQwjss .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCPHQwjss .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOCPHQwjss .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tOCPHQwjss .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tOCPHQwjss .head-text {
    font-size: 1.7rem;
  }
}
.cid-tOCPHQwjss .mbr-text,
.cid-tOCPHQwjss .mbr-section-btn {
  color: #ffffff;
}
.cid-tOCPHR2sYO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOCPHRt6bu {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f4f6;
}
.cid-tOCPHRt6bu .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCPHRt6bu .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tOCPHRt6bu .container {
    padding: 0 10px;
  }
}
.cid-tOCPHRt6bu .row {
  margin: 0;
}
.cid-tOCPHRt6bu .card {
  padding: 0;
}
.cid-tOCPHRt6bu .image-wrapper img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tOCPHRt6bu .image-wrapper img {
    height: 450px;
  }
}
.cid-tOCPHRt6bu .title-wrapper {
  height: 100%;
  margin-bottom: 10%;
  background-color: #0193b1;
  display: flex;
  align-items: center;
  padding: 24px 24px;
  margin-right: -110px;
}
@media (max-width: 992px) {
  .cid-tOCPHRt6bu .title-wrapper {
    padding: 50px 20px;
    margin-right: 0px;
  }
}
.cid-tOCPHRt6bu .title-wrapper .title-wrap {
  width: 100%;
}
.cid-tOCPHRt6bu .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tOCPHRt6bu .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tOCPHRt6bu .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 50px;
  line-height: 1.78;
}
@media (max-width: 992px) {
  .cid-tOCPHRt6bu .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tOCPHRt6bu .mbr-section-title {
  color: #c2b299;
}
.cid-tOCPHRt6bu .mbr-text {
  color: #ffffff;
}
.cid-tOCPHRt6bu .mbr-section-title,
.cid-tOCPHRt6bu .mbr-section-btn {
  color: #ffffff;
}
.cid-tOCUpq0zIy {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOCUpq0zIy .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-tOCUpq0zIy .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-tOCUpq0zIy .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #0193b1;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  border-radius: 0;
  content: "✓";
}
.cid-tOCPHTCzt8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOCPHTCzt8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCPHTCzt8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCPHTCzt8 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOCPHTCzt8 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOCPHTCzt8 .row {
    text-align: center;
  }
  .cid-tOCPHTCzt8 .row > div {
    margin: auto;
  }
  .cid-tOCPHTCzt8 .social-row {
    justify-content: center;
  }
}
.cid-tOCPHTCzt8 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOCPHTCzt8 .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tOCPHTCzt8 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOCPHTCzt8 .list {
    margin-bottom: 0rem;
  }
}
.cid-tOCPHTCzt8 .mbr-text {
  color: #ffffff;
}
.cid-tOCPHTCzt8 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOCPHTCzt8 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOCPHTCzt8 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOCVSyHrmm .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tOCVSyHrmm .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tOCVSyHrmm .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tOCVSyHrmm .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tOCVSyHrmm .navbar-logo {
  margin: 0 !important;
}
.cid-tOCVSyHrmm .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOCVSyHrmm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOCVSyHrmm .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOCVSyHrmm .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tOCVSyHrmm .navbar-nav {
  min-width: 45%;
}
.cid-tOCVSyHrmm .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tOCVSyHrmm .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tOCVSyHrmm .dropdown-item {
  color: #ffffff !important;
}
.cid-tOCVSyHrmm .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tOCVSyHrmm .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tOCVSyHrmm .nav-link:hover {
  color: #ffffff !important;
}
.cid-tOCVSyHrmm .nav-link:hover:before {
  opacity: 1;
}
.cid-tOCVSyHrmm .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tOCVSyHrmm .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tOCVSyHrmm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOCVSyHrmm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOCVSyHrmm .container {
  display: flex;
  margin: auto;
}
.cid-tOCVSyHrmm .navbar.opened {
  background: #0193b1 !important;
}
.cid-tOCVSyHrmm .nav-item:focus,
.cid-tOCVSyHrmm .nav-link:focus {
  outline: none;
}
.cid-tOCVSyHrmm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCVSyHrmm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOCVSyHrmm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOCVSyHrmm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOCVSyHrmm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOCVSyHrmm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOCVSyHrmm .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tOCVSyHrmm .navbar.opened {
  transition: all 0.3s;
}
.cid-tOCVSyHrmm .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tOCVSyHrmm .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOCVSyHrmm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOCVSyHrmm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOCVSyHrmm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOCVSyHrmm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOCVSyHrmm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOCVSyHrmm .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOCVSyHrmm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOCVSyHrmm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOCVSyHrmm .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOCVSyHrmm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOCVSyHrmm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOCVSyHrmm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOCVSyHrmm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOCVSyHrmm .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOCVSyHrmm .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOCVSyHrmm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOCVSyHrmm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOCVSyHrmm .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOCVSyHrmm .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOCVSyHrmm .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tOCVSyHrmm .navbar .navbar-logo {
    display: none;
  }
}
.cid-tOCVSyHrmm .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tOCVSyHrmm .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOCVSyHrmm .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOCVSyHrmm .dropdown-item.active,
.cid-tOCVSyHrmm .dropdown-item:active {
  background-color: transparent;
}
.cid-tOCVSyHrmm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOCVSyHrmm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOCVSyHrmm .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOCVSyHrmm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tOCVSyHrmm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOCVSyHrmm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOCVSyHrmm ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOCVSyHrmm .navbar-buttons {
  text-align: center;
}
.cid-tOCVSyHrmm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOCVSyHrmm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOCVSyHrmm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOCVSyHrmm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCVSyHrmm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOCVSyHrmm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOCVSyHrmm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCVSyHrmm nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOCVSyHrmm nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOCVSyHrmm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOCVSyHrmm .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tOCVSyHrmm a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOCVSyHrmm .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOCVSyHrmm .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tOCVSyHrmm .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOCVSyHrmm .navbar {
    height: 77px;
  }
  .cid-tOCVSyHrmm .navbar.opened {
    height: auto;
  }
  .cid-tOCVSyHrmm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOCVSyHrmm .btn-danger {
  border-radius: 0px;
}
.cid-tOCVSyHrmm .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tOCVSyHrmm .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tOCWceQ6xC {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOCWceQ6xC .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCWceQ6xC .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCWceQ6xC .image-wrapper {
  display: flex;
  align-items: center;
}
.cid-tOCWceQ6xC .card-wrapper {
  margin-bottom: 2rem;
  display: flex;
  border-radius: 4px;
  background: #ffffff;
}
@media (max-width: 991px) {
  .cid-tOCWceQ6xC .card-wrapper {
    padding: 1rem 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOCWceQ6xC .card-wrapper {
    padding: 2rem 4rem;
  }
}
.cid-tOCWceQ6xC .mbr-iconfont {
  font-size: 2rem;
  padding-right: 1.5rem;
  color: #0193b1;
}
.cid-tOCWceQ6xC .mbr-section-title {
  color: #ffffff;
}
.cid-tOCVSzuUaw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOCVSApqOv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOCVSApqOv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOCVSApqOv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOCVSApqOv .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOCVSApqOv .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOCVSApqOv .row {
    text-align: center;
  }
  .cid-tOCVSApqOv .row > div {
    margin: auto;
  }
  .cid-tOCVSApqOv .social-row {
    justify-content: center;
  }
}
.cid-tOCVSApqOv .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOCVSApqOv .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tOCVSApqOv .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOCVSApqOv .list {
    margin-bottom: 0rem;
  }
}
.cid-tOCVSApqOv .mbr-text {
  color: #ffffff;
}
.cid-tOCVSApqOv .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOCVSApqOv .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOCVSApqOv div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOTbpvYdMW .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tOTbpvYdMW .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tOTbpvYdMW .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tOTbpvYdMW .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tOTbpvYdMW .navbar-logo {
  margin: 0 !important;
}
.cid-tOTbpvYdMW .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOTbpvYdMW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOTbpvYdMW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOTbpvYdMW .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tOTbpvYdMW .navbar-nav {
  min-width: 45%;
}
.cid-tOTbpvYdMW .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tOTbpvYdMW .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tOTbpvYdMW .dropdown-item {
  color: #ffffff !important;
}
.cid-tOTbpvYdMW .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tOTbpvYdMW .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tOTbpvYdMW .nav-link:hover {
  color: #ffffff !important;
}
.cid-tOTbpvYdMW .nav-link:hover:before {
  opacity: 1;
}
.cid-tOTbpvYdMW .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tOTbpvYdMW .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tOTbpvYdMW .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOTbpvYdMW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOTbpvYdMW .container {
  display: flex;
  margin: auto;
}
.cid-tOTbpvYdMW .navbar.opened {
  background: #0193b1 !important;
}
.cid-tOTbpvYdMW .nav-item:focus,
.cid-tOTbpvYdMW .nav-link:focus {
  outline: none;
}
.cid-tOTbpvYdMW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOTbpvYdMW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOTbpvYdMW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOTbpvYdMW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOTbpvYdMW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOTbpvYdMW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOTbpvYdMW .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tOTbpvYdMW .navbar.opened {
  transition: all 0.3s;
}
.cid-tOTbpvYdMW .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tOTbpvYdMW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOTbpvYdMW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOTbpvYdMW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOTbpvYdMW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOTbpvYdMW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOTbpvYdMW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOTbpvYdMW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOTbpvYdMW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOTbpvYdMW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOTbpvYdMW .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOTbpvYdMW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOTbpvYdMW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOTbpvYdMW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOTbpvYdMW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOTbpvYdMW .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOTbpvYdMW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOTbpvYdMW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOTbpvYdMW .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOTbpvYdMW .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOTbpvYdMW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOTbpvYdMW .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tOTbpvYdMW .navbar .navbar-logo {
    display: none;
  }
}
.cid-tOTbpvYdMW .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tOTbpvYdMW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOTbpvYdMW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOTbpvYdMW .dropdown-item.active,
.cid-tOTbpvYdMW .dropdown-item:active {
  background-color: transparent;
}
.cid-tOTbpvYdMW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOTbpvYdMW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOTbpvYdMW .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOTbpvYdMW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tOTbpvYdMW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOTbpvYdMW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOTbpvYdMW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOTbpvYdMW .navbar-buttons {
  text-align: center;
}
.cid-tOTbpvYdMW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOTbpvYdMW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOTbpvYdMW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOTbpvYdMW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOTbpvYdMW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOTbpvYdMW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOTbpvYdMW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOTbpvYdMW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOTbpvYdMW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOTbpvYdMW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOTbpvYdMW .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tOTbpvYdMW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOTbpvYdMW .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOTbpvYdMW .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tOTbpvYdMW .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOTbpvYdMW .navbar {
    height: 77px;
  }
  .cid-tOTbpvYdMW .navbar.opened {
    height: auto;
  }
  .cid-tOTbpvYdMW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOTbpvYdMW .btn-danger {
  border-radius: 0px;
}
.cid-tOTbpvYdMW .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tOTbpvYdMW .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tOTbpwi8Qi {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #0193b1;
  box-shadow: inset 0 -75px 0 0 white;
}
.cid-tOTbpwi8Qi .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOTbpwi8Qi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOTbpwi8Qi .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tOTbpwi8Qi .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tOTbpwi8Qi .mbr-section-title {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-tOTbpwi8Qi .head-text {
    font-size: 1.7rem;
  }
}
.cid-tOTbpwi8Qi .mbr-text,
.cid-tOTbpwi8Qi .mbr-section-btn {
  color: #ffffff;
}
.cid-tOTbpwv3if {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tOTbpwFdPH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f2f4f6;
}
.cid-tOTbpwFdPH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOTbpwFdPH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-tOTbpwFdPH .container {
    padding: 0 10px;
  }
}
.cid-tOTbpwFdPH .row {
  margin: 0;
}
.cid-tOTbpwFdPH .card {
  padding: 0;
}
.cid-tOTbpwFdPH .image-wrapper img {
  height: 900px;
  object-fit: cover;
}
@media (max-width: 992px) {
  .cid-tOTbpwFdPH .image-wrapper img {
    height: 450px;
  }
}
.cid-tOTbpwFdPH .title-wrapper {
  height: 100%;
  margin-bottom: 10%;
  background-color: #0193b1;
  display: flex;
  align-items: center;
  padding: 24px 24px;
  margin-right: -110px;
}
@media (max-width: 992px) {
  .cid-tOTbpwFdPH .title-wrapper {
    padding: 50px 20px;
    margin-right: 0px;
  }
}
.cid-tOTbpwFdPH .title-wrapper .title-wrap {
  width: 100%;
}
.cid-tOTbpwFdPH .title-wrapper .title-wrap .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-tOTbpwFdPH .title-wrapper .title-wrap .mbr-section-title {
    margin-bottom: 24px;
  }
}
.cid-tOTbpwFdPH .title-wrapper .title-wrap .mbr-text {
  margin-bottom: 50px;
  line-height: 1.78;
}
@media (max-width: 992px) {
  .cid-tOTbpwFdPH .title-wrapper .title-wrap .mbr-text {
    margin-bottom: 24px;
  }
}
.cid-tOTbpwFdPH .mbr-section-title {
  color: #c2b299;
}
.cid-tOTbpwFdPH .mbr-text {
  color: #ffffff;
}
.cid-tOTbpwFdPH .mbr-section-title,
.cid-tOTbpwFdPH .mbr-section-btn {
  color: #ffffff;
}
.cid-tOTbpx5fxU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOTbpx5fxU .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOTbpx5fxU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOTbpx5fxU .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOTbpx5fxU .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOTbpx5fxU .row {
    text-align: center;
  }
  .cid-tOTbpx5fxU .row > div {
    margin: auto;
  }
  .cid-tOTbpx5fxU .social-row {
    justify-content: center;
  }
}
.cid-tOTbpx5fxU .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOTbpx5fxU .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tOTbpx5fxU .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOTbpx5fxU .list {
    margin-bottom: 0rem;
  }
}
.cid-tOTbpx5fxU .mbr-text {
  color: #ffffff;
}
.cid-tOTbpx5fxU .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOTbpx5fxU .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOTbpx5fxU div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tOTjJhr3tB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tOTjJhr3tB .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tOTjJhr3tB .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tOTjJhr3tB .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tOTjJhr3tB .navbar-logo {
  margin: 0 !important;
}
.cid-tOTjJhr3tB .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tOTjJhr3tB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tOTjJhr3tB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tOTjJhr3tB .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tOTjJhr3tB .navbar-nav {
  min-width: 45%;
}
.cid-tOTjJhr3tB .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tOTjJhr3tB .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tOTjJhr3tB .dropdown-item {
  color: #ffffff !important;
}
.cid-tOTjJhr3tB .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tOTjJhr3tB .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tOTjJhr3tB .nav-link:hover {
  color: #ffffff !important;
}
.cid-tOTjJhr3tB .nav-link:hover:before {
  opacity: 1;
}
.cid-tOTjJhr3tB .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tOTjJhr3tB .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tOTjJhr3tB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tOTjJhr3tB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tOTjJhr3tB .container {
  display: flex;
  margin: auto;
}
.cid-tOTjJhr3tB .navbar.opened {
  background: #0193b1 !important;
}
.cid-tOTjJhr3tB .nav-item:focus,
.cid-tOTjJhr3tB .nav-link:focus {
  outline: none;
}
.cid-tOTjJhr3tB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOTjJhr3tB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tOTjJhr3tB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tOTjJhr3tB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tOTjJhr3tB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tOTjJhr3tB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tOTjJhr3tB .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tOTjJhr3tB .navbar.opened {
  transition: all 0.3s;
}
.cid-tOTjJhr3tB .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tOTjJhr3tB .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tOTjJhr3tB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tOTjJhr3tB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tOTjJhr3tB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tOTjJhr3tB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tOTjJhr3tB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tOTjJhr3tB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tOTjJhr3tB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tOTjJhr3tB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tOTjJhr3tB .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tOTjJhr3tB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tOTjJhr3tB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tOTjJhr3tB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tOTjJhr3tB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tOTjJhr3tB .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tOTjJhr3tB .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tOTjJhr3tB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tOTjJhr3tB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tOTjJhr3tB .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tOTjJhr3tB .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tOTjJhr3tB .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tOTjJhr3tB .navbar .navbar-logo {
    display: none;
  }
}
.cid-tOTjJhr3tB .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tOTjJhr3tB .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tOTjJhr3tB .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tOTjJhr3tB .dropdown-item.active,
.cid-tOTjJhr3tB .dropdown-item:active {
  background-color: transparent;
}
.cid-tOTjJhr3tB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tOTjJhr3tB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tOTjJhr3tB .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tOTjJhr3tB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tOTjJhr3tB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tOTjJhr3tB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tOTjJhr3tB ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tOTjJhr3tB .navbar-buttons {
  text-align: center;
}
.cid-tOTjJhr3tB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tOTjJhr3tB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tOTjJhr3tB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tOTjJhr3tB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOTjJhr3tB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tOTjJhr3tB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tOTjJhr3tB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOTjJhr3tB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tOTjJhr3tB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tOTjJhr3tB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tOTjJhr3tB .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tOTjJhr3tB a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tOTjJhr3tB .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tOTjJhr3tB .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tOTjJhr3tB .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tOTjJhr3tB .navbar {
    height: 77px;
  }
  .cid-tOTjJhr3tB .navbar.opened {
    height: auto;
  }
  .cid-tOTjJhr3tB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tOTjJhr3tB .btn-danger {
  border-radius: 0px;
}
.cid-tOTjJhr3tB .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tOTjJhr3tB .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tOTjJixVPI {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tOTOWsnp55 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tOTOWsnp55 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOTOWsnp55 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOTOWsnp55 .top-line {
  display: flex;
  justify-content: space-between;
}
.cid-tOTOWsnp55 .mbr-section-title,
.cid-tOTOWsnp55 .mbr-section-subtitle {
  text-align: center;
}
.cid-tOTOWsnp55 .item:not(:nth-last-child(1)) {
  margin-bottom: 2rem;
}
.cid-tOTOWsnp55 .item-wrapper {
  border-radius: 0px;
  background-color: #0193b1;
}
.cid-tOTOWsnp55 .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (max-width: 767px) {
  .cid-tOTOWsnp55 .card-box {
    padding: 1rem;
  }
}
@media (min-width: 768px) {
  .cid-tOTOWsnp55 .card-box {
    padding-right: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOTOWsnp55 .card-box {
    padding-left: 2rem;
    padding-right: 4rem;
  }
}
.cid-tOTOWsnp55 .card-title {
  color: #ffffff;
}
.cid-tOTOWsnp55 .mbr-text {
  color: #ffffff;
}
.cid-tOTOWsnp55 .cost {
  color: #ffffff;
}
.cid-tOTOWsnp55 .mbr-section-title {
  text-align: left;
}
.cid-tOTuvPkbPU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 991px) {
  .cid-tOTuvPkbPU .container-fluid {
    padding-left: 0;
  }
}
.cid-tOTuvPkbPU .container-fluid {
  padding: 0;
}
.cid-tOTuvPkbPU .container-fluid .row {
  padding: 0 16px;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .container-fluid .row {
    padding: 0 12px;
  }
}
.cid-tOTuvPkbPU .mbr-text,
.cid-tOTuvPkbPU .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-text,
  .cid-tOTuvPkbPU .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-text,
  .cid-tOTuvPkbPU .mbr-section-title {
    text-align: center;
  }
}
.cid-tOTuvPkbPU a.btn {
  height: 100%;
  margin: 0;
}
.cid-tOTuvPkbPU .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-tOTuvPkbPU .mbr-section-btn .btn {
  width: 100%;
}
.cid-tOTuvPkbPU .justify-content-center {
  align-items: center;
}
.cid-tOTuvPkbPU .text-container {
  height: 50rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #0193b1;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .text-container {
    height: 20rem;
  }
}
.cid-tOTuvPkbPU .text-container .text-wrapper {
  padding: 0 44px;
}
.cid-tOTuvPkbPU .text-container .text-wrapper .mbr-text {
  margin: 0;
}
.cid-tOTuvPkbPU .mbr-form {
  align-items: flex-end;
  display: flex;
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-form {
    justify-content: center;
  }
}
.cid-tOTuvPkbPU .mbr-form .dragArea {
  padding: 0 150px;
  position: relative;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-form .dragArea {
    padding: 0 30px;
  }
}
.cid-tOTuvPkbPU .mbr-form .form-group {
  padding: 0;
}
.cid-tOTuvPkbPU .mbr-form .form-group:first-child {
  padding: 0 5px 0 0;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-form .form-group:first-child {
    padding: 0 10px;
  }
}
.cid-tOTuvPkbPU .mbr-form .form-group:nth-child(2) {
  padding: 0 0 0 5px;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-form .form-group:nth-child(2) {
    padding: 0 10px;
  }
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-form .form-group {
    padding: 0 10px;
  }
}
.cid-tOTuvPkbPU .mbr-form .form-group input {
  padding: 36px 0;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #0193b1 !important;
  border-radius: 0;
  margin-bottom: 8px;
}
.cid-tOTuvPkbPU .mbr-form .form-group select {
  padding: 39px 0;
  background-color: transparent;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #0193b1 !important;
  border-radius: 0;
  margin-bottom: 8px;
}
.cid-tOTuvPkbPU .mbr-form .form-group textarea {
  padding: 36px 0;
  background-color: transparent;
  border: none !important;
  box-shadow: none;
  border-bottom: 1px solid #cbcbcb !important;
  border-radius: 0;
  margin-bottom: 8px;
}
.cid-tOTuvPkbPU .mbr-form .form-group .form-check input {
  padding: 0;
  border: 1px solid #0193b1 !important;
  color: #0193b1;
}
.cid-tOTuvPkbPU .mbr-form .form-row input {
  width: 100%;
}
.cid-tOTuvPkbPU .mbr-form .form-row span {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid #0193b1 !important;
  border-radius: 0;
}
.cid-tOTuvPkbPU .mbr-form .mbr-section-btn {
  margin: 10rem 0 4rem 0;
  text-align: center;
}
@media (max-width: 991px) {
  .cid-tOTuvPkbPU .mbr-form .mbr-section-btn {
    margin: 2rem 0 0;
  }
}
.cid-tOTuvPkbPU .mbr-form .mbr-section-btn .btn {
  width: 142px;
  height: 66px;
  margin: 0 auto;
  box-shadow: none;
}
.cid-tOTuvPkbPU .mbr-form .mbr-section-btn .btn:hover {
  box-shadow: none;
}
.cid-tOTuvPkbPU .form-control {
  color: #000000;
}
.cid-tOTuvPkbPU .mbr-text {
  color: #ffffff;
}
.cid-tOTjJiKkuO {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tOTjJiKkuO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tOTjJiKkuO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tOTjJiKkuO .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tOTjJiKkuO .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tOTjJiKkuO .row {
    text-align: center;
  }
  .cid-tOTjJiKkuO .row > div {
    margin: auto;
  }
  .cid-tOTjJiKkuO .social-row {
    justify-content: center;
  }
}
.cid-tOTjJiKkuO .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tOTjJiKkuO .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tOTjJiKkuO .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tOTjJiKkuO .list {
    margin-bottom: 0rem;
  }
}
.cid-tOTjJiKkuO .mbr-text {
  color: #ffffff;
}
.cid-tOTjJiKkuO .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tOTjJiKkuO .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tOTjJiKkuO div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPPIH7rBhw .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tPPIH7rBhw .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tPPIH7rBhw .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tPPIH7rBhw .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tPPIH7rBhw .navbar-logo {
  margin: 0 !important;
}
.cid-tPPIH7rBhw .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPPIH7rBhw .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPPIH7rBhw .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPPIH7rBhw .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tPPIH7rBhw .navbar-nav {
  min-width: 45%;
}
.cid-tPPIH7rBhw .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tPPIH7rBhw .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tPPIH7rBhw .dropdown-item {
  color: #ffffff !important;
}
.cid-tPPIH7rBhw .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tPPIH7rBhw .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tPPIH7rBhw .nav-link:hover {
  color: #ffffff !important;
}
.cid-tPPIH7rBhw .nav-link:hover:before {
  opacity: 1;
}
.cid-tPPIH7rBhw .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tPPIH7rBhw .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tPPIH7rBhw .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPPIH7rBhw .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPPIH7rBhw .container {
  display: flex;
  margin: auto;
}
.cid-tPPIH7rBhw .navbar.opened {
  background: #0193b1 !important;
}
.cid-tPPIH7rBhw .nav-item:focus,
.cid-tPPIH7rBhw .nav-link:focus {
  outline: none;
}
.cid-tPPIH7rBhw .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tPPIH7rBhw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPPIH7rBhw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tPPIH7rBhw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tPPIH7rBhw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPPIH7rBhw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPPIH7rBhw .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tPPIH7rBhw .navbar.opened {
  transition: all 0.3s;
}
.cid-tPPIH7rBhw .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tPPIH7rBhw .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tPPIH7rBhw .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPPIH7rBhw .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPPIH7rBhw .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tPPIH7rBhw .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPPIH7rBhw .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPPIH7rBhw .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tPPIH7rBhw .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPPIH7rBhw .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPPIH7rBhw .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPPIH7rBhw .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPPIH7rBhw .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPPIH7rBhw .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPPIH7rBhw .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPPIH7rBhw .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tPPIH7rBhw .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tPPIH7rBhw .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPPIH7rBhw .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPPIH7rBhw .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tPPIH7rBhw .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tPPIH7rBhw .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tPPIH7rBhw .navbar .navbar-logo {
    display: none;
  }
}
.cid-tPPIH7rBhw .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tPPIH7rBhw .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tPPIH7rBhw .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tPPIH7rBhw .dropdown-item.active,
.cid-tPPIH7rBhw .dropdown-item:active {
  background-color: transparent;
}
.cid-tPPIH7rBhw .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPPIH7rBhw .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPPIH7rBhw .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPPIH7rBhw .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tPPIH7rBhw .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPPIH7rBhw .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPPIH7rBhw ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPPIH7rBhw .navbar-buttons {
  text-align: center;
}
.cid-tPPIH7rBhw button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tPPIH7rBhw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tPPIH7rBhw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPPIH7rBhw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPPIH7rBhw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPPIH7rBhw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPPIH7rBhw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPPIH7rBhw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPPIH7rBhw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPPIH7rBhw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPPIH7rBhw .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tPPIH7rBhw a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tPPIH7rBhw .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPPIH7rBhw .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tPPIH7rBhw .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPPIH7rBhw .navbar {
    height: 77px;
  }
  .cid-tPPIH7rBhw .navbar.opened {
    height: auto;
  }
  .cid-tPPIH7rBhw .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPPIH7rBhw .btn-danger {
  border-radius: 0px;
}
.cid-tPPIH7rBhw .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tPPIH7rBhw .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tPPIH7Yv5l {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tPPIH8fNpS {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tPPIH8fNpS .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPPIH8fNpS .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPPIH8fNpS .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPPIH8fNpS .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPPIH8fNpS .row {
    text-align: center;
  }
  .cid-tPPIH8fNpS .row > div {
    margin: auto;
  }
  .cid-tPPIH8fNpS .social-row {
    justify-content: center;
  }
}
.cid-tPPIH8fNpS .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPPIH8fNpS .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPPIH8fNpS .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPPIH8fNpS .list {
    margin-bottom: 0rem;
  }
}
.cid-tPPIH8fNpS .mbr-text {
  color: #ffffff;
}
.cid-tPPIH8fNpS .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPPIH8fNpS .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPPIH8fNpS div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tPPHWCgGAF .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (max-width: 992px) {
  .cid-tPPHWCgGAF .navbar-brand {
    width: fit-content;
    margin: auto !important;
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
    display: none !important;
  }
  .cid-tPPHWCgGAF .wrapper {
    justify-content: center;
    flex-direction: column;
  }
}
.cid-tPPHWCgGAF .navbar.navbar-short .navbar-brand {
  padding: 1rem !important;
}
.cid-tPPHWCgGAF .navbar-logo {
  margin: 0 !important;
}
.cid-tPPHWCgGAF .navbar-brand {
  background-color: #ffffff;
  display: flex;
  margin-bottom: -3rem;
  transform: scale(1.2);
  flex-direction: column;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  border-radius: 0px;
  padding: 1rem 1rem 1rem 1rem;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tPPHWCgGAF .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tPPHWCgGAF .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tPPHWCgGAF .wrapper {
  display: flex;
  align-items: center;
  min-width: 43.5%;
  justify-content: flex-end;
}
.cid-tPPHWCgGAF .navbar-nav {
  min-width: 45%;
}
.cid-tPPHWCgGAF .dropdown-item:not(:last-child) {
  border-bottom: 1px solid lightgray;
}
.cid-tPPHWCgGAF .dropdown-menu {
  padding: 0;
  background: #0193b1 !important;
}
.cid-tPPHWCgGAF .dropdown-item {
  color: #ffffff !important;
}
.cid-tPPHWCgGAF .dropdown-item:hover {
  color: #ffffff !important;
}
.cid-tPPHWCgGAF .nav-link {
  position: relative;
  font-weight: 300;
}
.cid-tPPHWCgGAF .nav-link:hover {
  color: #ffffff !important;
}
.cid-tPPHWCgGAF .nav-link:hover:before {
  opacity: 1;
}
.cid-tPPHWCgGAF .nav-link:before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 12px;
  transition: all 0.3s;
  opacity: 0;
  background: #ffffff;
}
.cid-tPPHWCgGAF .btn-white {
  color: #0193b1 !important;
  border-radius: 0px;
}
.cid-tPPHWCgGAF .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tPPHWCgGAF .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tPPHWCgGAF .container {
  display: flex;
  margin: auto;
}
.cid-tPPHWCgGAF .navbar.opened {
  background: #0193b1 !important;
}
.cid-tPPHWCgGAF .nav-item:focus,
.cid-tPPHWCgGAF .nav-link:focus {
  outline: none;
}
.cid-tPPHWCgGAF .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tPPHWCgGAF .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tPPHWCgGAF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-tPPHWCgGAF .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-tPPHWCgGAF .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tPPHWCgGAF .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.5em 1.5em 0.5em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tPPHWCgGAF .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #0193b1;
}
.cid-tPPHWCgGAF .navbar.opened {
  transition: all 0.3s;
}
.cid-tPPHWCgGAF .navbar .dropdown-item {
  padding: 0.5rem 1.5rem;
}
.cid-tPPHWCgGAF .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-tPPHWCgGAF .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tPPHWCgGAF .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tPPHWCgGAF .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tPPHWCgGAF .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tPPHWCgGAF .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tPPHWCgGAF .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-tPPHWCgGAF .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tPPHWCgGAF .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tPPHWCgGAF .navbar.collapsed .icons-menu {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tPPHWCgGAF .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tPPHWCgGAF .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tPPHWCgGAF .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tPPHWCgGAF .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tPPHWCgGAF .navbar .dropdown-menu .dropdown-toggle[data-toggle='dropdown-submenu']:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-tPPHWCgGAF .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-tPPHWCgGAF .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tPPHWCgGAF .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tPPHWCgGAF .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-tPPHWCgGAF .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-tPPHWCgGAF .navbar .icons-menu {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 992px) {
  .cid-tPPHWCgGAF .navbar .navbar-logo {
    display: none;
  }
}
.cid-tPPHWCgGAF .navbar.navbar-short {
  background: #0193b1 !important;
  min-height: 60px;
}
.cid-tPPHWCgGAF .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-tPPHWCgGAF .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-tPPHWCgGAF .dropdown-item.active,
.cid-tPPHWCgGAF .dropdown-item:active {
  background-color: transparent;
}
.cid-tPPHWCgGAF .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tPPHWCgGAF .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tPPHWCgGAF .nav-dropdown .link.dropdown-toggle[aria-expanded='true'] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tPPHWCgGAF .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #0193b1;
}
.cid-tPPHWCgGAF .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tPPHWCgGAF .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tPPHWCgGAF ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-tPPHWCgGAF .navbar-buttons {
  text-align: center;
}
.cid-tPPHWCgGAF button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-tPPHWCgGAF button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-tPPHWCgGAF button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tPPHWCgGAF button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPPHWCgGAF button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tPPHWCgGAF button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tPPHWCgGAF nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPPHWCgGAF nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tPPHWCgGAF nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tPPHWCgGAF nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tPPHWCgGAF .navbar-dropdown {
  padding: 0.5rem 1rem;
  position: fixed;
}
.cid-tPPHWCgGAF a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-tPPHWCgGAF .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tPPHWCgGAF .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-tPPHWCgGAF .icons-menu span {
  font-size: 20px;
  color: #ffffff;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tPPHWCgGAF .navbar {
    height: 77px;
  }
  .cid-tPPHWCgGAF .navbar.opened {
    height: auto;
  }
  .cid-tPPHWCgGAF .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tPPHWCgGAF .btn-danger {
  border-radius: 0px;
}
.cid-tPPHWCgGAF .btn-sm {
  font-weight: 300;
}
@keyframes slide-in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.cid-tPPHWCgGAF .logo {
  animation: slide-in 1.5s forwards;
}
.cid-tPPHWCWRV7 {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}
.cid-tPPHWE12ux {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #0193b1;
}
.cid-tPPHWE12ux .mbr-fallback-image.disabled {
  display: none;
}
.cid-tPPHWE12ux .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tPPHWE12ux .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tPPHWE12ux .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-tPPHWE12ux .row {
    text-align: center;
  }
  .cid-tPPHWE12ux .row > div {
    margin: auto;
  }
  .cid-tPPHWE12ux .social-row {
    justify-content: center;
  }
}
.cid-tPPHWE12ux .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tPPHWE12ux .list {
  list-style: none;
  padding-left: 0;
  color: #bbbbbb;
}
@media (max-width: 991px) {
  .cid-tPPHWE12ux .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tPPHWE12ux .list {
    margin-bottom: 0rem;
  }
}
.cid-tPPHWE12ux .mbr-text {
  color: #ffffff;
}
.cid-tPPHWE12ux .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tPPHWE12ux .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tPPHWE12ux div > *:last-child {
    margin-top: 0 !important;
  }
}

.cid-tF0xcilGSV .card .icon-wrapper .icon-wrap .mbr-iconfont {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  font-size: 30px;
  background-color: #0193b1;
  color: #ffffff;
  border-radius: 100%;
  z-index: 1;
  transition: all 0.3s ease; }

.cid-tF0xcilGSV .card .icon-wrapper .icon-wrap:hover .mbr-iconfont {
  transform: scale(1.2); 
}